40e94ac0b93d36b30d78fef9ebbf9912d473fb65
[safe/jmp/linux-2.6] / fs / gfs2 / dir.c
1 /*
2  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
4  *
5  * This copyrighted material is made available to anyone wishing to use,
6  * modify, copy, or redistribute it subject to the terms and conditions
7  * of the GNU General Public License version 2.
8  */
9
10 /*
11  * Implements Extendible Hashing as described in:
12  *   "Extendible Hashing" by Fagin, et al in
13  *     __ACM Trans. on Database Systems__, Sept 1979.
14  *
15  *
16  * Here's the layout of dirents which is essentially the same as that of ext2
17  * within a single block. The field de_name_len is the number of bytes
18  * actually required for the name (no null terminator). The field de_rec_len
19  * is the number of bytes allocated to the dirent. The offset of the next
20  * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is
21  * deleted, the preceding dirent inherits its allocated space, ie
22  * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained
23  * by adding de_rec_len to the current dirent, this essentially causes the
24  * deleted dirent to get jumped over when iterating through all the dirents.
25  *
26  * When deleting the first dirent in a block, there is no previous dirent so
27  * the field de_ino is set to zero to designate it as deleted. When allocating
28  * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the
29  * first dirent has (de_ino == 0) and de_rec_len is large enough, this first
30  * dirent is allocated. Otherwise it must go through all the 'used' dirents
31  * searching for one in which the amount of total space minus the amount of
32  * used space will provide enough space for the new dirent.
33  *
34  * There are two types of blocks in which dirents reside. In a stuffed dinode,
35  * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of
36  * the block.  In leaves, they begin at offset sizeof(struct gfs2_leaf) from the
37  * beginning of the leaf block. The dirents reside in leaves when
38  *
39  * dip->i_di.di_flags & GFS2_DIF_EXHASH is true
40  *
41  * Otherwise, the dirents are "linear", within a single stuffed dinode block.
42  *
43  * When the dirents are in leaves, the actual contents of the directory file are
44  * used as an array of 64-bit block pointers pointing to the leaf blocks. The
45  * dirents are NOT in the directory file itself. There can be more than one
46  * block pointer in the array that points to the same leaf. In fact, when a
47  * directory is first converted from linear to exhash, all of the pointers
48  * point to the same leaf.
49  *
50  * When a leaf is completely full, the size of the hash table can be
51  * doubled unless it is already at the maximum size which is hard coded into
52  * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list,
53  * but never before the maximum hash table size has been reached.
54  */
55
56 #include <linux/sched.h>
57 #include <linux/slab.h>
58 #include <linux/spinlock.h>
59 #include <linux/buffer_head.h>
60 #include <linux/sort.h>
61 #include <linux/gfs2_ondisk.h>
62 #include <linux/crc32.h>
63 #include <linux/vmalloc.h>
64 #include <linux/lm_interface.h>
65
66 #include "gfs2.h"
67 #include "incore.h"
68 #include "dir.h"
69 #include "glock.h"
70 #include "inode.h"
71 #include "meta_io.h"
72 #include "quota.h"
73 #include "rgrp.h"
74 #include "trans.h"
75 #include "bmap.h"
76 #include "util.h"
77
78 #define IS_LEAF     1 /* Hashed (leaf) directory */
79 #define IS_DINODE   2 /* Linear (stuffed dinode block) directory */
80
81 #define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
82 #define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
83
84 typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len, 
85                             u64 leaf_no, void *data);
86 typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
87                             const struct qstr *name, void *opaque);
88
89
90 int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
91                             struct buffer_head **bhp)
92 {
93         struct buffer_head *bh;
94
95         bh = gfs2_meta_new(ip->i_gl, block);
96         gfs2_trans_add_bh(ip->i_gl, bh, 1);
97         gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
98         gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
99         *bhp = bh;
100         return 0;
101 }
102
103 static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
104                                         struct buffer_head **bhp)
105 {
106         struct buffer_head *bh;
107         int error;
108
109         error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh);
110         if (error)
111                 return error;
112         if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
113                 brelse(bh);
114                 return -EIO;
115         }
116         *bhp = bh;
117         return 0;
118 }
119
120 static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
121                                   unsigned int offset, unsigned int size)
122                                
123 {
124         struct buffer_head *dibh;
125         int error;
126
127         error = gfs2_meta_inode_buffer(ip, &dibh);
128         if (error)
129                 return error;
130
131         gfs2_trans_add_bh(ip->i_gl, dibh, 1);
132         memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
133         if (ip->i_di.di_size < offset + size)
134                 ip->i_di.di_size = offset + size;
135         ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
136         gfs2_dinode_out(&ip->i_di, dibh->b_data);
137
138         brelse(dibh);
139
140         return size;
141 }
142
143
144
145 /**
146  * gfs2_dir_write_data - Write directory information to the inode
147  * @ip: The GFS2 inode
148  * @buf: The buffer containing information to be written
149  * @offset: The file offset to start writing at
150  * @size: The amount of data to write
151  *
152  * Returns: The number of bytes correctly written or error code
153  */
154 static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
155                                u64 offset, unsigned int size)
156 {
157         struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
158         struct buffer_head *dibh;
159         u64 lblock, dblock;
160         u32 extlen = 0;
161         unsigned int o;
162         int copied = 0;
163         int error = 0;
164
165         if (!size)
166                 return 0;
167
168         if (gfs2_is_stuffed(ip) &&
169             offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
170                 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
171                                               size);
172
173         if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
174                 return -EINVAL;
175
176         if (gfs2_is_stuffed(ip)) {
177                 error = gfs2_unstuff_dinode(ip, NULL);
178                 if (error)
179                         return error;
180         }
181
182         lblock = offset;
183         o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
184
185         while (copied < size) {
186                 unsigned int amount;
187                 struct buffer_head *bh;
188                 int new;
189
190                 amount = size - copied;
191                 if (amount > sdp->sd_sb.sb_bsize - o)
192                         amount = sdp->sd_sb.sb_bsize - o;
193
194                 if (!extlen) {
195                         new = 1;
196                         error = gfs2_extent_map(&ip->i_inode, lblock, &new,
197                                                 &dblock, &extlen);
198                         if (error)
199                                 goto fail;
200                         error = -EIO;
201                         if (gfs2_assert_withdraw(sdp, dblock))
202                                 goto fail;
203                 }
204
205                 if (amount == sdp->sd_jbsize || new)
206                         error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
207                 else
208                         error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
209
210                 if (error)
211                         goto fail;
212
213                 gfs2_trans_add_bh(ip->i_gl, bh, 1);
214                 memcpy(bh->b_data + o, buf, amount);
215                 brelse(bh);
216                 if (error)
217                         goto fail;
218
219                 buf += amount;
220                 copied += amount;
221                 lblock++;
222                 dblock++;
223                 extlen--;
224
225                 o = sizeof(struct gfs2_meta_header);
226         }
227
228 out:
229         error = gfs2_meta_inode_buffer(ip, &dibh);
230         if (error)
231                 return error;
232
233         if (ip->i_di.di_size < offset + copied)
234                 ip->i_di.di_size = offset + copied;
235         ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
236
237         gfs2_trans_add_bh(ip->i_gl, dibh, 1);
238         gfs2_dinode_out(&ip->i_di, dibh->b_data);
239         brelse(dibh);
240
241         return copied;
242 fail:
243         if (copied)
244                 goto out;
245         return error;
246 }
247
248 static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
249                                  u64 offset, unsigned int size)
250 {
251         struct buffer_head *dibh;
252         int error;
253
254         error = gfs2_meta_inode_buffer(ip, &dibh);
255         if (!error) {
256                 offset += sizeof(struct gfs2_dinode);
257                 memcpy(buf, dibh->b_data + offset, size);
258                 brelse(dibh);
259         }
260
261         return (error) ? error : size;
262 }
263
264
265 /**
266  * gfs2_dir_read_data - Read a data from a directory inode
267  * @ip: The GFS2 Inode
268  * @buf: The buffer to place result into
269  * @offset: File offset to begin jdata_readng from
270  * @size: Amount of data to transfer
271  *
272  * Returns: The amount of data actually copied or the error
273  */
274 static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, u64 offset,
275                               unsigned int size, unsigned ra)
276 {
277         struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
278         u64 lblock, dblock;
279         u32 extlen = 0;
280         unsigned int o;
281         int copied = 0;
282         int error = 0;
283
284         if (offset >= ip->i_di.di_size)
285                 return 0;
286
287         if (offset + size > ip->i_di.di_size)
288                 size = ip->i_di.di_size - offset;
289
290         if (!size)
291                 return 0;
292
293         if (gfs2_is_stuffed(ip))
294                 return gfs2_dir_read_stuffed(ip, buf, offset, size);
295
296         if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
297                 return -EINVAL;
298
299         lblock = offset;
300         o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
301
302         while (copied < size) {
303                 unsigned int amount;
304                 struct buffer_head *bh;
305                 int new;
306
307                 amount = size - copied;
308                 if (amount > sdp->sd_sb.sb_bsize - o)
309                         amount = sdp->sd_sb.sb_bsize - o;
310
311                 if (!extlen) {
312                         new = 0;
313                         error = gfs2_extent_map(&ip->i_inode, lblock, &new,
314                                                 &dblock, &extlen);
315                         if (error || !dblock)
316                                 goto fail;
317                         BUG_ON(extlen < 1);
318                         if (!ra)
319                                 extlen = 1;
320                         bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
321                 }
322                 if (!bh) {
323                         error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, &bh);
324                         if (error)
325                                 goto fail;
326                 }
327                 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
328                 if (error) {
329                         brelse(bh);
330                         goto fail;
331                 }
332                 dblock++;
333                 extlen--;
334                 memcpy(buf, bh->b_data + o, amount);
335                 brelse(bh);
336                 bh = NULL;
337                 buf += amount;
338                 copied += amount;
339                 lblock++;
340                 o = sizeof(struct gfs2_meta_header);
341         }
342
343         return copied;
344 fail:
345         return (copied) ? copied : error;
346 }
347
348 static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
349                                      const struct qstr *name, int ret)
350 {
351         if (dent->de_inum.no_addr != 0 &&
352             be32_to_cpu(dent->de_hash) == name->hash &&
353             be16_to_cpu(dent->de_name_len) == name->len &&
354             memcmp(dent+1, name->name, name->len) == 0)
355                 return ret;
356         return 0;
357 }
358
359 static int gfs2_dirent_find(const struct gfs2_dirent *dent,
360                             const struct qstr *name,
361                             void *opaque)
362 {
363         return __gfs2_dirent_find(dent, name, 1);
364 }
365
366 static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
367                             const struct qstr *name,
368                             void *opaque)
369 {
370         return __gfs2_dirent_find(dent, name, 2);
371 }
372
373 /*
374  * name->name holds ptr to start of block.
375  * name->len holds size of block.
376  */
377 static int gfs2_dirent_last(const struct gfs2_dirent *dent,
378                             const struct qstr *name,
379                             void *opaque)
380 {
381         const char *start = name->name;
382         const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
383         if (name->len == (end - start))
384                 return 1;
385         return 0;
386 }
387
388 static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
389                                   const struct qstr *name,
390                                   void *opaque)
391 {
392         unsigned required = GFS2_DIRENT_SIZE(name->len);
393         unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
394         unsigned totlen = be16_to_cpu(dent->de_rec_len);
395
396         if (!dent->de_inum.no_addr)
397                 actual = GFS2_DIRENT_SIZE(0);
398         if (totlen - actual >= required)
399                 return 1;
400         return 0;
401 }
402
403 struct dirent_gather {
404         const struct gfs2_dirent **pdent;
405         unsigned offset;
406 };
407
408 static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
409                               const struct qstr *name,
410                               void *opaque)
411 {
412         struct dirent_gather *g = opaque;
413         if (dent->de_inum.no_addr) {
414                 g->pdent[g->offset++] = dent;
415         }
416         return 0;
417 }
418
419 /*
420  * Other possible things to check:
421  * - Inode located within filesystem size (and on valid block)
422  * - Valid directory entry type
423  * Not sure how heavy-weight we want to make this... could also check
424  * hash is correct for example, but that would take a lot of extra time.
425  * For now the most important thing is to check that the various sizes
426  * are correct.
427  */
428 static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
429                              unsigned int size, unsigned int len, int first)
430 {
431         const char *msg = "gfs2_dirent too small";
432         if (unlikely(size < sizeof(struct gfs2_dirent)))
433                 goto error;
434         msg = "gfs2_dirent misaligned";
435         if (unlikely(offset & 0x7))
436                 goto error;
437         msg = "gfs2_dirent points beyond end of block";
438         if (unlikely(offset + size > len))
439                 goto error;
440         msg = "zero inode number";
441         if (unlikely(!first && !dent->de_inum.no_addr))
442                 goto error;
443         msg = "name length is greater than space in dirent";
444         if (dent->de_inum.no_addr &&
445             unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
446                      size))
447                 goto error;
448         return 0;
449 error:
450         printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
451                first ? "first in block" : "not first in block");
452         return -EIO;
453 }
454
455 static int gfs2_dirent_offset(const void *buf)
456 {
457         const struct gfs2_meta_header *h = buf;
458         int offset;
459
460         BUG_ON(buf == NULL);
461
462         switch(be32_to_cpu(h->mh_type)) {
463         case GFS2_METATYPE_LF:
464                 offset = sizeof(struct gfs2_leaf);
465                 break;
466         case GFS2_METATYPE_DI:
467                 offset = sizeof(struct gfs2_dinode);
468                 break;
469         default:
470                 goto wrong_type;
471         }
472         return offset;
473 wrong_type:
474         printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
475                be32_to_cpu(h->mh_type));
476         return -1;
477 }
478
479 static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
480                                             unsigned int len, gfs2_dscan_t scan,
481                                             const struct qstr *name,
482                                             void *opaque)
483 {
484         struct gfs2_dirent *dent, *prev;
485         unsigned offset;
486         unsigned size;
487         int ret = 0;
488
489         ret = gfs2_dirent_offset(buf);
490         if (ret < 0)
491                 goto consist_inode;
492
493         offset = ret;
494         prev = NULL;
495         dent = buf + offset;
496         size = be16_to_cpu(dent->de_rec_len);
497         if (gfs2_check_dirent(dent, offset, size, len, 1))
498                 goto consist_inode;
499         do {
500                 ret = scan(dent, name, opaque);
501                 if (ret)
502                         break;
503                 offset += size;
504                 if (offset == len)
505                         break;
506                 prev = dent;
507                 dent = buf + offset;
508                 size = be16_to_cpu(dent->de_rec_len);
509                 if (gfs2_check_dirent(dent, offset, size, len, 0))
510                         goto consist_inode;
511         } while(1);
512
513         switch(ret) {
514         case 0:
515                 return NULL;
516         case 1:
517                 return dent;
518         case 2:
519                 return prev ? prev : dent;
520         default:
521                 BUG_ON(ret > 0);
522                 return ERR_PTR(ret);
523         }
524
525 consist_inode:
526         gfs2_consist_inode(GFS2_I(inode));
527         return ERR_PTR(-EIO);
528 }
529
530
531 /**
532  * dirent_first - Return the first dirent
533  * @dip: the directory
534  * @bh: The buffer
535  * @dent: Pointer to list of dirents
536  *
537  * return first dirent whether bh points to leaf or stuffed dinode
538  *
539  * Returns: IS_LEAF, IS_DINODE, or -errno
540  */
541
542 static int dirent_first(struct gfs2_inode *dip, struct buffer_head *bh,
543                         struct gfs2_dirent **dent)
544 {
545         struct gfs2_meta_header *h = (struct gfs2_meta_header *)bh->b_data;
546
547         if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) {
548                 if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh))
549                         return -EIO;
550                 *dent = (struct gfs2_dirent *)(bh->b_data +
551                                                sizeof(struct gfs2_leaf));
552                 return IS_LEAF;
553         } else {
554                 if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI))
555                         return -EIO;
556                 *dent = (struct gfs2_dirent *)(bh->b_data +
557                                                sizeof(struct gfs2_dinode));
558                 return IS_DINODE;
559         }
560 }
561
562 static int dirent_check_reclen(struct gfs2_inode *dip,
563                                const struct gfs2_dirent *d, const void *end_p)
564 {
565         const void *ptr = d;
566         u16 rec_len = be16_to_cpu(d->de_rec_len);
567
568         if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
569                 goto broken;
570         ptr += rec_len;
571         if (ptr < end_p)
572                 return rec_len;
573         if (ptr == end_p)
574                 return -ENOENT;
575 broken:
576         gfs2_consist_inode(dip);
577         return -EIO;
578 }
579
580 /**
581  * dirent_next - Next dirent
582  * @dip: the directory
583  * @bh: The buffer
584  * @dent: Pointer to list of dirents
585  *
586  * Returns: 0 on success, error code otherwise
587  */
588
589 static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
590                        struct gfs2_dirent **dent)
591 {
592         struct gfs2_dirent *cur = *dent, *tmp;
593         char *bh_end = bh->b_data + bh->b_size;
594         int ret;
595
596         ret = dirent_check_reclen(dip, cur, bh_end);
597         if (ret < 0)
598                 return ret;
599
600         tmp = (void *)cur + ret;
601         ret = dirent_check_reclen(dip, tmp, bh_end);
602         if (ret == -EIO)
603                 return ret;
604
605         /* Only the first dent could ever have de_inum.no_addr == 0 */
606         if (!tmp->de_inum.no_addr) {
607                 gfs2_consist_inode(dip);
608                 return -EIO;
609         }
610
611         *dent = tmp;
612         return 0;
613 }
614
615 /**
616  * dirent_del - Delete a dirent
617  * @dip: The GFS2 inode
618  * @bh: The buffer
619  * @prev: The previous dirent
620  * @cur: The current dirent
621  *
622  */
623
624 static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
625                        struct gfs2_dirent *prev, struct gfs2_dirent *cur)
626 {
627         u16 cur_rec_len, prev_rec_len;
628
629         if (!cur->de_inum.no_addr) {
630                 gfs2_consist_inode(dip);
631                 return;
632         }
633
634         gfs2_trans_add_bh(dip->i_gl, bh, 1);
635
636         /* If there is no prev entry, this is the first entry in the block.
637            The de_rec_len is already as big as it needs to be.  Just zero
638            out the inode number and return.  */
639
640         if (!prev) {
641                 cur->de_inum.no_addr = 0;       /* No endianess worries */
642                 return;
643         }
644
645         /*  Combine this dentry with the previous one.  */
646
647         prev_rec_len = be16_to_cpu(prev->de_rec_len);
648         cur_rec_len = be16_to_cpu(cur->de_rec_len);
649
650         if ((char *)prev + prev_rec_len != (char *)cur)
651                 gfs2_consist_inode(dip);
652         if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
653                 gfs2_consist_inode(dip);
654
655         prev_rec_len += cur_rec_len;
656         prev->de_rec_len = cpu_to_be16(prev_rec_len);
657 }
658
659 /*
660  * Takes a dent from which to grab space as an argument. Returns the
661  * newly created dent.
662  */
663 static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
664                                             struct gfs2_dirent *dent,
665                                             const struct qstr *name,
666                                             struct buffer_head *bh)
667 {
668         struct gfs2_inode *ip = GFS2_I(inode);
669         struct gfs2_dirent *ndent;
670         unsigned offset = 0, totlen;
671
672         if (dent->de_inum.no_addr)
673                 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
674         totlen = be16_to_cpu(dent->de_rec_len);
675         BUG_ON(offset + name->len > totlen);
676         gfs2_trans_add_bh(ip->i_gl, bh, 1);
677         ndent = (struct gfs2_dirent *)((char *)dent + offset);
678         dent->de_rec_len = cpu_to_be16(offset);
679         gfs2_qstr2dirent(name, totlen - offset, ndent);
680         return ndent;
681 }
682
683 static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
684                                              struct buffer_head *bh,
685                                              const struct qstr *name)
686 {
687         struct gfs2_dirent *dent;
688         dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, 
689                                 gfs2_dirent_find_space, name, NULL);
690         if (!dent || IS_ERR(dent))
691                 return dent;
692         return gfs2_init_dirent(inode, dent, name, bh);
693 }
694
695 static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
696                     struct buffer_head **bhp)
697 {
698         int error;
699
700         error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp);
701         if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
702                 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
703                 error = -EIO;
704         }
705
706         return error;
707 }
708
709 /**
710  * get_leaf_nr - Get a leaf number associated with the index
711  * @dip: The GFS2 inode
712  * @index:
713  * @leaf_out:
714  *
715  * Returns: 0 on success, error code otherwise
716  */
717
718 static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
719                        u64 *leaf_out)
720 {
721         u64 leaf_no;
722         int error;
723
724         error = gfs2_dir_read_data(dip, (char *)&leaf_no,
725                                     index * sizeof(u64),
726                                     sizeof(u64), 0);
727         if (error != sizeof(u64))
728                 return (error < 0) ? error : -EIO;
729
730         *leaf_out = be64_to_cpu(leaf_no);
731
732         return 0;
733 }
734
735 static int get_first_leaf(struct gfs2_inode *dip, u32 index,
736                           struct buffer_head **bh_out)
737 {
738         u64 leaf_no;
739         int error;
740
741         error = get_leaf_nr(dip, index, &leaf_no);
742         if (!error)
743                 error = get_leaf(dip, leaf_no, bh_out);
744
745         return error;
746 }
747
748 static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
749                                               const struct qstr *name,
750                                               gfs2_dscan_t scan,
751                                               struct buffer_head **pbh)
752 {
753         struct buffer_head *bh;
754         struct gfs2_dirent *dent;
755         struct gfs2_inode *ip = GFS2_I(inode);
756         int error;
757
758         if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
759                 struct gfs2_leaf *leaf;
760                 unsigned hsize = 1 << ip->i_di.di_depth;
761                 unsigned index;
762                 u64 ln;
763                 if (hsize * sizeof(u64) != ip->i_di.di_size) {
764                         gfs2_consist_inode(ip);
765                         return ERR_PTR(-EIO);
766                 }
767                 
768                 index = name->hash >> (32 - ip->i_di.di_depth);
769                 error = get_first_leaf(ip, index, &bh);
770                 if (error)
771                         return ERR_PTR(error);
772                 do {
773                         dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
774                                                 scan, name, NULL);
775                         if (dent)
776                                 goto got_dent;
777                         leaf = (struct gfs2_leaf *)bh->b_data;
778                         ln = be64_to_cpu(leaf->lf_next);
779                         brelse(bh);
780                         if (!ln)
781                                 break;
782                         
783                         error = get_leaf(ip, ln, &bh);
784                 } while(!error);
785
786                 return error ? ERR_PTR(error) : NULL;
787         }
788
789         
790         error = gfs2_meta_inode_buffer(ip, &bh);
791         if (error)
792                 return ERR_PTR(error);
793         dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
794 got_dent:
795         if (unlikely(dent == NULL || IS_ERR(dent))) {
796                 brelse(bh);
797                 bh = NULL;
798         }
799         *pbh = bh;
800         return dent;
801 }
802
803 static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
804 {
805         struct gfs2_inode *ip = GFS2_I(inode);
806         u64 bn = gfs2_alloc_meta(ip);
807         struct buffer_head *bh = gfs2_meta_new(ip->i_gl, bn);
808         struct gfs2_leaf *leaf;
809         struct gfs2_dirent *dent;
810         struct qstr name = { .name = "", .len = 0, .hash = 0 };
811         if (!bh)
812                 return NULL;
813         
814         gfs2_trans_add_bh(ip->i_gl, bh, 1);
815         gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
816         leaf = (struct gfs2_leaf *)bh->b_data;
817         leaf->lf_depth = cpu_to_be16(depth);
818         leaf->lf_entries = 0;
819         leaf->lf_dirent_format = cpu_to_be16(GFS2_FORMAT_DE);
820         leaf->lf_next = 0;
821         memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
822         dent = (struct gfs2_dirent *)(leaf+1);
823         gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
824         *pbh = bh;
825         return leaf;
826 }
827
828 /**
829  * dir_make_exhash - Convert a stuffed directory into an ExHash directory
830  * @dip: The GFS2 inode
831  *
832  * Returns: 0 on success, error code otherwise
833  */
834
835 static int dir_make_exhash(struct inode *inode)
836 {
837         struct gfs2_inode *dip = GFS2_I(inode);
838         struct gfs2_sbd *sdp = GFS2_SB(inode);
839         struct gfs2_dirent *dent;
840         struct qstr args;
841         struct buffer_head *bh, *dibh;
842         struct gfs2_leaf *leaf;
843         int y;
844         u32 x;
845         u64 *lp, bn;
846         int error;
847
848         error = gfs2_meta_inode_buffer(dip, &dibh);
849         if (error)
850                 return error;
851
852         /*  Turn over a new leaf  */
853
854         leaf = new_leaf(inode, &bh, 0);
855         if (!leaf)
856                 return -ENOSPC;
857         bn = bh->b_blocknr;
858
859         gfs2_assert(sdp, dip->i_di.di_entries < (1 << 16));
860         leaf->lf_entries = cpu_to_be16(dip->i_di.di_entries);
861
862         /*  Copy dirents  */
863
864         gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
865                              sizeof(struct gfs2_dinode));
866
867         /*  Find last entry  */
868
869         x = 0;
870         args.len = bh->b_size - sizeof(struct gfs2_dinode) +
871                    sizeof(struct gfs2_leaf);
872         args.name = bh->b_data;
873         dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
874                                 gfs2_dirent_last, &args, NULL);
875         if (!dent) {
876                 brelse(bh);
877                 brelse(dibh);
878                 return -EIO;
879         }
880         if (IS_ERR(dent)) {
881                 brelse(bh);
882                 brelse(dibh);
883                 return PTR_ERR(dent);
884         }
885
886         /*  Adjust the last dirent's record length
887            (Remember that dent still points to the last entry.)  */
888
889         dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
890                 sizeof(struct gfs2_dinode) -
891                 sizeof(struct gfs2_leaf));
892
893         brelse(bh);
894
895         /*  We're done with the new leaf block, now setup the new
896             hash table.  */
897
898         gfs2_trans_add_bh(dip->i_gl, dibh, 1);
899         gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
900
901         lp = (u64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
902
903         for (x = sdp->sd_hash_ptrs; x--; lp++)
904                 *lp = cpu_to_be64(bn);
905
906         dip->i_di.di_size = sdp->sd_sb.sb_bsize / 2;
907         dip->i_di.di_blocks++;
908         dip->i_di.di_flags |= GFS2_DIF_EXHASH;
909         dip->i_di.di_payload_format = 0;
910
911         for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
912         dip->i_di.di_depth = y;
913
914         gfs2_dinode_out(&dip->i_di, dibh->b_data);
915
916         brelse(dibh);
917
918         return 0;
919 }
920
921 /**
922  * dir_split_leaf - Split a leaf block into two
923  * @dip: The GFS2 inode
924  * @index:
925  * @leaf_no:
926  *
927  * Returns: 0 on success, error code on failure
928  */
929
930 static int dir_split_leaf(struct inode *inode, const struct qstr *name)
931 {
932         struct gfs2_inode *dip = GFS2_I(inode);
933         struct buffer_head *nbh, *obh, *dibh;
934         struct gfs2_leaf *nleaf, *oleaf;
935         struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
936         u32 start, len, half_len, divider;
937         u64 bn, *lp, leaf_no;
938         u32 index;
939         int x, moved = 0;
940         int error;
941
942         index = name->hash >> (32 - dip->i_di.di_depth);
943         error = get_leaf_nr(dip, index, &leaf_no);
944         if (error)
945                 return error;
946
947         /*  Get the old leaf block  */
948         error = get_leaf(dip, leaf_no, &obh);
949         if (error)
950                 return error;
951
952         oleaf = (struct gfs2_leaf *)obh->b_data;
953         if (dip->i_di.di_depth == be16_to_cpu(oleaf->lf_depth)) {
954                 brelse(obh);
955                 return 1; /* can't split */
956         }
957
958         gfs2_trans_add_bh(dip->i_gl, obh, 1);
959
960         nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
961         if (!nleaf) {
962                 brelse(obh);
963                 return -ENOSPC;
964         }
965         bn = nbh->b_blocknr;
966
967         /*  Compute the start and len of leaf pointers in the hash table.  */
968         len = 1 << (dip->i_di.di_depth - be16_to_cpu(oleaf->lf_depth));
969         half_len = len >> 1;
970         if (!half_len) {
971                 printk(KERN_WARNING "di_depth %u lf_depth %u index %u\n", dip->i_di.di_depth, be16_to_cpu(oleaf->lf_depth), index);
972                 gfs2_consist_inode(dip);
973                 error = -EIO;
974                 goto fail_brelse;
975         }
976
977         start = (index & ~(len - 1));
978
979         /* Change the pointers.
980            Don't bother distinguishing stuffed from non-stuffed.
981            This code is complicated enough already. */
982         lp = kmalloc(half_len * sizeof(u64), GFP_NOFS | __GFP_NOFAIL);
983         /*  Change the pointers  */
984         for (x = 0; x < half_len; x++)
985                 lp[x] = cpu_to_be64(bn);
986
987         error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
988                                     half_len * sizeof(u64));
989         if (error != half_len * sizeof(u64)) {
990                 if (error >= 0)
991                         error = -EIO;
992                 goto fail_lpfree;
993         }
994
995         kfree(lp);
996
997         /*  Compute the divider  */
998         divider = (start + half_len) << (32 - dip->i_di.di_depth);
999
1000         /*  Copy the entries  */
1001         dirent_first(dip, obh, &dent);
1002
1003         do {
1004                 next = dent;
1005                 if (dirent_next(dip, obh, &next))
1006                         next = NULL;
1007
1008                 if (dent->de_inum.no_addr &&
1009                     be32_to_cpu(dent->de_hash) < divider) {
1010                         struct qstr str;
1011                         str.name = (char*)(dent+1);
1012                         str.len = be16_to_cpu(dent->de_name_len);
1013                         str.hash = be32_to_cpu(dent->de_hash);
1014                         new = gfs2_dirent_alloc(inode, nbh, &str);
1015                         if (IS_ERR(new)) {
1016                                 error = PTR_ERR(new);
1017                                 break;
1018                         }
1019
1020                         new->de_inum = dent->de_inum; /* No endian worries */
1021                         new->de_type = dent->de_type; /* No endian worries */
1022                         nleaf->lf_entries = cpu_to_be16(be16_to_cpu(nleaf->lf_entries)+1);
1023
1024                         dirent_del(dip, obh, prev, dent);
1025
1026                         if (!oleaf->lf_entries)
1027                                 gfs2_consist_inode(dip);
1028                         oleaf->lf_entries = cpu_to_be16(be16_to_cpu(oleaf->lf_entries)-1);
1029
1030                         if (!prev)
1031                                 prev = dent;
1032
1033                         moved = 1;
1034                 } else {
1035                         prev = dent;
1036                 }
1037                 dent = next;
1038         } while (dent);
1039
1040         oleaf->lf_depth = nleaf->lf_depth;
1041
1042         error = gfs2_meta_inode_buffer(dip, &dibh);
1043         if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
1044                 dip->i_di.di_blocks++;
1045                 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1046                 brelse(dibh);
1047         }
1048
1049         brelse(obh);
1050         brelse(nbh);
1051
1052         return error;
1053
1054 fail_lpfree:
1055         kfree(lp);
1056
1057 fail_brelse:
1058         brelse(obh);
1059         brelse(nbh);
1060         return error;
1061 }
1062
1063 /**
1064  * dir_double_exhash - Double size of ExHash table
1065  * @dip: The GFS2 dinode
1066  *
1067  * Returns: 0 on success, error code on failure
1068  */
1069
1070 static int dir_double_exhash(struct gfs2_inode *dip)
1071 {
1072         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1073         struct buffer_head *dibh;
1074         u32 hsize;
1075         u64 *buf;
1076         u64 *from, *to;
1077         u64 block;
1078         int x;
1079         int error = 0;
1080
1081         hsize = 1 << dip->i_di.di_depth;
1082         if (hsize * sizeof(u64) != dip->i_di.di_size) {
1083                 gfs2_consist_inode(dip);
1084                 return -EIO;
1085         }
1086
1087         /*  Allocate both the "from" and "to" buffers in one big chunk  */
1088
1089         buf = kcalloc(3, sdp->sd_hash_bsize, GFP_KERNEL | __GFP_NOFAIL);
1090
1091         for (block = dip->i_di.di_size >> sdp->sd_hash_bsize_shift; block--;) {
1092                 error = gfs2_dir_read_data(dip, (char *)buf,
1093                                             block * sdp->sd_hash_bsize,
1094                                             sdp->sd_hash_bsize, 1);
1095                 if (error != sdp->sd_hash_bsize) {
1096                         if (error >= 0)
1097                                 error = -EIO;
1098                         goto fail;
1099                 }
1100
1101                 from = buf;
1102                 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
1103
1104                 for (x = sdp->sd_hash_ptrs; x--; from++) {
1105                         *to++ = *from;  /*  No endianess worries  */
1106                         *to++ = *from;
1107                 }
1108
1109                 error = gfs2_dir_write_data(dip,
1110                                              (char *)buf + sdp->sd_hash_bsize,
1111                                              block * sdp->sd_sb.sb_bsize,
1112                                              sdp->sd_sb.sb_bsize);
1113                 if (error != sdp->sd_sb.sb_bsize) {
1114                         if (error >= 0)
1115                                 error = -EIO;
1116                         goto fail;
1117                 }
1118         }
1119
1120         kfree(buf);
1121
1122         error = gfs2_meta_inode_buffer(dip, &dibh);
1123         if (!gfs2_assert_withdraw(sdp, !error)) {
1124                 dip->i_di.di_depth++;
1125                 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1126                 brelse(dibh);
1127         }
1128
1129         return error;
1130
1131 fail:
1132         kfree(buf);
1133         return error;
1134 }
1135
1136 /**
1137  * compare_dents - compare directory entries by hash value
1138  * @a: first dent
1139  * @b: second dent
1140  *
1141  * When comparing the hash entries of @a to @b:
1142  *   gt: returns 1
1143  *   lt: returns -1
1144  *   eq: returns 0
1145  */
1146
1147 static int compare_dents(const void *a, const void *b)
1148 {
1149         const struct gfs2_dirent *dent_a, *dent_b;
1150         u32 hash_a, hash_b;
1151         int ret = 0;
1152
1153         dent_a = *(const struct gfs2_dirent **)a;
1154         hash_a = be32_to_cpu(dent_a->de_hash);
1155
1156         dent_b = *(const struct gfs2_dirent **)b;
1157         hash_b = be32_to_cpu(dent_b->de_hash);
1158
1159         if (hash_a > hash_b)
1160                 ret = 1;
1161         else if (hash_a < hash_b)
1162                 ret = -1;
1163         else {
1164                 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1165                 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
1166
1167                 if (len_a > len_b)
1168                         ret = 1;
1169                 else if (len_a < len_b)
1170                         ret = -1;
1171                 else
1172                         ret = memcmp(dent_a + 1, dent_b + 1, len_a);
1173         }
1174
1175         return ret;
1176 }
1177
1178 /**
1179  * do_filldir_main - read out directory entries
1180  * @dip: The GFS2 inode
1181  * @offset: The offset in the file to read from
1182  * @opaque: opaque data to pass to filldir
1183  * @filldir: The function to pass entries to
1184  * @darr: an array of struct gfs2_dirent pointers to read
1185  * @entries: the number of entries in darr
1186  * @copied: pointer to int that's non-zero if a entry has been copied out
1187  *
1188  * Jump through some hoops to make sure that if there are hash collsions,
1189  * they are read out at the beginning of a buffer.  We want to minimize
1190  * the possibility that they will fall into different readdir buffers or
1191  * that someone will want to seek to that location.
1192  *
1193  * Returns: errno, >0 on exception from filldir
1194  */
1195
1196 static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
1197                            void *opaque, gfs2_filldir_t filldir,
1198                            const struct gfs2_dirent **darr, u32 entries,
1199                            int *copied)
1200 {
1201         const struct gfs2_dirent *dent, *dent_next;
1202         struct gfs2_inum inum;
1203         u64 off, off_next;
1204         unsigned int x, y;
1205         int run = 0;
1206         int error = 0;
1207
1208         sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1209
1210         dent_next = darr[0];
1211         off_next = be32_to_cpu(dent_next->de_hash);
1212         off_next = gfs2_disk_hash2offset(off_next);
1213
1214         for (x = 0, y = 1; x < entries; x++, y++) {
1215                 dent = dent_next;
1216                 off = off_next;
1217
1218                 if (y < entries) {
1219                         dent_next = darr[y];
1220                         off_next = be32_to_cpu(dent_next->de_hash);
1221                         off_next = gfs2_disk_hash2offset(off_next);
1222
1223                         if (off < *offset)
1224                                 continue;
1225                         *offset = off;
1226
1227                         if (off_next == off) {
1228                                 if (*copied && !run)
1229                                         return 1;
1230                                 run = 1;
1231                         } else
1232                                 run = 0;
1233                 } else {
1234                         if (off < *offset)
1235                                 continue;
1236                         *offset = off;
1237                 }
1238
1239                 gfs2_inum_in(&inum, (char *)&dent->de_inum);
1240
1241                 error = filldir(opaque, (const char *)(dent + 1),
1242                                 be16_to_cpu(dent->de_name_len),
1243                                 off, &inum,
1244                                 be16_to_cpu(dent->de_type));
1245                 if (error)
1246                         return 1;
1247
1248                 *copied = 1;
1249         }
1250
1251         /* Increment the *offset by one, so the next time we come into the
1252            do_filldir fxn, we get the next entry instead of the last one in the
1253            current leaf */
1254
1255         (*offset)++;
1256
1257         return 0;
1258 }
1259
1260 static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque,
1261                               gfs2_filldir_t filldir, int *copied,
1262                               unsigned *depth, u64 leaf_no)
1263 {
1264         struct gfs2_inode *ip = GFS2_I(inode);
1265         struct buffer_head *bh;
1266         struct gfs2_leaf *lf;
1267         unsigned entries = 0;
1268         unsigned leaves = 0;
1269         const struct gfs2_dirent **darr, *dent;
1270         struct dirent_gather g;
1271         struct buffer_head **larr;
1272         int leaf = 0;
1273         int error, i;
1274         u64 lfn = leaf_no;
1275
1276         do {
1277                 error = get_leaf(ip, lfn, &bh);
1278                 if (error)
1279                         goto out;
1280                 lf = (struct gfs2_leaf *)bh->b_data;
1281                 if (leaves == 0)
1282                         *depth = be16_to_cpu(lf->lf_depth);
1283                 entries += be16_to_cpu(lf->lf_entries);
1284                 leaves++;
1285                 lfn = be64_to_cpu(lf->lf_next);
1286                 brelse(bh);
1287         } while(lfn);
1288
1289         if (!entries)
1290                 return 0;
1291
1292         error = -ENOMEM;
1293         larr = vmalloc((leaves + entries) * sizeof(void *));
1294         if (!larr)
1295                 goto out;
1296         darr = (const struct gfs2_dirent **)(larr + leaves);
1297         g.pdent = darr;
1298         g.offset = 0;
1299         lfn = leaf_no;
1300
1301         do {
1302                 error = get_leaf(ip, lfn, &bh);
1303                 if (error)
1304                         goto out_kfree;
1305                 lf = (struct gfs2_leaf *)bh->b_data;
1306                 lfn = be64_to_cpu(lf->lf_next);
1307                 if (lf->lf_entries) {
1308                         dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1309                                                 gfs2_dirent_gather, NULL, &g);
1310                         error = PTR_ERR(dent);
1311                         if (IS_ERR(dent)) {
1312                                 goto out_kfree;
1313                         }
1314                         error = 0;
1315                         larr[leaf++] = bh;
1316                 } else {
1317                         brelse(bh);
1318                 }
1319         } while(lfn);
1320
1321         error = do_filldir_main(ip, offset, opaque, filldir, darr,
1322                                 entries, copied);
1323 out_kfree:
1324         for(i = 0; i < leaf; i++)
1325                 brelse(larr[i]);
1326         vfree(larr);
1327 out:
1328         return error;
1329 }
1330
1331 /**
1332  * dir_e_read - Reads the entries from a directory into a filldir buffer
1333  * @dip: dinode pointer
1334  * @offset: the hash of the last entry read shifted to the right once
1335  * @opaque: buffer for the filldir function to fill
1336  * @filldir: points to the filldir function to use
1337  *
1338  * Returns: errno
1339  */
1340
1341 static int dir_e_read(struct inode *inode, u64 *offset, void *opaque,
1342                       gfs2_filldir_t filldir)
1343 {
1344         struct gfs2_inode *dip = GFS2_I(inode);
1345         struct gfs2_sbd *sdp = GFS2_SB(inode);
1346         u32 hsize, len = 0;
1347         u32 ht_offset, lp_offset, ht_offset_cur = -1;
1348         u32 hash, index;
1349         u64 *lp;
1350         int copied = 0;
1351         int error = 0;
1352         unsigned depth = 0;
1353
1354         hsize = 1 << dip->i_di.di_depth;
1355         if (hsize * sizeof(u64) != dip->i_di.di_size) {
1356                 gfs2_consist_inode(dip);
1357                 return -EIO;
1358         }
1359
1360         hash = gfs2_dir_offset2hash(*offset);
1361         index = hash >> (32 - dip->i_di.di_depth);
1362
1363         lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1364         if (!lp)
1365                 return -ENOMEM;
1366
1367         while (index < hsize) {
1368                 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1369                 ht_offset = index - lp_offset;
1370
1371                 if (ht_offset_cur != ht_offset) {
1372                         error = gfs2_dir_read_data(dip, (char *)lp,
1373                                                 ht_offset * sizeof(u64),
1374                                                 sdp->sd_hash_bsize, 1);
1375                         if (error != sdp->sd_hash_bsize) {
1376                                 if (error >= 0)
1377                                         error = -EIO;
1378                                 goto out;
1379                         }
1380                         ht_offset_cur = ht_offset;
1381                 }
1382
1383                 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1384                                            &copied, &depth,
1385                                            be64_to_cpu(lp[lp_offset]));
1386                 if (error)
1387                         break;
1388
1389                 len = 1 << (dip->i_di.di_depth - depth);
1390                 index = (index & ~(len - 1)) + len;
1391         }
1392
1393 out:
1394         kfree(lp);
1395         if (error > 0)
1396                 error = 0;
1397         return error;
1398 }
1399
1400 int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque,
1401                   gfs2_filldir_t filldir)
1402 {
1403         struct gfs2_inode *dip = GFS2_I(inode);
1404         struct dirent_gather g;
1405         const struct gfs2_dirent **darr, *dent;
1406         struct buffer_head *dibh;
1407         int copied = 0;
1408         int error;
1409
1410         if (!dip->i_di.di_entries)
1411                 return 0;
1412
1413         if (dip->i_di.di_flags & GFS2_DIF_EXHASH)
1414                 return dir_e_read(inode, offset, opaque, filldir);
1415
1416         if (!gfs2_is_stuffed(dip)) {
1417                 gfs2_consist_inode(dip);
1418                 return -EIO;
1419         }
1420
1421         error = gfs2_meta_inode_buffer(dip, &dibh);
1422         if (error)
1423                 return error;
1424
1425         error = -ENOMEM;
1426         darr = kmalloc(dip->i_di.di_entries * sizeof(struct gfs2_dirent *),
1427                        GFP_KERNEL);
1428         if (darr) {
1429                 g.pdent = darr;
1430                 g.offset = 0;
1431                 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1432                                         gfs2_dirent_gather, NULL, &g);
1433                 if (IS_ERR(dent)) {
1434                         error = PTR_ERR(dent);
1435                         goto out;
1436                 }
1437                 error = do_filldir_main(dip, offset, opaque, filldir, darr,
1438                                         dip->i_di.di_entries, &copied);
1439 out:
1440                 kfree(darr);
1441         }
1442
1443         if (error > 0)
1444                 error = 0;
1445
1446         brelse(dibh);
1447
1448         return error;
1449 }
1450
1451 /**
1452  * gfs2_dir_search - Search a directory
1453  * @dip: The GFS2 inode
1454  * @filename:
1455  * @inode:
1456  *
1457  * This routine searches a directory for a file or another directory.
1458  * Assumes a glock is held on dip.
1459  *
1460  * Returns: errno
1461  */
1462
1463 int gfs2_dir_search(struct inode *dir, const struct qstr *name,
1464                     struct gfs2_inum *inum, unsigned int *type)
1465 {
1466         struct buffer_head *bh;
1467         struct gfs2_dirent *dent;
1468
1469         dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1470         if (dent) {
1471                 if (IS_ERR(dent))
1472                         return PTR_ERR(dent);
1473                 if (inum)
1474                         gfs2_inum_in(inum, (char *)&dent->de_inum);
1475                 if (type)
1476                         *type = be16_to_cpu(dent->de_type);
1477                 brelse(bh);
1478                 return 0;
1479         }
1480         return -ENOENT;
1481 }
1482
1483 static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1484 {
1485         struct buffer_head *bh, *obh;
1486         struct gfs2_inode *ip = GFS2_I(inode);
1487         struct gfs2_leaf *leaf, *oleaf;
1488         int error;
1489         u32 index;
1490         u64 bn;
1491
1492         index = name->hash >> (32 - ip->i_di.di_depth);
1493         error = get_first_leaf(ip, index, &obh);
1494         if (error)
1495                 return error;
1496         do {
1497                 oleaf = (struct gfs2_leaf *)obh->b_data;
1498                 bn = be64_to_cpu(oleaf->lf_next);
1499                 if (!bn)
1500                         break;
1501                 brelse(obh);
1502                 error = get_leaf(ip, bn, &obh);
1503                 if (error)
1504                         return error;
1505         } while(1);
1506
1507         gfs2_trans_add_bh(ip->i_gl, obh, 1);
1508
1509         leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1510         if (!leaf) {
1511                 brelse(obh);
1512                 return -ENOSPC;
1513         }
1514         oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
1515         brelse(bh);
1516         brelse(obh);
1517
1518         error = gfs2_meta_inode_buffer(ip, &bh);
1519         if (error)
1520                 return error;
1521         gfs2_trans_add_bh(ip->i_gl, bh, 1);
1522         ip->i_di.di_blocks++;
1523         gfs2_dinode_out(&ip->i_di, bh->b_data);
1524         brelse(bh);
1525         return 0;
1526 }
1527
1528 /**
1529  * gfs2_dir_add - Add new filename into directory
1530  * @dip: The GFS2 inode
1531  * @filename: The new name
1532  * @inode: The inode number of the entry
1533  * @type: The type of the entry
1534  *
1535  * Returns: 0 on success, error code on failure
1536  */
1537
1538 int gfs2_dir_add(struct inode *inode, const struct qstr *name,
1539                  const struct gfs2_inum *inum, unsigned type)
1540 {
1541         struct gfs2_inode *ip = GFS2_I(inode);
1542         struct buffer_head *bh;
1543         struct gfs2_dirent *dent;
1544         struct gfs2_leaf *leaf;
1545         int error;
1546
1547         while(1) {
1548                 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1549                                           &bh);
1550                 if (dent) {
1551                         if (IS_ERR(dent))
1552                                 return PTR_ERR(dent);
1553                         dent = gfs2_init_dirent(inode, dent, name, bh);
1554                         gfs2_inum_out(inum, (char *)&dent->de_inum);
1555                         dent->de_type = cpu_to_be16(type);
1556                         if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
1557                                 leaf = (struct gfs2_leaf *)bh->b_data;
1558                                 leaf->lf_entries = cpu_to_be16(be16_to_cpu(leaf->lf_entries) + 1);
1559                         }
1560                         brelse(bh);
1561                         error = gfs2_meta_inode_buffer(ip, &bh);
1562                         if (error)
1563                                 break;
1564                         gfs2_trans_add_bh(ip->i_gl, bh, 1);
1565                         ip->i_di.di_entries++;
1566                         ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
1567                         gfs2_dinode_out(&ip->i_di, bh->b_data);
1568                         brelse(bh);
1569                         error = 0;
1570                         break;
1571                 }
1572                 if (!(ip->i_di.di_flags & GFS2_DIF_EXHASH)) {
1573                         error = dir_make_exhash(inode);
1574                         if (error)
1575                                 break;
1576                         continue;
1577                 }
1578                 error = dir_split_leaf(inode, name);
1579                 if (error == 0)
1580                         continue;
1581                 if (error < 0)
1582                         break;
1583                 if (ip->i_di.di_depth < GFS2_DIR_MAX_DEPTH) {
1584                         error = dir_double_exhash(ip);
1585                         if (error)
1586                                 break;
1587                         error = dir_split_leaf(inode, name);
1588                         if (error < 0)
1589                                 break;
1590                         if (error == 0)
1591                                 continue;
1592                 }
1593                 error = dir_new_leaf(inode, name);
1594                 if (!error)
1595                         continue;
1596                 error = -ENOSPC;
1597                 break;
1598         }
1599         return error;
1600 }
1601
1602
1603 /**
1604  * gfs2_dir_del - Delete a directory entry
1605  * @dip: The GFS2 inode
1606  * @filename: The filename
1607  *
1608  * Returns: 0 on success, error code on failure
1609  */
1610
1611 int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
1612 {
1613         struct gfs2_dirent *dent, *prev = NULL;
1614         struct buffer_head *bh;
1615         int error;
1616
1617         /* Returns _either_ the entry (if its first in block) or the
1618            previous entry otherwise */
1619         dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
1620         if (!dent) {
1621                 gfs2_consist_inode(dip);
1622                 return -EIO;
1623         }
1624         if (IS_ERR(dent)) {
1625                 gfs2_consist_inode(dip);
1626                 return PTR_ERR(dent);
1627         }
1628         /* If not first in block, adjust pointers accordingly */
1629         if (gfs2_dirent_find(dent, name, NULL) == 0) {
1630                 prev = dent;
1631                 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1632         }
1633
1634         dirent_del(dip, bh, prev, dent);
1635         if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1636                 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1637                 u16 entries = be16_to_cpu(leaf->lf_entries);
1638                 if (!entries)
1639                         gfs2_consist_inode(dip);
1640                 leaf->lf_entries = cpu_to_be16(--entries);
1641         }
1642         brelse(bh);
1643
1644         error = gfs2_meta_inode_buffer(dip, &bh);
1645         if (error)
1646                 return error;
1647
1648         if (!dip->i_di.di_entries)
1649                 gfs2_consist_inode(dip);
1650         gfs2_trans_add_bh(dip->i_gl, bh, 1);
1651         dip->i_di.di_entries--;
1652         dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1653         gfs2_dinode_out(&dip->i_di, bh->b_data);
1654         brelse(bh);
1655         mark_inode_dirty(&dip->i_inode);
1656
1657         return error;
1658 }
1659
1660 /**
1661  * gfs2_dir_mvino - Change inode number of directory entry
1662  * @dip: The GFS2 inode
1663  * @filename:
1664  * @new_inode:
1665  *
1666  * This routine changes the inode number of a directory entry.  It's used
1667  * by rename to change ".." when a directory is moved.
1668  * Assumes a glock is held on dvp.
1669  *
1670  * Returns: errno
1671  */
1672
1673 int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
1674                    struct gfs2_inum *inum, unsigned int new_type)
1675 {
1676         struct buffer_head *bh;
1677         struct gfs2_dirent *dent;
1678         int error;
1679
1680         dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
1681         if (!dent) {
1682                 gfs2_consist_inode(dip);
1683                 return -EIO;
1684         }
1685         if (IS_ERR(dent))
1686                 return PTR_ERR(dent);
1687
1688         gfs2_trans_add_bh(dip->i_gl, bh, 1);
1689         gfs2_inum_out(inum, (char *)&dent->de_inum);
1690         dent->de_type = cpu_to_be16(new_type);
1691
1692         if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1693                 brelse(bh);
1694                 error = gfs2_meta_inode_buffer(dip, &bh);
1695                 if (error)
1696                         return error;
1697                 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1698         }
1699
1700         dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1701         gfs2_dinode_out(&dip->i_di, bh->b_data);
1702         brelse(bh);
1703         return 0;
1704 }
1705
1706 /**
1707  * foreach_leaf - call a function for each leaf in a directory
1708  * @dip: the directory
1709  * @lc: the function to call for each each
1710  * @data: private data to pass to it
1711  *
1712  * Returns: errno
1713  */
1714
1715 static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1716 {
1717         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1718         struct buffer_head *bh;
1719         struct gfs2_leaf *leaf;
1720         u32 hsize, len;
1721         u32 ht_offset, lp_offset, ht_offset_cur = -1;
1722         u32 index = 0;
1723         u64 *lp;
1724         u64 leaf_no;
1725         int error = 0;
1726
1727         hsize = 1 << dip->i_di.di_depth;
1728         if (hsize * sizeof(u64) != dip->i_di.di_size) {
1729                 gfs2_consist_inode(dip);
1730                 return -EIO;
1731         }
1732
1733         lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1734         if (!lp)
1735                 return -ENOMEM;
1736
1737         while (index < hsize) {
1738                 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1739                 ht_offset = index - lp_offset;
1740
1741                 if (ht_offset_cur != ht_offset) {
1742                         error = gfs2_dir_read_data(dip, (char *)lp,
1743                                                 ht_offset * sizeof(u64),
1744                                                 sdp->sd_hash_bsize, 1);
1745                         if (error != sdp->sd_hash_bsize) {
1746                                 if (error >= 0)
1747                                         error = -EIO;
1748                                 goto out;
1749                         }
1750                         ht_offset_cur = ht_offset;
1751                 }
1752
1753                 leaf_no = be64_to_cpu(lp[lp_offset]);
1754                 if (leaf_no) {
1755                         error = get_leaf(dip, leaf_no, &bh);
1756                         if (error)
1757                                 goto out;
1758                         leaf = (struct gfs2_leaf *)bh->b_data;
1759                         len = 1 << (dip->i_di.di_depth - be16_to_cpu(leaf->lf_depth));
1760                         brelse(bh);
1761
1762                         error = lc(dip, index, len, leaf_no, data);
1763                         if (error)
1764                                 goto out;
1765
1766                         index = (index & ~(len - 1)) + len;
1767                 } else
1768                         index++;
1769         }
1770
1771         if (index != hsize) {
1772                 gfs2_consist_inode(dip);
1773                 error = -EIO;
1774         }
1775
1776 out:
1777         kfree(lp);
1778
1779         return error;
1780 }
1781
1782 /**
1783  * leaf_dealloc - Deallocate a directory leaf
1784  * @dip: the directory
1785  * @index: the hash table offset in the directory
1786  * @len: the number of pointers to this leaf
1787  * @leaf_no: the leaf number
1788  * @data: not used
1789  *
1790  * Returns: errno
1791  */
1792
1793 static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
1794                         u64 leaf_no, void *data)
1795 {
1796         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1797         struct gfs2_leaf *tmp_leaf;
1798         struct gfs2_rgrp_list rlist;
1799         struct buffer_head *bh, *dibh;
1800         u64 blk, nblk;
1801         unsigned int rg_blocks = 0, l_blocks = 0;
1802         char *ht;
1803         unsigned int x, size = len * sizeof(u64);
1804         int error;
1805
1806         memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1807
1808         ht = kzalloc(size, GFP_KERNEL);
1809         if (!ht)
1810                 return -ENOMEM;
1811
1812         gfs2_alloc_get(dip);
1813
1814         error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1815         if (error)
1816                 goto out;
1817
1818         error = gfs2_rindex_hold(sdp, &dip->i_alloc.al_ri_gh);
1819         if (error)
1820                 goto out_qs;
1821
1822         /*  Count the number of leaves  */
1823
1824         for (blk = leaf_no; blk; blk = nblk) {
1825                 error = get_leaf(dip, blk, &bh);
1826                 if (error)
1827                         goto out_rlist;
1828                 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1829                 nblk = be64_to_cpu(tmp_leaf->lf_next);
1830                 brelse(bh);
1831
1832                 gfs2_rlist_add(sdp, &rlist, blk);
1833                 l_blocks++;
1834         }
1835
1836         gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, 0);
1837
1838         for (x = 0; x < rlist.rl_rgrps; x++) {
1839                 struct gfs2_rgrpd *rgd;
1840                 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
1841                 rg_blocks += rgd->rd_ri.ri_length;
1842         }
1843
1844         error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1845         if (error)
1846                 goto out_rlist;
1847
1848         error = gfs2_trans_begin(sdp,
1849                         rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
1850                         RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1851         if (error)
1852                 goto out_rg_gunlock;
1853
1854         for (blk = leaf_no; blk; blk = nblk) {
1855                 error = get_leaf(dip, blk, &bh);
1856                 if (error)
1857                         goto out_end_trans;
1858                 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1859                 nblk = be64_to_cpu(tmp_leaf->lf_next);
1860                 brelse(bh);
1861
1862                 gfs2_free_meta(dip, blk, 1);
1863
1864                 if (!dip->i_di.di_blocks)
1865                         gfs2_consist_inode(dip);
1866                 dip->i_di.di_blocks--;
1867         }
1868
1869         error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
1870         if (error != size) {
1871                 if (error >= 0)
1872                         error = -EIO;
1873                 goto out_end_trans;
1874         }
1875
1876         error = gfs2_meta_inode_buffer(dip, &dibh);
1877         if (error)
1878                 goto out_end_trans;
1879
1880         gfs2_trans_add_bh(dip->i_gl, dibh, 1);
1881         gfs2_dinode_out(&dip->i_di, dibh->b_data);
1882         brelse(dibh);
1883
1884 out_end_trans:
1885         gfs2_trans_end(sdp);
1886 out_rg_gunlock:
1887         gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
1888 out_rlist:
1889         gfs2_rlist_free(&rlist);
1890         gfs2_glock_dq_uninit(&dip->i_alloc.al_ri_gh);
1891 out_qs:
1892         gfs2_quota_unhold(dip);
1893 out:
1894         gfs2_alloc_put(dip);
1895         kfree(ht);
1896         return error;
1897 }
1898
1899 /**
1900  * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1901  * @dip: the directory
1902  *
1903  * Dealloc all on-disk directory leaves to FREEMETA state
1904  * Change on-disk inode type to "regular file"
1905  *
1906  * Returns: errno
1907  */
1908
1909 int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1910 {
1911         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1912         struct buffer_head *bh;
1913         int error;
1914
1915         /* Dealloc on-disk leaves to FREEMETA state */
1916         error = foreach_leaf(dip, leaf_dealloc, NULL);
1917         if (error)
1918                 return error;
1919
1920         /* Make this a regular file in case we crash.
1921            (We don't want to free these blocks a second time.)  */
1922
1923         error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1924         if (error)
1925                 return error;
1926
1927         error = gfs2_meta_inode_buffer(dip, &bh);
1928         if (!error) {
1929                 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1930                 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1931                                                 cpu_to_be32(S_IFREG);
1932                 brelse(bh);
1933         }
1934
1935         gfs2_trans_end(sdp);
1936
1937         return error;
1938 }
1939
1940 /**
1941  * gfs2_diradd_alloc_required - find if adding entry will require an allocation
1942  * @ip: the file being written to
1943  * @filname: the filename that's going to be added
1944  *
1945  * Returns: 1 if alloc required, 0 if not, -ve on error
1946  */
1947
1948 int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
1949 {
1950         struct gfs2_dirent *dent;
1951         struct buffer_head *bh;
1952
1953         dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
1954         if (!dent) {
1955                 return 1;
1956         }
1957         if (IS_ERR(dent))
1958                 return PTR_ERR(dent);
1959         brelse(bh);
1960         return 0;
1961 }
1962