blob: 82a1ac7895a2d02926eaded3be2182b993c1d8bf [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
David Teiglandb3b94fa2006-01-16 16:50:04 +000056#include <linux/slab.h>
57#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000058#include <linux/buffer_head.h>
59#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050060#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050061#include <linux/crc32.h>
Steven Whitehousefe1bded2006-04-18 10:09:15 -040062#include <linux/vmalloc.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020063#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000064
65#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050066#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000067#include "dir.h"
68#include "glock.h"
69#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000070#include "meta_io.h"
71#include "quota.h"
72#include "rgrp.h"
73#include "trans.h"
Steven Whitehousee13940b2006-01-30 13:31:50 +000074#include "bmap.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050075#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000076
77#define IS_LEAF 1 /* Hashed (leaf) directory */
78#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
79
Steven Whitehousecd915492006-09-04 12:49:07 -040080#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
81#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
David Teiglandb3b94fa2006-01-16 16:50:04 +000082
Steven Whitehouse907b9bc2006-09-25 09:26:04 -040083typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len,
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040084 u64 leaf_no, void *data);
85typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
86 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087
Steven Whitehouse61e085a2006-04-24 10:07:13 -040088
Steven Whitehousecd915492006-09-04 12:49:07 -040089int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040090 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000091{
92 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000093
Steven Whitehouse61e085a2006-04-24 10:07:13 -040094 bh = gfs2_meta_new(ip->i_gl, block);
95 gfs2_trans_add_bh(ip->i_gl, bh, 1);
96 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
97 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +000098 *bhp = bh;
99 return 0;
100}
101
Steven Whitehousecd915492006-09-04 12:49:07 -0400102static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400103 struct buffer_head **bhp)
104{
105 struct buffer_head *bh;
106 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000107
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400108 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400109 if (error)
110 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400111 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400112 brelse(bh);
113 return -EIO;
114 }
115 *bhp = bh;
116 return 0;
117}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000118
119static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
120 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000121{
122 struct buffer_head *dibh;
123 int error;
124
125 error = gfs2_meta_inode_buffer(ip, &dibh);
126 if (error)
127 return error;
128
129 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500130 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000131 if (ip->i_di.di_size < offset + size)
132 ip->i_di.di_size = offset + size;
Eric Sandeenddfe0622007-01-18 16:41:23 -0600133 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME_SEC;
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500134 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000135
136 brelse(dibh);
137
138 return size;
139}
140
141
142
143/**
144 * gfs2_dir_write_data - Write directory information to the inode
145 * @ip: The GFS2 inode
146 * @buf: The buffer containing information to be written
147 * @offset: The file offset to start writing at
148 * @size: The amount of data to write
149 *
150 * Returns: The number of bytes correctly written or error code
151 */
152static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400153 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000154{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400155 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000156 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400157 u64 lblock, dblock;
158 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000159 unsigned int o;
160 int copied = 0;
161 int error = 0;
162
163 if (!size)
164 return 0;
165
166 if (gfs2_is_stuffed(ip) &&
167 offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500168 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
169 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000170
171 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
172 return -EINVAL;
173
174 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400175 error = gfs2_unstuff_dinode(ip, NULL);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000176 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500177 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000178 }
179
180 lblock = offset;
181 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
182
183 while (copied < size) {
184 unsigned int amount;
185 struct buffer_head *bh;
Adrian Bunk348acd42006-10-19 15:20:04 +0200186 int new = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000187
188 amount = size - copied;
189 if (amount > sdp->sd_sb.sb_bsize - o)
190 amount = sdp->sd_sb.sb_bsize - o;
191
192 if (!extlen) {
193 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400194 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400195 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000196 if (error)
197 goto fail;
198 error = -EIO;
199 if (gfs2_assert_withdraw(sdp, dblock))
200 goto fail;
201 }
202
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400203 if (amount == sdp->sd_jbsize || new)
204 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
205 else
206 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
207
Steven Whitehousee13940b2006-01-30 13:31:50 +0000208 if (error)
209 goto fail;
210
211 gfs2_trans_add_bh(ip->i_gl, bh, 1);
212 memcpy(bh->b_data + o, buf, amount);
213 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000214
Steven Whitehouse899bb262006-08-01 15:28:57 -0400215 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000216 copied += amount;
217 lblock++;
218 dblock++;
219 extlen--;
220
221 o = sizeof(struct gfs2_meta_header);
222 }
223
224out:
225 error = gfs2_meta_inode_buffer(ip, &dibh);
226 if (error)
227 return error;
228
229 if (ip->i_di.di_size < offset + copied)
230 ip->i_di.di_size = offset + copied;
Eric Sandeenddfe0622007-01-18 16:41:23 -0600231 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME_SEC;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000232
233 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500234 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000235 brelse(dibh);
236
237 return copied;
238fail:
239 if (copied)
240 goto out;
241 return error;
242}
243
244static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400245 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000246{
247 struct buffer_head *dibh;
248 int error;
249
250 error = gfs2_meta_inode_buffer(ip, &dibh);
251 if (!error) {
252 offset += sizeof(struct gfs2_dinode);
253 memcpy(buf, dibh->b_data + offset, size);
254 brelse(dibh);
255 }
256
257 return (error) ? error : size;
258}
259
260
261/**
262 * gfs2_dir_read_data - Read a data from a directory inode
263 * @ip: The GFS2 Inode
264 * @buf: The buffer to place result into
265 * @offset: File offset to begin jdata_readng from
266 * @size: Amount of data to transfer
267 *
268 * Returns: The amount of data actually copied or the error
269 */
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400270static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, u64 offset,
271 unsigned int size, unsigned ra)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000272{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400273 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400274 u64 lblock, dblock;
275 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000276 unsigned int o;
277 int copied = 0;
278 int error = 0;
279
280 if (offset >= ip->i_di.di_size)
281 return 0;
282
Jan Engelhardtc53921242006-09-05 14:30:40 +0200283 if (offset + size > ip->i_di.di_size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000284 size = ip->i_di.di_size - offset;
285
286 if (!size)
287 return 0;
288
289 if (gfs2_is_stuffed(ip))
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400290 return gfs2_dir_read_stuffed(ip, buf, offset, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000291
292 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
293 return -EINVAL;
294
295 lblock = offset;
296 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
297
298 while (copied < size) {
299 unsigned int amount;
300 struct buffer_head *bh;
301 int new;
302
303 amount = size - copied;
304 if (amount > sdp->sd_sb.sb_bsize - o)
305 amount = sdp->sd_sb.sb_bsize - o;
306
307 if (!extlen) {
308 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400309 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400310 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400311 if (error || !dblock)
312 goto fail;
313 BUG_ON(extlen < 1);
314 if (!ra)
315 extlen = 1;
316 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200317 } else {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400318 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000319 if (error)
320 goto fail;
321 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400322 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
323 if (error) {
324 brelse(bh);
325 goto fail;
326 }
327 dblock++;
328 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000329 memcpy(buf, bh->b_data + o, amount);
330 brelse(bh);
Steven Whitehouse899bb262006-08-01 15:28:57 -0400331 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000332 copied += amount;
333 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000334 o = sizeof(struct gfs2_meta_header);
335 }
336
337 return copied;
338fail:
339 return (copied) ? copied : error;
340}
341
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500342static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
343{
344 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
345}
346
Steven Whitehousec7526662006-03-20 12:30:04 -0500347static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
348 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500350 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500351 be32_to_cpu(dent->de_hash) == name->hash &&
352 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400353 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500354 return ret;
355 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000356}
357
Steven Whitehousec7526662006-03-20 12:30:04 -0500358static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500359 const struct qstr *name,
360 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500361{
362 return __gfs2_dirent_find(dent, name, 1);
363}
364
365static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500366 const struct qstr *name,
367 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500368{
369 return __gfs2_dirent_find(dent, name, 2);
370}
371
372/*
373 * name->name holds ptr to start of block.
374 * name->len holds size of block.
375 */
376static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500377 const struct qstr *name,
378 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500379{
380 const char *start = name->name;
381 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
382 if (name->len == (end - start))
383 return 1;
384 return 0;
385}
386
387static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500388 const struct qstr *name,
389 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500390{
391 unsigned required = GFS2_DIRENT_SIZE(name->len);
392 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
393 unsigned totlen = be16_to_cpu(dent->de_rec_len);
394
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500395 if (gfs2_dirent_sentinel(dent))
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500396 actual = GFS2_DIRENT_SIZE(0);
Jan Engelhardtc53921242006-09-05 14:30:40 +0200397 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500398 return 1;
399 return 0;
400}
401
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500402struct dirent_gather {
403 const struct gfs2_dirent **pdent;
404 unsigned offset;
405};
406
407static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
408 const struct qstr *name,
409 void *opaque)
410{
411 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500412 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500413 g->pdent[g->offset++] = dent;
414 }
415 return 0;
416}
417
Steven Whitehousec7526662006-03-20 12:30:04 -0500418/*
419 * Other possible things to check:
420 * - Inode located within filesystem size (and on valid block)
421 * - Valid directory entry type
422 * Not sure how heavy-weight we want to make this... could also check
423 * hash is correct for example, but that would take a lot of extra time.
424 * For now the most important thing is to check that the various sizes
425 * are correct.
426 */
427static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
428 unsigned int size, unsigned int len, int first)
429{
430 const char *msg = "gfs2_dirent too small";
431 if (unlikely(size < sizeof(struct gfs2_dirent)))
432 goto error;
433 msg = "gfs2_dirent misaligned";
434 if (unlikely(offset & 0x7))
435 goto error;
436 msg = "gfs2_dirent points beyond end of block";
437 if (unlikely(offset + size > len))
438 goto error;
439 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500440 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500441 goto error;
442 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500443 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500444 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
445 size))
446 goto error;
447 return 0;
448error:
449 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
450 first ? "first in block" : "not first in block");
451 return -EIO;
452}
453
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500454static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500455{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500456 const struct gfs2_meta_header *h = buf;
457 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500458
459 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500460
Steven Whitehousee3167de2006-03-30 15:46:23 -0500461 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500462 case GFS2_METATYPE_LF:
463 offset = sizeof(struct gfs2_leaf);
464 break;
465 case GFS2_METATYPE_DI:
466 offset = sizeof(struct gfs2_dinode);
467 break;
468 default:
469 goto wrong_type;
470 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500471 return offset;
472wrong_type:
473 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500474 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500475 return -1;
476}
Steven Whitehousec7526662006-03-20 12:30:04 -0500477
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400478static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500479 unsigned int len, gfs2_dscan_t scan,
480 const struct qstr *name,
481 void *opaque)
482{
483 struct gfs2_dirent *dent, *prev;
484 unsigned offset;
485 unsigned size;
486 int ret = 0;
487
488 ret = gfs2_dirent_offset(buf);
489 if (ret < 0)
490 goto consist_inode;
491
492 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500493 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400494 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500495 size = be16_to_cpu(dent->de_rec_len);
496 if (gfs2_check_dirent(dent, offset, size, len, 1))
497 goto consist_inode;
498 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500499 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500500 if (ret)
501 break;
502 offset += size;
503 if (offset == len)
504 break;
505 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400506 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500507 size = be16_to_cpu(dent->de_rec_len);
508 if (gfs2_check_dirent(dent, offset, size, len, 0))
509 goto consist_inode;
510 } while(1);
511
512 switch(ret) {
513 case 0:
514 return NULL;
515 case 1:
516 return dent;
517 case 2:
518 return prev ? prev : dent;
519 default:
520 BUG_ON(ret > 0);
521 return ERR_PTR(ret);
522 }
523
Steven Whitehousec7526662006-03-20 12:30:04 -0500524consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400525 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500526 return ERR_PTR(-EIO);
527}
528
529
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530/**
531 * dirent_first - Return the first dirent
532 * @dip: the directory
533 * @bh: The buffer
534 * @dent: Pointer to list of dirents
535 *
536 * return first dirent whether bh points to leaf or stuffed dinode
537 *
538 * Returns: IS_LEAF, IS_DINODE, or -errno
539 */
540
541static int dirent_first(struct gfs2_inode *dip, struct buffer_head *bh,
542 struct gfs2_dirent **dent)
543{
544 struct gfs2_meta_header *h = (struct gfs2_meta_header *)bh->b_data;
545
Steven Whitehousee3167de2006-03-30 15:46:23 -0500546 if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400547 if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000548 return -EIO;
549 *dent = (struct gfs2_dirent *)(bh->b_data +
550 sizeof(struct gfs2_leaf));
551 return IS_LEAF;
552 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400553 if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 return -EIO;
555 *dent = (struct gfs2_dirent *)(bh->b_data +
556 sizeof(struct gfs2_dinode));
557 return IS_DINODE;
558 }
559}
560
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400561static int dirent_check_reclen(struct gfs2_inode *dip,
562 const struct gfs2_dirent *d, const void *end_p)
563{
564 const void *ptr = d;
565 u16 rec_len = be16_to_cpu(d->de_rec_len);
566
567 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
568 goto broken;
569 ptr += rec_len;
570 if (ptr < end_p)
571 return rec_len;
572 if (ptr == end_p)
573 return -ENOENT;
574broken:
575 gfs2_consist_inode(dip);
576 return -EIO;
577}
578
David Teiglandb3b94fa2006-01-16 16:50:04 +0000579/**
580 * dirent_next - Next dirent
581 * @dip: the directory
582 * @bh: The buffer
583 * @dent: Pointer to list of dirents
584 *
585 * Returns: 0 on success, error code otherwise
586 */
587
588static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
589 struct gfs2_dirent **dent)
590{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400591 struct gfs2_dirent *cur = *dent, *tmp;
592 char *bh_end = bh->b_data + bh->b_size;
593 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000594
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400595 ret = dirent_check_reclen(dip, cur, bh_end);
596 if (ret < 0)
597 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000598
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400599 tmp = (void *)cur + ret;
600 ret = dirent_check_reclen(dip, tmp, bh_end);
601 if (ret == -EIO)
602 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000603
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500605 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606 gfs2_consist_inode(dip);
607 return -EIO;
608 }
609
610 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611 return 0;
612}
613
614/**
615 * dirent_del - Delete a dirent
616 * @dip: The GFS2 inode
617 * @bh: The buffer
618 * @prev: The previous dirent
619 * @cur: The current dirent
620 *
621 */
622
623static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
624 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
625{
Steven Whitehousecd915492006-09-04 12:49:07 -0400626 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500628 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 gfs2_consist_inode(dip);
630 return;
631 }
632
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000633 gfs2_trans_add_bh(dip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000634
635 /* If there is no prev entry, this is the first entry in the block.
636 The de_rec_len is already as big as it needs to be. Just zero
637 out the inode number and return. */
638
639 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500640 cur->de_inum.no_addr = 0;
641 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642 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 Whitehouse5e7d65c2006-11-17 12:27:44 -0500672 if (!gfs2_dirent_sentinel(dent))
Steven Whitehousec7526662006-03-20 12:30:04 -0500673 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 Whitehouse907b9bc2006-09-25 09:26:04 -0400688 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500689 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{
Al Virob44b84d2006-10-14 10:46:30 -0400721 __be64 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,
Al Virob44b84d2006-10-14 10:46:30 -0400725 index * sizeof(__be64),
726 sizeof(__be64), 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 Whitehouse907b9bc2006-09-25 09:26:04 -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 Whitehouse907b9bc2006-09-25 09:26:04 -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 Whitehouse907b9bc2006-09-25 09:26:04 -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 Whitehouse907b9bc2006-09-25 09:26:04 -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;
Al Viroa2d7d022006-10-14 16:49:30 +0100819 leaf->lf_dirent_format = cpu_to_be32(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;
Al Virob44b84d2006-10-14 10:46:30 -0400845 __be64 *lp;
846 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000847 int error;
848
849 error = gfs2_meta_inode_buffer(dip, &dibh);
850 if (error)
851 return error;
852
David Teiglandb3b94fa2006-01-16 16:50:04 +0000853 /* Turn over a new leaf */
854
Steven Whitehousec7526662006-03-20 12:30:04 -0500855 leaf = new_leaf(inode, &bh, 0);
856 if (!leaf)
857 return -ENOSPC;
858 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000859
860 gfs2_assert(sdp, dip->i_di.di_entries < (1 << 16));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 leaf->lf_entries = cpu_to_be16(dip->i_di.di_entries);
862
863 /* Copy dirents */
864
865 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
866 sizeof(struct gfs2_dinode));
867
868 /* Find last entry */
869
870 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500871 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
872 sizeof(struct gfs2_leaf);
873 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400874 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500875 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500876 if (!dent) {
877 brelse(bh);
878 brelse(dibh);
879 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000880 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500881 if (IS_ERR(dent)) {
882 brelse(bh);
883 brelse(dibh);
884 return PTR_ERR(dent);
885 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886
887 /* Adjust the last dirent's record length
888 (Remember that dent still points to the last entry.) */
889
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000890 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000892 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000893
894 brelse(bh);
895
896 /* We're done with the new leaf block, now setup the new
897 hash table. */
898
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000899 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
901
Al Virob44b84d2006-10-14 10:46:30 -0400902 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000903
904 for (x = sdp->sd_hash_ptrs; x--; lp++)
905 *lp = cpu_to_be64(bn);
906
907 dip->i_di.di_size = sdp->sd_sb.sb_bsize / 2;
908 dip->i_di.di_blocks++;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500909 gfs2_set_inode_blocks(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910 dip->i_di.di_flags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911
912 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
913 dip->i_di.di_depth = y;
914
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500915 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916
917 brelse(dibh);
918
919 return 0;
920}
921
922/**
923 * dir_split_leaf - Split a leaf block into two
924 * @dip: The GFS2 inode
925 * @index:
926 * @leaf_no:
927 *
928 * Returns: 0 on success, error code on failure
929 */
930
Steven Whitehousec7526662006-03-20 12:30:04 -0500931static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000932{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400933 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 struct buffer_head *nbh, *obh, *dibh;
935 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -0400936 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -0400937 u32 start, len, half_len, divider;
Al Virob44b84d2006-10-14 10:46:30 -0400938 u64 bn, leaf_no;
939 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -0400940 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000941 int x, moved = 0;
942 int error;
943
Steven Whitehousec7526662006-03-20 12:30:04 -0500944 index = name->hash >> (32 - dip->i_di.di_depth);
945 error = get_leaf_nr(dip, index, &leaf_no);
946 if (error)
947 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000948
949 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000950 error = get_leaf(dip, leaf_no, &obh);
951 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500952 return error;
953
954 oleaf = (struct gfs2_leaf *)obh->b_data;
955 if (dip->i_di.di_depth == be16_to_cpu(oleaf->lf_depth)) {
956 brelse(obh);
957 return 1; /* can't split */
958 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000960 gfs2_trans_add_bh(dip->i_gl, obh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961
Steven Whitehousec7526662006-03-20 12:30:04 -0500962 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
963 if (!nleaf) {
964 brelse(obh);
965 return -ENOSPC;
966 }
967 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968
Steven Whitehousec7526662006-03-20 12:30:04 -0500969 /* Compute the start and len of leaf pointers in the hash table. */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 len = 1 << (dip->i_di.di_depth - be16_to_cpu(oleaf->lf_depth));
971 half_len = len >> 1;
972 if (!half_len) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500973 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 +0000974 gfs2_consist_inode(dip);
975 error = -EIO;
976 goto fail_brelse;
977 }
978
979 start = (index & ~(len - 1));
980
981 /* Change the pointers.
982 Don't bother distinguishing stuffed from non-stuffed.
983 This code is complicated enough already. */
Al Virob44b84d2006-10-14 10:46:30 -0400984 lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986 for (x = 0; x < half_len; x++)
987 lp[x] = cpu_to_be64(bn);
988
Steven Whitehousecd915492006-09-04 12:49:07 -0400989 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
990 half_len * sizeof(u64));
991 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992 if (error >= 0)
993 error = -EIO;
994 goto fail_lpfree;
995 }
996
997 kfree(lp);
998
999 /* Compute the divider */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001000 divider = (start + half_len) << (32 - dip->i_di.di_depth);
1001
1002 /* Copy the entries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001003 dirent_first(dip, obh, &dent);
1004
1005 do {
1006 next = dent;
1007 if (dirent_next(dip, obh, &next))
1008 next = NULL;
1009
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -05001010 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001012 struct qstr str;
1013 str.name = (char*)(dent+1);
1014 str.len = be16_to_cpu(dent->de_name_len);
1015 str.hash = be32_to_cpu(dent->de_hash);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001016 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001017 if (IS_ERR(new)) {
1018 error = PTR_ERR(new);
1019 break;
1020 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021
1022 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 new->de_type = dent->de_type; /* No endian worries */
Steven Whitehousec7526662006-03-20 12:30:04 -05001024 nleaf->lf_entries = cpu_to_be16(be16_to_cpu(nleaf->lf_entries)+1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025
1026 dirent_del(dip, obh, prev, dent);
1027
1028 if (!oleaf->lf_entries)
1029 gfs2_consist_inode(dip);
Steven Whitehousec7526662006-03-20 12:30:04 -05001030 oleaf->lf_entries = cpu_to_be16(be16_to_cpu(oleaf->lf_entries)-1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001031
1032 if (!prev)
1033 prev = dent;
1034
1035 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001036 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001037 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001038 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001040 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041
Steven Whitehousec7526662006-03-20 12:30:04 -05001042 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001043
1044 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001045 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001046 dip->i_di.di_blocks++;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -05001047 gfs2_set_inode_blocks(&dip->i_inode);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001048 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001049 brelse(dibh);
1050 }
1051
1052 brelse(obh);
1053 brelse(nbh);
1054
1055 return error;
1056
Steven Whitehousee90deff2006-03-29 19:02:15 -05001057fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 kfree(lp);
1059
Steven Whitehousee90deff2006-03-29 19:02:15 -05001060fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001061 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062 brelse(nbh);
1063 return error;
1064}
1065
1066/**
1067 * dir_double_exhash - Double size of ExHash table
1068 * @dip: The GFS2 dinode
1069 *
1070 * Returns: 0 on success, error code on failure
1071 */
1072
1073static int dir_double_exhash(struct gfs2_inode *dip)
1074{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001075 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001077 u32 hsize;
1078 u64 *buf;
1079 u64 *from, *to;
1080 u64 block;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 int x;
1082 int error = 0;
1083
1084 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001085 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086 gfs2_consist_inode(dip);
1087 return -EIO;
1088 }
1089
1090 /* Allocate both the "from" and "to" buffers in one big chunk */
1091
1092 buf = kcalloc(3, sdp->sd_hash_bsize, GFP_KERNEL | __GFP_NOFAIL);
1093
1094 for (block = dip->i_di.di_size >> sdp->sd_hash_bsize_shift; block--;) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001095 error = gfs2_dir_read_data(dip, (char *)buf,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001096 block * sdp->sd_hash_bsize,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001097 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001098 if (error != sdp->sd_hash_bsize) {
1099 if (error >= 0)
1100 error = -EIO;
1101 goto fail;
1102 }
1103
1104 from = buf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001105 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001106
1107 for (x = sdp->sd_hash_ptrs; x--; from++) {
1108 *to++ = *from; /* No endianess worries */
1109 *to++ = *from;
1110 }
1111
Steven Whitehousee13940b2006-01-30 13:31:50 +00001112 error = gfs2_dir_write_data(dip,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113 (char *)buf + sdp->sd_hash_bsize,
1114 block * sdp->sd_sb.sb_bsize,
1115 sdp->sd_sb.sb_bsize);
1116 if (error != sdp->sd_sb.sb_bsize) {
1117 if (error >= 0)
1118 error = -EIO;
1119 goto fail;
1120 }
1121 }
1122
1123 kfree(buf);
1124
1125 error = gfs2_meta_inode_buffer(dip, &dibh);
1126 if (!gfs2_assert_withdraw(sdp, !error)) {
1127 dip->i_di.di_depth++;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001128 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001129 brelse(dibh);
1130 }
1131
1132 return error;
1133
Steven Whitehousea91ea692006-09-04 12:04:26 -04001134fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001135 kfree(buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001136 return error;
1137}
1138
1139/**
1140 * compare_dents - compare directory entries by hash value
1141 * @a: first dent
1142 * @b: second dent
1143 *
1144 * When comparing the hash entries of @a to @b:
1145 * gt: returns 1
1146 * lt: returns -1
1147 * eq: returns 0
1148 */
1149
1150static int compare_dents(const void *a, const void *b)
1151{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001152 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001153 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154 int ret = 0;
1155
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001156 dent_a = *(const struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001157 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001158
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001159 dent_b = *(const struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001160 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161
1162 if (hash_a > hash_b)
1163 ret = 1;
1164 else if (hash_a < hash_b)
1165 ret = -1;
1166 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001167 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1168 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001169
1170 if (len_a > len_b)
1171 ret = 1;
1172 else if (len_a < len_b)
1173 ret = -1;
1174 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001175 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001176 }
1177
1178 return ret;
1179}
1180
1181/**
1182 * do_filldir_main - read out directory entries
1183 * @dip: The GFS2 inode
1184 * @offset: The offset in the file to read from
1185 * @opaque: opaque data to pass to filldir
1186 * @filldir: The function to pass entries to
1187 * @darr: an array of struct gfs2_dirent pointers to read
1188 * @entries: the number of entries in darr
1189 * @copied: pointer to int that's non-zero if a entry has been copied out
1190 *
1191 * Jump through some hoops to make sure that if there are hash collsions,
1192 * they are read out at the beginning of a buffer. We want to minimize
1193 * the possibility that they will fall into different readdir buffers or
1194 * that someone will want to seek to that location.
1195 *
1196 * Returns: errno, >0 on exception from filldir
1197 */
1198
Steven Whitehousecd915492006-09-04 12:49:07 -04001199static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001200 void *opaque, filldir_t filldir,
Steven Whitehousecd915492006-09-04 12:49:07 -04001201 const struct gfs2_dirent **darr, u32 entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202 int *copied)
1203{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001204 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001205 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 unsigned int x, y;
1207 int run = 0;
1208 int error = 0;
1209
1210 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1211
1212 dent_next = darr[0];
1213 off_next = be32_to_cpu(dent_next->de_hash);
1214 off_next = gfs2_disk_hash2offset(off_next);
1215
1216 for (x = 0, y = 1; x < entries; x++, y++) {
1217 dent = dent_next;
1218 off = off_next;
1219
1220 if (y < entries) {
1221 dent_next = darr[y];
1222 off_next = be32_to_cpu(dent_next->de_hash);
1223 off_next = gfs2_disk_hash2offset(off_next);
1224
1225 if (off < *offset)
1226 continue;
1227 *offset = off;
1228
1229 if (off_next == off) {
1230 if (*copied && !run)
1231 return 1;
1232 run = 1;
1233 } else
1234 run = 0;
1235 } else {
1236 if (off < *offset)
1237 continue;
1238 *offset = off;
1239 }
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),
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001243 off, be64_to_cpu(dent->de_inum.no_addr),
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,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001261 filldir_t filldir, int *copied, unsigned *depth,
1262 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,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001342 filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001343{
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;
Al Virob44b84d2006-10-14 10:46:30 -04001349 __be64 *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,
Al Virob44b84d2006-10-14 10:46:30 -04001373 ht_offset * sizeof(__be64),
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 Whitehouse3699e3a2007-01-17 15:09:20 +00001401 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,
Al Viro629a21e2006-10-13 22:51:24 -04001464 struct gfs2_inum_host *inum, unsigned int *type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001465{
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++;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -05001523 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001524 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001525 brelse(bh);
1526 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001527}
1528
1529/**
1530 * gfs2_dir_add - Add new filename into directory
1531 * @dip: The GFS2 inode
1532 * @filename: The new name
1533 * @inode: The inode number of the entry
1534 * @type: The type of the entry
1535 *
1536 * Returns: 0 on success, error code on failure
1537 */
1538
Steven Whitehousec7526662006-03-20 12:30:04 -05001539int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Al Viro629a21e2006-10-13 22:51:24 -04001540 const struct gfs2_inum_host *inum, unsigned type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001541{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001542 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001543 struct buffer_head *bh;
1544 struct gfs2_dirent *dent;
1545 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001546 int error;
1547
Steven Whitehousec7526662006-03-20 12:30:04 -05001548 while(1) {
1549 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1550 &bh);
1551 if (dent) {
1552 if (IS_ERR(dent))
1553 return PTR_ERR(dent);
1554 dent = gfs2_init_dirent(inode, dent, name, bh);
1555 gfs2_inum_out(inum, (char *)&dent->de_inum);
1556 dent->de_type = cpu_to_be16(type);
1557 if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
1558 leaf = (struct gfs2_leaf *)bh->b_data;
1559 leaf->lf_entries = cpu_to_be16(be16_to_cpu(leaf->lf_entries) + 1);
1560 }
1561 brelse(bh);
1562 error = gfs2_meta_inode_buffer(ip, &bh);
1563 if (error)
1564 break;
1565 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1566 ip->i_di.di_entries++;
Eric Sandeenddfe0622007-01-18 16:41:23 -06001567 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME_SEC;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001568 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001569 brelse(bh);
1570 error = 0;
1571 break;
1572 }
1573 if (!(ip->i_di.di_flags & GFS2_DIF_EXHASH)) {
1574 error = dir_make_exhash(inode);
1575 if (error)
1576 break;
1577 continue;
1578 }
1579 error = dir_split_leaf(inode, name);
1580 if (error == 0)
1581 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001582 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001583 break;
1584 if (ip->i_di.di_depth < GFS2_DIR_MAX_DEPTH) {
1585 error = dir_double_exhash(ip);
1586 if (error)
1587 break;
1588 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001589 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001590 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001591 if (error == 0)
1592 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001593 }
1594 error = dir_new_leaf(inode, name);
1595 if (!error)
1596 continue;
1597 error = -ENOSPC;
1598 break;
1599 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001600 return error;
1601}
1602
Steven Whitehousec7526662006-03-20 12:30:04 -05001603
David Teiglandb3b94fa2006-01-16 16:50:04 +00001604/**
1605 * gfs2_dir_del - Delete a directory entry
1606 * @dip: The GFS2 inode
1607 * @filename: The filename
1608 *
1609 * Returns: 0 on success, error code on failure
1610 */
1611
Steven Whitehousec7526662006-03-20 12:30:04 -05001612int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001613{
Steven Whitehousec7526662006-03-20 12:30:04 -05001614 struct gfs2_dirent *dent, *prev = NULL;
1615 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001616 int error;
1617
Steven Whitehousec7526662006-03-20 12:30:04 -05001618 /* Returns _either_ the entry (if its first in block) or the
1619 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001620 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001621 if (!dent) {
1622 gfs2_consist_inode(dip);
1623 return -EIO;
1624 }
1625 if (IS_ERR(dent)) {
1626 gfs2_consist_inode(dip);
1627 return PTR_ERR(dent);
1628 }
1629 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001630 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001631 prev = dent;
1632 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1633 }
1634
1635 dirent_del(dip, bh, prev, dent);
1636 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1637 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1638 u16 entries = be16_to_cpu(leaf->lf_entries);
1639 if (!entries)
1640 gfs2_consist_inode(dip);
1641 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehousec7526662006-03-20 12:30:04 -05001642 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001643 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001644
1645 error = gfs2_meta_inode_buffer(dip, &bh);
1646 if (error)
1647 return error;
1648
1649 if (!dip->i_di.di_entries)
1650 gfs2_consist_inode(dip);
1651 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1652 dip->i_di.di_entries--;
Eric Sandeenddfe0622007-01-18 16:41:23 -06001653 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME_SEC;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001654 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001655 brelse(bh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001656 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001657
1658 return error;
1659}
1660
David Teiglandb3b94fa2006-01-16 16:50:04 +00001661/**
1662 * gfs2_dir_mvino - Change inode number of directory entry
1663 * @dip: The GFS2 inode
1664 * @filename:
1665 * @new_inode:
1666 *
1667 * This routine changes the inode number of a directory entry. It's used
1668 * by rename to change ".." when a directory is moved.
1669 * Assumes a glock is held on dvp.
1670 *
1671 * Returns: errno
1672 */
1673
Steven Whitehousec7526662006-03-20 12:30:04 -05001674int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
Al Viro629a21e2006-10-13 22:51:24 -04001675 struct gfs2_inum_host *inum, unsigned int new_type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001676{
Steven Whitehousec7526662006-03-20 12:30:04 -05001677 struct buffer_head *bh;
1678 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001679 int error;
1680
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001681 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001682 if (!dent) {
1683 gfs2_consist_inode(dip);
1684 return -EIO;
1685 }
1686 if (IS_ERR(dent))
1687 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001688
Steven Whitehousec7526662006-03-20 12:30:04 -05001689 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1690 gfs2_inum_out(inum, (char *)&dent->de_inum);
1691 dent->de_type = cpu_to_be16(new_type);
1692
1693 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1694 brelse(bh);
1695 error = gfs2_meta_inode_buffer(dip, &bh);
1696 if (error)
1697 return error;
1698 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1699 }
1700
Eric Sandeenddfe0622007-01-18 16:41:23 -06001701 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME_SEC;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001702 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001703 brelse(bh);
1704 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001705}
1706
1707/**
1708 * foreach_leaf - call a function for each leaf in a directory
1709 * @dip: the directory
1710 * @lc: the function to call for each each
1711 * @data: private data to pass to it
1712 *
1713 * Returns: errno
1714 */
1715
1716static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1717{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001718 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001719 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001720 struct gfs2_leaf *leaf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001721 u32 hsize, len;
1722 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1723 u32 index = 0;
Al Virob44b84d2006-10-14 10:46:30 -04001724 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -04001725 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001726 int error = 0;
1727
1728 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001729 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001730 gfs2_consist_inode(dip);
1731 return -EIO;
1732 }
1733
1734 lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1735 if (!lp)
1736 return -ENOMEM;
1737
1738 while (index < hsize) {
1739 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1740 ht_offset = index - lp_offset;
1741
1742 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001743 error = gfs2_dir_read_data(dip, (char *)lp,
Al Virob44b84d2006-10-14 10:46:30 -04001744 ht_offset * sizeof(__be64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001745 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001746 if (error != sdp->sd_hash_bsize) {
1747 if (error >= 0)
1748 error = -EIO;
1749 goto out;
1750 }
1751 ht_offset_cur = ht_offset;
1752 }
1753
1754 leaf_no = be64_to_cpu(lp[lp_offset]);
1755 if (leaf_no) {
1756 error = get_leaf(dip, leaf_no, &bh);
1757 if (error)
1758 goto out;
Steven Whitehousec7526662006-03-20 12:30:04 -05001759 leaf = (struct gfs2_leaf *)bh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -05001760 len = 1 << (dip->i_di.di_depth - be16_to_cpu(leaf->lf_depth));
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001761 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001762
1763 error = lc(dip, index, len, leaf_no, data);
1764 if (error)
1765 goto out;
1766
1767 index = (index & ~(len - 1)) + len;
1768 } else
1769 index++;
1770 }
1771
1772 if (index != hsize) {
1773 gfs2_consist_inode(dip);
1774 error = -EIO;
1775 }
1776
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001777out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001778 kfree(lp);
1779
1780 return error;
1781}
1782
1783/**
1784 * leaf_dealloc - Deallocate a directory leaf
1785 * @dip: the directory
1786 * @index: the hash table offset in the directory
1787 * @len: the number of pointers to this leaf
1788 * @leaf_no: the leaf number
1789 * @data: not used
1790 *
1791 * Returns: errno
1792 */
1793
Steven Whitehousecd915492006-09-04 12:49:07 -04001794static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
1795 u64 leaf_no, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001796{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001797 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001798 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001799 struct gfs2_rgrp_list rlist;
1800 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001801 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001802 unsigned int rg_blocks = 0, l_blocks = 0;
1803 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001804 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001805 int error;
1806
1807 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1808
1809 ht = kzalloc(size, GFP_KERNEL);
1810 if (!ht)
1811 return -ENOMEM;
1812
1813 gfs2_alloc_get(dip);
1814
1815 error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1816 if (error)
1817 goto out;
1818
1819 error = gfs2_rindex_hold(sdp, &dip->i_alloc.al_ri_gh);
1820 if (error)
1821 goto out_qs;
1822
1823 /* Count the number of leaves */
1824
Steven Whitehousec7526662006-03-20 12:30:04 -05001825 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001826 error = get_leaf(dip, blk, &bh);
1827 if (error)
1828 goto out_rlist;
Steven Whitehousec7526662006-03-20 12:30:04 -05001829 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1830 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001831 brelse(bh);
1832
1833 gfs2_rlist_add(sdp, &rlist, blk);
1834 l_blocks++;
1835 }
1836
1837 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, 0);
1838
1839 for (x = 0; x < rlist.rl_rgrps; x++) {
1840 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001841 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001842 rg_blocks += rgd->rd_ri.ri_length;
1843 }
1844
1845 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1846 if (error)
1847 goto out_rlist;
1848
1849 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001850 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001851 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1852 if (error)
1853 goto out_rg_gunlock;
1854
Steven Whitehousec7526662006-03-20 12:30:04 -05001855 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001856 error = get_leaf(dip, blk, &bh);
1857 if (error)
1858 goto out_end_trans;
Steven Whitehousec7526662006-03-20 12:30:04 -05001859 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1860 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001861 brelse(bh);
1862
1863 gfs2_free_meta(dip, blk, 1);
1864
1865 if (!dip->i_di.di_blocks)
1866 gfs2_consist_inode(dip);
1867 dip->i_di.di_blocks--;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -05001868 gfs2_set_inode_blocks(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001869 }
1870
Steven Whitehousecd915492006-09-04 12:49:07 -04001871 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001872 if (error != size) {
1873 if (error >= 0)
1874 error = -EIO;
1875 goto out_end_trans;
1876 }
1877
1878 error = gfs2_meta_inode_buffer(dip, &dibh);
1879 if (error)
1880 goto out_end_trans;
1881
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001882 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001883 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001884 brelse(dibh);
1885
Steven Whitehousea91ea692006-09-04 12:04:26 -04001886out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001887 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001888out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001889 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001890out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001891 gfs2_rlist_free(&rlist);
1892 gfs2_glock_dq_uninit(&dip->i_alloc.al_ri_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001893out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001894 gfs2_quota_unhold(dip);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001895out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001896 gfs2_alloc_put(dip);
1897 kfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001898 return error;
1899}
1900
1901/**
1902 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1903 * @dip: the directory
1904 *
1905 * Dealloc all on-disk directory leaves to FREEMETA state
1906 * Change on-disk inode type to "regular file"
1907 *
1908 * Returns: errno
1909 */
1910
1911int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1912{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001913 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001914 struct buffer_head *bh;
1915 int error;
1916
1917 /* Dealloc on-disk leaves to FREEMETA state */
1918 error = foreach_leaf(dip, leaf_dealloc, NULL);
1919 if (error)
1920 return error;
1921
1922 /* Make this a regular file in case we crash.
1923 (We don't want to free these blocks a second time.) */
1924
1925 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1926 if (error)
1927 return error;
1928
1929 error = gfs2_meta_inode_buffer(dip, &bh);
1930 if (!error) {
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001931 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001932 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1933 cpu_to_be32(S_IFREG);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001934 brelse(bh);
1935 }
1936
1937 gfs2_trans_end(sdp);
1938
1939 return error;
1940}
1941
1942/**
1943 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
1944 * @ip: the file being written to
1945 * @filname: the filename that's going to be added
David Teiglandb3b94fa2006-01-16 16:50:04 +00001946 *
Steven Whitehousec7526662006-03-20 12:30:04 -05001947 * Returns: 1 if alloc required, 0 if not, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00001948 */
1949
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001950int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001951{
Steven Whitehousec7526662006-03-20 12:30:04 -05001952 struct gfs2_dirent *dent;
1953 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001954
Steven Whitehousec7526662006-03-20 12:30:04 -05001955 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04001956 if (!dent) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001957 return 1;
Steven Whitehouseed386502006-04-07 16:28:07 -04001958 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001959 if (IS_ERR(dent))
1960 return PTR_ERR(dent);
1961 brelse(bh);
1962 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001963}
1964