blob: 40e94ac0b93d36b30d78fef9ebbf9912d473fb65 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10/*
Steven Whitehouse61e085a2006-04-24 10:07:13 -040011 * 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 */
David Teiglandb3b94fa2006-01-16 16:50:04 +000055
56#include <linux/sched.h>
57#include <linux/slab.h>
58#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000059#include <linux/buffer_head.h>
60#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050061#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050062#include <linux/crc32.h>
Steven Whitehousefe1bded2006-04-18 10:09:15 -040063#include <linux/vmalloc.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020064#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000065
66#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050067#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000068#include "dir.h"
69#include "glock.h"
70#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000071#include "meta_io.h"
72#include "quota.h"
73#include "rgrp.h"
74#include "trans.h"
Steven Whitehousee13940b2006-01-30 13:31:50 +000075#include "bmap.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050076#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000077
78#define IS_LEAF 1 /* Hashed (leaf) directory */
79#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
80
Steven Whitehousecd915492006-09-04 12:49:07 -040081#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
82#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
David Teiglandb3b94fa2006-01-16 16:50:04 +000083
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040084typedef 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +000088
Steven Whitehouse61e085a2006-04-24 10:07:13 -040089
Steven Whitehousecd915492006-09-04 12:49:07 -040090int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040091 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000092{
93 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000094
Steven Whitehouse61e085a2006-04-24 10:07:13 -040095 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));
Steven Whitehousee13940b2006-01-30 13:31:50 +000099 *bhp = bh;
100 return 0;
101}
102
Steven Whitehousecd915492006-09-04 12:49:07 -0400103static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400104 struct buffer_head **bhp)
105{
106 struct buffer_head *bh;
107 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000108
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400109 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400110 if (error)
111 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400112 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400113 brelse(bh);
114 return -EIO;
115 }
116 *bhp = bh;
117 return 0;
118}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000119
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);
Steven Whitehousec7526662006-03-20 12:30:04 -0500132 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000133 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,
Steven Whitehousecd915492006-09-04 12:49:07 -0400155 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000156{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400157 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000158 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400159 u64 lblock, dblock;
160 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000161 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))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500170 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
171 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000172
173 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
174 return -EINVAL;
175
176 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400177 error = gfs2_unstuff_dinode(ip, NULL);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000178 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500179 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000180 }
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;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400196 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400197 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000198 if (error)
199 goto fail;
200 error = -EIO;
201 if (gfs2_assert_withdraw(sdp, dblock))
202 goto fail;
203 }
204
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400205 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
Steven Whitehousee13940b2006-01-30 13:31:50 +0000210 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
Steven Whitehouse899bb262006-08-01 15:28:57 -0400219 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000220 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,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400249 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000250{
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 */
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400274static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, u64 offset,
275 unsigned int size, unsigned ra)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000276{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400277 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400278 u64 lblock, dblock;
279 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000280 unsigned int o;
281 int copied = 0;
282 int error = 0;
283
284 if (offset >= ip->i_di.di_size)
285 return 0;
286
Jan Engelhardtc5392122006-09-05 14:30:40 +0200287 if (offset + size > ip->i_di.di_size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000288 size = ip->i_di.di_size - offset;
289
290 if (!size)
291 return 0;
292
293 if (gfs2_is_stuffed(ip))
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400294 return gfs2_dir_read_stuffed(ip, buf, offset, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000295
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;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400313 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400314 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400315 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);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000324 if (error)
325 goto fail;
326 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400327 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
328 if (error) {
329 brelse(bh);
330 goto fail;
331 }
332 dblock++;
333 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000334 memcpy(buf, bh->b_data + o, amount);
335 brelse(bh);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400336 bh = NULL;
Steven Whitehouse899bb262006-08-01 15:28:57 -0400337 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000338 copied += amount;
339 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000340 o = sizeof(struct gfs2_meta_header);
341 }
342
343 return copied;
344fail:
345 return (copied) ? copied : error;
346}
347
Steven Whitehousec7526662006-03-20 12:30:04 -0500348static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
349 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000350{
Steven Whitehousec7526662006-03-20 12:30:04 -0500351 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 &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400354 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500355 return ret;
356 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357}
358
Steven Whitehousec7526662006-03-20 12:30:04 -0500359static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500360 const struct qstr *name,
361 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500362{
363 return __gfs2_dirent_find(dent, name, 1);
364}
365
366static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500367 const struct qstr *name,
368 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500369{
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 */
377static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500378 const struct qstr *name,
379 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500380{
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
388static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500389 const struct qstr *name,
390 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500391{
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
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500396 if (!dent->de_inum.no_addr)
397 actual = GFS2_DIRENT_SIZE(0);
Jan Engelhardtc5392122006-09-05 14:30:40 +0200398 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500399 return 1;
400 return 0;
401}
402
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500403struct dirent_gather {
404 const struct gfs2_dirent **pdent;
405 unsigned offset;
406};
407
408static 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
Steven Whitehousec7526662006-03-20 12:30:04 -0500419/*
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 */
428static 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;
449error:
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
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500455static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500456{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500457 const struct gfs2_meta_header *h = buf;
458 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500459
460 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500461
Steven Whitehousee3167de2006-03-30 15:46:23 -0500462 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500463 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 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500472 return offset;
473wrong_type:
474 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500475 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500476 return -1;
477}
Steven Whitehousec7526662006-03-20 12:30:04 -0500478
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400479static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500480 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;
Steven Whitehousec7526662006-03-20 12:30:04 -0500494 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400495 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500496 size = be16_to_cpu(dent->de_rec_len);
497 if (gfs2_check_dirent(dent, offset, size, len, 1))
498 goto consist_inode;
499 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500500 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500501 if (ret)
502 break;
503 offset += size;
504 if (offset == len)
505 break;
506 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400507 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500508 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
Steven Whitehousec7526662006-03-20 12:30:04 -0500525consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400526 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500527 return ERR_PTR(-EIO);
528}
529
530
David Teiglandb3b94fa2006-01-16 16:50:04 +0000531/**
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
542static 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
Steven Whitehousee3167de2006-03-30 15:46:23 -0500547 if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400548 if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000549 return -EIO;
550 *dent = (struct gfs2_dirent *)(bh->b_data +
551 sizeof(struct gfs2_leaf));
552 return IS_LEAF;
553 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400554 if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000555 return -EIO;
556 *dent = (struct gfs2_dirent *)(bh->b_data +
557 sizeof(struct gfs2_dinode));
558 return IS_DINODE;
559 }
560}
561
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400562static 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;
575broken:
576 gfs2_consist_inode(dip);
577 return -EIO;
578}
579
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580/**
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
589static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
590 struct gfs2_dirent **dent)
591{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400592 struct gfs2_dirent *cur = *dent, *tmp;
593 char *bh_end = bh->b_data + bh->b_size;
594 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400596 ret = dirent_check_reclen(dip, cur, bh_end);
597 if (ret < 0)
598 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400600 tmp = (void *)cur + ret;
601 ret = dirent_check_reclen(dip, tmp, bh_end);
602 if (ret == -EIO)
603 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000604
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 /* 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612 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
624static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
625 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
626{
Steven Whitehousecd915492006-09-04 12:49:07 -0400627 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628
629 if (!cur->de_inum.no_addr) {
630 gfs2_consist_inode(dip);
631 return;
632 }
633
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000634 gfs2_trans_add_bh(dip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000635
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
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000647 prev_rec_len = be16_to_cpu(prev->de_rec_len);
648 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000649
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;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000656 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657}
658
Steven Whitehousec7526662006-03-20 12:30:04 -0500659/*
660 * Takes a dent from which to grab space as an argument. Returns the
661 * newly created dent.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 */
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400663static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
664 struct gfs2_dirent *dent,
665 const struct qstr *name,
666 struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400668 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500669 struct gfs2_dirent *ndent;
670 unsigned offset = 0, totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671
Steven Whitehousec7526662006-03-20 12:30:04 -0500672 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000681}
682
Steven Whitehousec7526662006-03-20 12:30:04 -0500683static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
684 struct buffer_head *bh,
685 const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000686{
687 struct gfs2_dirent *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500688 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
689 gfs2_dirent_find_space, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500690 if (!dent || IS_ERR(dent))
691 return dent;
692 return gfs2_init_dirent(inode, dent, name, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693}
694
Steven Whitehousecd915492006-09-04 12:49:07 -0400695static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000696 struct buffer_head **bhp)
697{
698 int error;
699
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400700 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400701 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
702 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000703 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400704 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000705
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
Steven Whitehousecd915492006-09-04 12:49:07 -0400718static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
719 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720{
Steven Whitehousecd915492006-09-04 12:49:07 -0400721 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 int error;
723
Steven Whitehousee13940b2006-01-30 13:31:50 +0000724 error = gfs2_dir_read_data(dip, (char *)&leaf_no,
Steven Whitehousecd915492006-09-04 12:49:07 -0400725 index * sizeof(u64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400726 sizeof(u64), 0);
Steven Whitehousecd915492006-09-04 12:49:07 -0400727 if (error != sizeof(u64))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728 return (error < 0) ? error : -EIO;
729
730 *leaf_out = be64_to_cpu(leaf_no);
731
732 return 0;
733}
734
Steven Whitehousecd915492006-09-04 12:49:07 -0400735static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 struct buffer_head **bh_out)
737{
Steven Whitehousecd915492006-09-04 12:49:07 -0400738 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 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
Steven Whitehousec7526662006-03-20 12:30:04 -0500748static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
749 const struct qstr *name,
750 gfs2_dscan_t scan,
751 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000752{
Steven Whitehousec7526662006-03-20 12:30:04 -0500753 struct buffer_head *bh;
754 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400755 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 int error;
757
Steven Whitehousec7526662006-03-20 12:30:04 -0500758 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400767
Steven Whitehousec7526662006-03-20 12:30:04 -0500768 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,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500774 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500775 if (dent)
776 goto got_dent;
777 leaf = (struct gfs2_leaf *)bh->b_data;
778 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400779 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500780 if (!ln)
781 break;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400782
Steven Whitehousec7526662006-03-20 12:30:04 -0500783 error = get_leaf(ip, ln, &bh);
784 } while(!error);
785
786 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000787 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400789
Steven Whitehousec7526662006-03-20 12:30:04 -0500790 error = gfs2_meta_inode_buffer(ip, &bh);
791 if (error)
792 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500793 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500794got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400795 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400796 brelse(bh);
797 bh = NULL;
798 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500799 *pbh = bh;
800 return dent;
801}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802
Steven Whitehousec7526662006-03-20 12:30:04 -0500803static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
804{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400805 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500806 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;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500810 struct qstr name = { .name = "", .len = 0, .hash = 0 };
Steven Whitehousec7526662006-03-20 12:30:04 -0500811 if (!bh)
812 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400813
Steven Whitehousec7526662006-03-20 12:30:04 -0500814 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);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400818 leaf->lf_entries = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500819 leaf->lf_dirent_format = cpu_to_be16(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400820 leaf->lf_next = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500821 memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
822 dent = (struct gfs2_dirent *)(leaf+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500823 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500824 *pbh = bh;
825 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826}
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
Steven Whitehousec7526662006-03-20 12:30:04 -0500835static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400837 struct gfs2_inode *dip = GFS2_I(inode);
838 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000839 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500840 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000841 struct buffer_head *bh, *dibh;
842 struct gfs2_leaf *leaf;
843 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400844 u32 x;
845 u64 *lp, bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 int error;
847
848 error = gfs2_meta_inode_buffer(dip, &dibh);
849 if (error)
850 return error;
851
David Teiglandb3b94fa2006-01-16 16:50:04 +0000852 /* Turn over a new leaf */
853
Steven Whitehousec7526662006-03-20 12:30:04 -0500854 leaf = new_leaf(inode, &bh, 0);
855 if (!leaf)
856 return -ENOSPC;
857 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000858
859 gfs2_assert(sdp, dip->i_di.di_entries < (1 << 16));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000860 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;
Steven Whitehousec7526662006-03-20 12:30:04 -0500870 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
871 sizeof(struct gfs2_leaf);
872 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400873 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500874 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500875 if (!dent) {
876 brelse(bh);
877 brelse(dibh);
878 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500880 if (IS_ERR(dent)) {
881 brelse(bh);
882 brelse(dibh);
883 return PTR_ERR(dent);
884 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000885
886 /* Adjust the last dirent's record length
887 (Remember that dent still points to the last entry.) */
888
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000889 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000891 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892
893 brelse(bh);
894
895 /* We're done with the new leaf block, now setup the new
896 hash table. */
897
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000898 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
900
Steven Whitehousecd915492006-09-04 12:49:07 -0400901 lp = (u64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902
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
Steven Whitehousec7526662006-03-20 12:30:04 -0500930static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400932 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000933 struct buffer_head *nbh, *obh, *dibh;
934 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -0400935 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -0400936 u32 start, len, half_len, divider;
937 u64 bn, *lp, leaf_no;
938 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000939 int x, moved = 0;
940 int error;
941
Steven Whitehousec7526662006-03-20 12:30:04 -0500942 index = name->hash >> (32 - dip->i_di.di_depth);
943 error = get_leaf_nr(dip, index, &leaf_no);
944 if (error)
945 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946
947 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000948 error = get_leaf(dip, leaf_no, &obh);
949 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500950 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 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000958 gfs2_trans_add_bh(dip->i_gl, obh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959
Steven Whitehousec7526662006-03-20 12:30:04 -0500960 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000966
Steven Whitehousec7526662006-03-20 12:30:04 -0500967 /* Compute the start and len of leaf pointers in the hash table. */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968 len = 1 << (dip->i_di.di_depth - be16_to_cpu(oleaf->lf_depth));
969 half_len = len >> 1;
970 if (!half_len) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500971 printk(KERN_WARNING "di_depth %u lf_depth %u index %u\n", dip->i_di.di_depth, be16_to_cpu(oleaf->lf_depth), index);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972 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. */
Steven Whitehousecd915492006-09-04 12:49:07 -0400982 lp = kmalloc(half_len * sizeof(u64), GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984 for (x = 0; x < half_len; x++)
985 lp[x] = cpu_to_be64(bn);
986
Steven Whitehousecd915492006-09-04 12:49:07 -0400987 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
988 half_len * sizeof(u64));
989 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990 if (error >= 0)
991 error = -EIO;
992 goto fail_lpfree;
993 }
994
995 kfree(lp);
996
997 /* Compute the divider */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 divider = (start + half_len) << (32 - dip->i_di.di_depth);
999
1000 /* Copy the entries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001 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) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001010 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);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001014 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001015 if (IS_ERR(new)) {
1016 error = PTR_ERR(new);
1017 break;
1018 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001019
1020 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021 new->de_type = dent->de_type; /* No endian worries */
Steven Whitehousec7526662006-03-20 12:30:04 -05001022 nleaf->lf_entries = cpu_to_be16(be16_to_cpu(nleaf->lf_entries)+1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023
1024 dirent_del(dip, obh, prev, dent);
1025
1026 if (!oleaf->lf_entries)
1027 gfs2_consist_inode(dip);
Steven Whitehousec7526662006-03-20 12:30:04 -05001028 oleaf->lf_entries = cpu_to_be16(be16_to_cpu(oleaf->lf_entries)-1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001029
1030 if (!prev)
1031 prev = dent;
1032
1033 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001034 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001036 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001037 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001038 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039
Steven Whitehousec7526662006-03-20 12:30:04 -05001040 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041
1042 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001043 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044 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
Steven Whitehousee90deff2006-03-29 19:02:15 -05001054fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001055 kfree(lp);
1056
Steven Whitehousee90deff2006-03-29 19:02:15 -05001057fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001059 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
1070static int dir_double_exhash(struct gfs2_inode *dip)
1071{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001072 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001073 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001074 u32 hsize;
1075 u64 *buf;
1076 u64 *from, *to;
1077 u64 block;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078 int x;
1079 int error = 0;
1080
1081 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001082 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001083 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--;) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001092 error = gfs2_dir_read_data(dip, (char *)buf,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001093 block * sdp->sd_hash_bsize,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001094 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001095 if (error != sdp->sd_hash_bsize) {
1096 if (error >= 0)
1097 error = -EIO;
1098 goto fail;
1099 }
1100
1101 from = buf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001102 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001103
1104 for (x = sdp->sd_hash_ptrs; x--; from++) {
1105 *to++ = *from; /* No endianess worries */
1106 *to++ = *from;
1107 }
1108
Steven Whitehousee13940b2006-01-30 13:31:50 +00001109 error = gfs2_dir_write_data(dip,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110 (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
Steven Whitehousea91ea692006-09-04 12:04:26 -04001131fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001132 kfree(buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001133 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
1147static int compare_dents(const void *a, const void *b)
1148{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001149 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001150 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 int ret = 0;
1152
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001153 dent_a = *(const struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001154 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001156 dent_b = *(const struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001157 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001158
1159 if (hash_a > hash_b)
1160 ret = 1;
1161 else if (hash_a < hash_b)
1162 ret = -1;
1163 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001164 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166
1167 if (len_a > len_b)
1168 ret = 1;
1169 else if (len_a < len_b)
1170 ret = -1;
1171 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001172 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001173 }
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
Steven Whitehousecd915492006-09-04 12:49:07 -04001196static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001197 void *opaque, gfs2_filldir_t filldir,
Steven Whitehousecd915492006-09-04 12:49:07 -04001198 const struct gfs2_dirent **darr, u32 entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001199 int *copied)
1200{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001201 const struct gfs2_dirent *dent, *dent_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202 struct gfs2_inum inum;
Steven Whitehousecd915492006-09-04 12:49:07 -04001203 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001204 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
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001241 error = filldir(opaque, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001242 be16_to_cpu(dent->de_name_len),
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243 off, &inum,
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001244 be16_to_cpu(dent->de_type));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001245 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
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001260static 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)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001263{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001264 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001265 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275
David Teiglandb3b94fa2006-01-16 16:50:04 +00001276 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001277 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001279 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288
1289 if (!entries)
1290 return 0;
1291
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001292 error = -ENOMEM;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001293 larr = vmalloc((leaves + entries) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001294 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001300
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001301 do {
1302 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001303 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001304 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001316 } else {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001317 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001318 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001319 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001320
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001321 error = do_filldir_main(ip, offset, opaque, filldir, darr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001322 entries, copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001323out_kfree:
1324 for(i = 0; i < leaf; i++)
1325 brelse(larr[i]);
Steven Whitehousefe1bded2006-04-18 10:09:15 -04001326 vfree(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001327out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001328 return error;
1329}
1330
1331/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001332 * 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
Steven Whitehousecd915492006-09-04 12:49:07 -04001341static int dir_e_read(struct inode *inode, u64 *offset, void *opaque,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001342 gfs2_filldir_t filldir)
1343{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001344 struct gfs2_inode *dip = GFS2_I(inode);
1345 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001346 u32 hsize, len = 0;
1347 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1348 u32 hash, index;
1349 u64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001350 int copied = 0;
1351 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001352 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001353
1354 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001355 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001356 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) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001372 error = gfs2_dir_read_data(dip, (char *)lp,
Steven Whitehousecd915492006-09-04 12:49:07 -04001373 ht_offset * sizeof(u64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001374 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001375 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
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001383 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1384 &copied, &depth,
1385 be64_to_cpu(lp[lp_offset]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001386 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001387 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001388
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001389 len = 1 << (dip->i_di.di_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001390 index = (index & ~(len - 1)) + len;
1391 }
1392
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001393out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001394 kfree(lp);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001395 if (error > 0)
1396 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001397 return error;
1398}
1399
Steven Whitehousecd915492006-09-04 12:49:07 -04001400int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001401 gfs2_filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001402{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001403 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001404 struct dirent_gather g;
1405 const struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001406 struct buffer_head *dibh;
1407 int copied = 0;
1408 int error;
1409
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001410 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
David Teiglandb3b94fa2006-01-16 16:50:04 +00001416 if (!gfs2_is_stuffed(dip)) {
1417 gfs2_consist_inode(dip);
1418 return -EIO;
1419 }
1420
David Teiglandb3b94fa2006-01-16 16:50:04 +00001421 error = gfs2_meta_inode_buffer(dip, &dibh);
1422 if (error)
1423 return error;
1424
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001425 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);
1439out:
1440 kfree(darr);
1441 }
1442
David Teiglandb3b94fa2006-01-16 16:50:04 +00001443 if (error > 0)
1444 error = 0;
1445
1446 brelse(dibh);
1447
1448 return error;
1449}
1450
David Teiglandb3b94fa2006-01-16 16:50:04 +00001451/**
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
Steven Whitehousec7526662006-03-20 12:30:04 -05001463int gfs2_dir_search(struct inode *dir, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001464 struct gfs2_inum *inum, unsigned int *type)
1465{
Steven Whitehousec7526662006-03-20 12:30:04 -05001466 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
1483static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1484{
1485 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001486 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001487 struct gfs2_leaf *leaf, *oleaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001488 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001489 u32 index;
1490 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001491
Steven Whitehousec7526662006-03-20 12:30:04 -05001492 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001506
Steven Whitehousec7526662006-03-20 12:30:04 -05001507 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 }
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001514 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001515 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001526}
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
Steven Whitehousec7526662006-03-20 12:30:04 -05001538int gfs2_dir_add(struct inode *inode, const struct qstr *name,
1539 const struct gfs2_inum *inum, unsigned type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001540{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001541 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001542 struct buffer_head *bh;
1543 struct gfs2_dirent *dent;
1544 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001545 int error;
1546
Steven Whitehousec7526662006-03-20 12:30:04 -05001547 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;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001581 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001582 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);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001588 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001589 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001590 if (error == 0)
1591 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001592 }
1593 error = dir_new_leaf(inode, name);
1594 if (!error)
1595 continue;
1596 error = -ENOSPC;
1597 break;
1598 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001599 return error;
1600}
1601
Steven Whitehousec7526662006-03-20 12:30:04 -05001602
David Teiglandb3b94fa2006-01-16 16:50:04 +00001603/**
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
Steven Whitehousec7526662006-03-20 12:30:04 -05001611int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001612{
Steven Whitehousec7526662006-03-20 12:30:04 -05001613 struct gfs2_dirent *dent, *prev = NULL;
1614 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001615 int error;
1616
Steven Whitehousec7526662006-03-20 12:30:04 -05001617 /* Returns _either_ the entry (if its first in block) or the
1618 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001619 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001620 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 */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001629 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001630 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);
Steven Whitehousec7526662006-03-20 12:30:04 -05001641 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001642 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001643
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);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001655 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001656
1657 return error;
1658}
1659
David Teiglandb3b94fa2006-01-16 16:50:04 +00001660/**
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
Steven Whitehousec7526662006-03-20 12:30:04 -05001673int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001674 struct gfs2_inum *inum, unsigned int new_type)
1675{
Steven Whitehousec7526662006-03-20 12:30:04 -05001676 struct buffer_head *bh;
1677 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001678 int error;
1679
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001680 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001681 if (!dent) {
1682 gfs2_consist_inode(dip);
1683 return -EIO;
1684 }
1685 if (IS_ERR(dent))
1686 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001687
Steven Whitehousec7526662006-03-20 12:30:04 -05001688 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;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001704}
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
1715static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1716{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001717 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001718 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001719 struct gfs2_leaf *leaf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001720 u32 hsize, len;
1721 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1722 u32 index = 0;
1723 u64 *lp;
1724 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001725 int error = 0;
1726
1727 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001728 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001729 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) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001742 error = gfs2_dir_read_data(dip, (char *)lp,
Steven Whitehousecd915492006-09-04 12:49:07 -04001743 ht_offset * sizeof(u64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001744 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001745 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;
Steven Whitehousec7526662006-03-20 12:30:04 -05001758 leaf = (struct gfs2_leaf *)bh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -05001759 len = 1 << (dip->i_di.di_depth - be16_to_cpu(leaf->lf_depth));
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001760 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001761
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
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001776out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001777 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
Steven Whitehousecd915492006-09-04 12:49:07 -04001793static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
1794 u64 leaf_no, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001795{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001796 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001797 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001798 struct gfs2_rgrp_list rlist;
1799 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001800 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001801 unsigned int rg_blocks = 0, l_blocks = 0;
1802 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001803 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001804 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
Steven Whitehousec7526662006-03-20 12:30:04 -05001824 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001825 error = get_leaf(dip, blk, &bh);
1826 if (error)
1827 goto out_rlist;
Steven Whitehousec7526662006-03-20 12:30:04 -05001828 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1829 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001830 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;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001840 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001841 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,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001849 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001850 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1851 if (error)
1852 goto out_rg_gunlock;
1853
Steven Whitehousec7526662006-03-20 12:30:04 -05001854 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001855 error = get_leaf(dip, blk, &bh);
1856 if (error)
1857 goto out_end_trans;
Steven Whitehousec7526662006-03-20 12:30:04 -05001858 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1859 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001860 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
Steven Whitehousecd915492006-09-04 12:49:07 -04001869 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001870 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
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001880 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001881 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1882 brelse(dibh);
1883
Steven Whitehousea91ea692006-09-04 12:04:26 -04001884out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001885 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001886out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001887 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001888out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001889 gfs2_rlist_free(&rlist);
1890 gfs2_glock_dq_uninit(&dip->i_alloc.al_ri_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001891out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001892 gfs2_quota_unhold(dip);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001893out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001894 gfs2_alloc_put(dip);
1895 kfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001896 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
1909int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1910{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001911 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001912 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) {
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001929 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001930 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1931 cpu_to_be32(S_IFREG);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001932 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
David Teiglandb3b94fa2006-01-16 16:50:04 +00001944 *
Steven Whitehousec7526662006-03-20 12:30:04 -05001945 * Returns: 1 if alloc required, 0 if not, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00001946 */
1947
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001948int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001949{
Steven Whitehousec7526662006-03-20 12:30:04 -05001950 struct gfs2_dirent *dent;
1951 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001952
Steven Whitehousec7526662006-03-20 12:30:04 -05001953 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04001954 if (!dent) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001955 return 1;
Steven Whitehouseed386502006-04-07 16:28:07 -04001956 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001957 if (IS_ERR(dent))
1958 return PTR_ERR(dent);
1959 brelse(bh);
1960 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001961}
1962