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