blob: aef4d0c067488ccb942065aab8b0c292e8947213 [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 *
Steven Whitehouse383f01f2008-11-04 10:05:22 +000039 * dip->i_diskflags & GFS2_DIF_EXHASH is true
Steven Whitehouse61e085a2006-04-24 10:07:13 -040040 *
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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000063
64#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050065#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000066#include "dir.h"
67#include "glock.h"
68#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000069#include "meta_io.h"
70#include "quota.h"
71#include "rgrp.h"
72#include "trans.h"
Steven Whitehousee13940b2006-01-30 13:31:50 +000073#include "bmap.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050074#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000075
76#define IS_LEAF 1 /* Hashed (leaf) directory */
77#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
78
Steven Whitehousecd915492006-09-04 12:49:07 -040079#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
80#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
David Teiglandb3b94fa2006-01-16 16:50:04 +000081
Steven Whitehouse907b9bc2006-09-25 09:26:04 -040082typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len,
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040083 u64 leaf_no, void *data);
84typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
85 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000086
Steven Whitehouse61e085a2006-04-24 10:07:13 -040087
Steven Whitehousecd915492006-09-04 12:49:07 -040088int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040089 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000090{
91 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000092
Steven Whitehouse61e085a2006-04-24 10:07:13 -040093 bh = gfs2_meta_new(ip->i_gl, block);
94 gfs2_trans_add_bh(ip->i_gl, bh, 1);
95 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
96 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +000097 *bhp = bh;
98 return 0;
99}
100
Steven Whitehousecd915492006-09-04 12:49:07 -0400101static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400102 struct buffer_head **bhp)
103{
104 struct buffer_head *bh;
105 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000106
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400107 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400108 if (error)
109 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400110 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400111 brelse(bh);
112 return -EIO;
113 }
114 *bhp = bh;
115 return 0;
116}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000117
118static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
119 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000120{
121 struct buffer_head *dibh;
122 int error;
123
124 error = gfs2_meta_inode_buffer(ip, &dibh);
125 if (error)
126 return error;
127
128 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500129 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousec9e98882008-11-04 09:47:33 +0000130 if (ip->i_disksize < offset + size)
131 ip->i_disksize = offset + size;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100132 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500133 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000134
135 brelse(dibh);
136
137 return size;
138}
139
140
141
142/**
143 * gfs2_dir_write_data - Write directory information to the inode
144 * @ip: The GFS2 inode
145 * @buf: The buffer containing information to be written
146 * @offset: The file offset to start writing at
147 * @size: The amount of data to write
148 *
149 * Returns: The number of bytes correctly written or error code
150 */
151static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400152 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000153{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400154 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000155 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400156 u64 lblock, dblock;
157 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000158 unsigned int o;
159 int copied = 0;
160 int error = 0;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000161 int new = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000162
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;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000186
187 amount = size - copied;
188 if (amount > sdp->sd_sb.sb_bsize - o)
189 amount = sdp->sd_sb.sb_bsize - o;
190
191 if (!extlen) {
192 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400193 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400194 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000195 if (error)
196 goto fail;
197 error = -EIO;
198 if (gfs2_assert_withdraw(sdp, dblock))
199 goto fail;
200 }
201
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400202 if (amount == sdp->sd_jbsize || new)
203 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
204 else
205 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
206
Steven Whitehousee13940b2006-01-30 13:31:50 +0000207 if (error)
208 goto fail;
209
210 gfs2_trans_add_bh(ip->i_gl, bh, 1);
211 memcpy(bh->b_data + o, buf, amount);
212 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000213
Steven Whitehouse899bb262006-08-01 15:28:57 -0400214 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000215 copied += amount;
216 lblock++;
217 dblock++;
218 extlen--;
219
220 o = sizeof(struct gfs2_meta_header);
221 }
222
223out:
224 error = gfs2_meta_inode_buffer(ip, &dibh);
225 if (error)
226 return error;
227
Steven Whitehousec9e98882008-11-04 09:47:33 +0000228 if (ip->i_disksize < offset + copied)
229 ip->i_disksize = offset + copied;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100230 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000231
232 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500233 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000234 brelse(dibh);
235
236 return copied;
237fail:
238 if (copied)
239 goto out;
240 return error;
241}
242
243static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400244 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000245{
246 struct buffer_head *dibh;
247 int error;
248
249 error = gfs2_meta_inode_buffer(ip, &dibh);
250 if (!error) {
251 offset += sizeof(struct gfs2_dinode);
252 memcpy(buf, dibh->b_data + offset, size);
253 brelse(dibh);
254 }
255
256 return (error) ? error : size;
257}
258
259
260/**
261 * gfs2_dir_read_data - Read a data from a directory inode
262 * @ip: The GFS2 Inode
263 * @buf: The buffer to place result into
264 * @offset: File offset to begin jdata_readng from
265 * @size: Amount of data to transfer
266 *
267 * Returns: The amount of data actually copied or the error
268 */
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400269static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, u64 offset,
270 unsigned int size, unsigned ra)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000271{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400272 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400273 u64 lblock, dblock;
274 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000275 unsigned int o;
276 int copied = 0;
277 int error = 0;
278
Steven Whitehousec9e98882008-11-04 09:47:33 +0000279 if (offset >= ip->i_disksize)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000280 return 0;
281
Steven Whitehousec9e98882008-11-04 09:47:33 +0000282 if (offset + size > ip->i_disksize)
283 size = ip->i_disksize - offset;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000284
285 if (!size)
286 return 0;
287
288 if (gfs2_is_stuffed(ip))
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400289 return gfs2_dir_read_stuffed(ip, buf, offset, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000290
291 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
292 return -EINVAL;
293
294 lblock = offset;
295 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
296
297 while (copied < size) {
298 unsigned int amount;
299 struct buffer_head *bh;
300 int new;
301
302 amount = size - copied;
303 if (amount > sdp->sd_sb.sb_bsize - o)
304 amount = sdp->sd_sb.sb_bsize - o;
305
306 if (!extlen) {
307 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400308 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400309 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400310 if (error || !dblock)
311 goto fail;
312 BUG_ON(extlen < 1);
313 if (!ra)
314 extlen = 1;
315 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200316 } else {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400317 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000318 if (error)
319 goto fail;
320 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400321 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
322 if (error) {
323 brelse(bh);
324 goto fail;
325 }
326 dblock++;
327 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000328 memcpy(buf, bh->b_data + o, amount);
329 brelse(bh);
Steven Whitehouse899bb262006-08-01 15:28:57 -0400330 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000331 copied += amount;
332 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000333 o = sizeof(struct gfs2_meta_header);
334 }
335
336 return copied;
337fail:
338 return (copied) ? copied : error;
339}
340
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500341static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
342{
343 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
344}
345
Steven Whitehousec7526662006-03-20 12:30:04 -0500346static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
347 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000348{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500349 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500350 be32_to_cpu(dent->de_hash) == name->hash &&
351 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400352 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500353 return ret;
354 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000355}
356
Steven Whitehousec7526662006-03-20 12:30:04 -0500357static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500358 const struct qstr *name,
359 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500360{
361 return __gfs2_dirent_find(dent, name, 1);
362}
363
364static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500365 const struct qstr *name,
366 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500367{
368 return __gfs2_dirent_find(dent, name, 2);
369}
370
371/*
372 * name->name holds ptr to start of block.
373 * name->len holds size of block.
374 */
375static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500376 const struct qstr *name,
377 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500378{
379 const char *start = name->name;
380 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
381 if (name->len == (end - start))
382 return 1;
383 return 0;
384}
385
386static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500387 const struct qstr *name,
388 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500389{
390 unsigned required = GFS2_DIRENT_SIZE(name->len);
391 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
392 unsigned totlen = be16_to_cpu(dent->de_rec_len);
393
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500394 if (gfs2_dirent_sentinel(dent))
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500395 actual = GFS2_DIRENT_SIZE(0);
Jan Engelhardtc53921242006-09-05 14:30:40 +0200396 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500397 return 1;
398 return 0;
399}
400
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500401struct dirent_gather {
402 const struct gfs2_dirent **pdent;
403 unsigned offset;
404};
405
406static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
407 const struct qstr *name,
408 void *opaque)
409{
410 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500411 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500412 g->pdent[g->offset++] = dent;
413 }
414 return 0;
415}
416
Steven Whitehousec7526662006-03-20 12:30:04 -0500417/*
418 * Other possible things to check:
419 * - Inode located within filesystem size (and on valid block)
420 * - Valid directory entry type
421 * Not sure how heavy-weight we want to make this... could also check
422 * hash is correct for example, but that would take a lot of extra time.
423 * For now the most important thing is to check that the various sizes
424 * are correct.
425 */
426static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
427 unsigned int size, unsigned int len, int first)
428{
429 const char *msg = "gfs2_dirent too small";
430 if (unlikely(size < sizeof(struct gfs2_dirent)))
431 goto error;
432 msg = "gfs2_dirent misaligned";
433 if (unlikely(offset & 0x7))
434 goto error;
435 msg = "gfs2_dirent points beyond end of block";
436 if (unlikely(offset + size > len))
437 goto error;
438 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500439 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500440 goto error;
441 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500442 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500443 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
444 size))
445 goto error;
446 return 0;
447error:
448 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
449 first ? "first in block" : "not first in block");
450 return -EIO;
451}
452
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500453static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500454{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500455 const struct gfs2_meta_header *h = buf;
456 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500457
458 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500459
Steven Whitehousee3167de2006-03-30 15:46:23 -0500460 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500461 case GFS2_METATYPE_LF:
462 offset = sizeof(struct gfs2_leaf);
463 break;
464 case GFS2_METATYPE_DI:
465 offset = sizeof(struct gfs2_dinode);
466 break;
467 default:
468 goto wrong_type;
469 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500470 return offset;
471wrong_type:
472 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500473 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500474 return -1;
475}
Steven Whitehousec7526662006-03-20 12:30:04 -0500476
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400477static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500478 unsigned int len, gfs2_dscan_t scan,
479 const struct qstr *name,
480 void *opaque)
481{
482 struct gfs2_dirent *dent, *prev;
483 unsigned offset;
484 unsigned size;
485 int ret = 0;
486
487 ret = gfs2_dirent_offset(buf);
488 if (ret < 0)
489 goto consist_inode;
490
491 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500492 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400493 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500494 size = be16_to_cpu(dent->de_rec_len);
495 if (gfs2_check_dirent(dent, offset, size, len, 1))
496 goto consist_inode;
497 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500498 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500499 if (ret)
500 break;
501 offset += size;
502 if (offset == len)
503 break;
504 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400505 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500506 size = be16_to_cpu(dent->de_rec_len);
507 if (gfs2_check_dirent(dent, offset, size, len, 0))
508 goto consist_inode;
509 } while(1);
510
511 switch(ret) {
512 case 0:
513 return NULL;
514 case 1:
515 return dent;
516 case 2:
517 return prev ? prev : dent;
518 default:
519 BUG_ON(ret > 0);
520 return ERR_PTR(ret);
521 }
522
Steven Whitehousec7526662006-03-20 12:30:04 -0500523consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400524 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500525 return ERR_PTR(-EIO);
526}
527
528
David Teiglandb3b94fa2006-01-16 16:50:04 +0000529/**
530 * dirent_first - Return the first dirent
531 * @dip: the directory
532 * @bh: The buffer
533 * @dent: Pointer to list of dirents
534 *
535 * return first dirent whether bh points to leaf or stuffed dinode
536 *
537 * Returns: IS_LEAF, IS_DINODE, or -errno
538 */
539
540static int dirent_first(struct gfs2_inode *dip, struct buffer_head *bh,
541 struct gfs2_dirent **dent)
542{
543 struct gfs2_meta_header *h = (struct gfs2_meta_header *)bh->b_data;
544
Steven Whitehousee3167de2006-03-30 15:46:23 -0500545 if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400546 if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547 return -EIO;
548 *dent = (struct gfs2_dirent *)(bh->b_data +
549 sizeof(struct gfs2_leaf));
550 return IS_LEAF;
551 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400552 if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000553 return -EIO;
554 *dent = (struct gfs2_dirent *)(bh->b_data +
555 sizeof(struct gfs2_dinode));
556 return IS_DINODE;
557 }
558}
559
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400560static int dirent_check_reclen(struct gfs2_inode *dip,
561 const struct gfs2_dirent *d, const void *end_p)
562{
563 const void *ptr = d;
564 u16 rec_len = be16_to_cpu(d->de_rec_len);
565
566 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
567 goto broken;
568 ptr += rec_len;
569 if (ptr < end_p)
570 return rec_len;
571 if (ptr == end_p)
572 return -ENOENT;
573broken:
574 gfs2_consist_inode(dip);
575 return -EIO;
576}
577
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578/**
579 * dirent_next - Next dirent
580 * @dip: the directory
581 * @bh: The buffer
582 * @dent: Pointer to list of dirents
583 *
584 * Returns: 0 on success, error code otherwise
585 */
586
587static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
588 struct gfs2_dirent **dent)
589{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400590 struct gfs2_dirent *cur = *dent, *tmp;
591 char *bh_end = bh->b_data + bh->b_size;
592 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000593
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400594 ret = dirent_check_reclen(dip, cur, bh_end);
595 if (ret < 0)
596 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400598 tmp = (void *)cur + ret;
599 ret = dirent_check_reclen(dip, tmp, bh_end);
600 if (ret == -EIO)
601 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000602
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500604 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 gfs2_consist_inode(dip);
606 return -EIO;
607 }
608
609 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000610 return 0;
611}
612
613/**
614 * dirent_del - Delete a dirent
615 * @dip: The GFS2 inode
616 * @bh: The buffer
617 * @prev: The previous dirent
618 * @cur: The current dirent
619 *
620 */
621
622static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
623 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
624{
Steven Whitehousecd915492006-09-04 12:49:07 -0400625 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500627 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628 gfs2_consist_inode(dip);
629 return;
630 }
631
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000632 gfs2_trans_add_bh(dip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633
634 /* If there is no prev entry, this is the first entry in the block.
635 The de_rec_len is already as big as it needs to be. Just zero
636 out the inode number and return. */
637
638 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500639 cur->de_inum.no_addr = 0;
640 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000641 return;
642 }
643
644 /* Combine this dentry with the previous one. */
645
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000646 prev_rec_len = be16_to_cpu(prev->de_rec_len);
647 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648
649 if ((char *)prev + prev_rec_len != (char *)cur)
650 gfs2_consist_inode(dip);
651 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
652 gfs2_consist_inode(dip);
653
654 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000655 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656}
657
Steven Whitehousec7526662006-03-20 12:30:04 -0500658/*
659 * Takes a dent from which to grab space as an argument. Returns the
660 * newly created dent.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661 */
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400662static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
663 struct gfs2_dirent *dent,
664 const struct qstr *name,
665 struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400667 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500668 struct gfs2_dirent *ndent;
669 unsigned offset = 0, totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500671 if (!gfs2_dirent_sentinel(dent))
Steven Whitehousec7526662006-03-20 12:30:04 -0500672 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
673 totlen = be16_to_cpu(dent->de_rec_len);
674 BUG_ON(offset + name->len > totlen);
675 gfs2_trans_add_bh(ip->i_gl, bh, 1);
676 ndent = (struct gfs2_dirent *)((char *)dent + offset);
677 dent->de_rec_len = cpu_to_be16(offset);
678 gfs2_qstr2dirent(name, totlen - offset, ndent);
679 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000680}
681
Steven Whitehousec7526662006-03-20 12:30:04 -0500682static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
683 struct buffer_head *bh,
684 const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000685{
686 struct gfs2_dirent *dent;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400687 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500688 gfs2_dirent_find_space, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500689 if (!dent || IS_ERR(dent))
690 return dent;
691 return gfs2_init_dirent(inode, dent, name, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000692}
693
Steven Whitehousecd915492006-09-04 12:49:07 -0400694static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695 struct buffer_head **bhp)
696{
697 int error;
698
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400699 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400700 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
701 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400703 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000704
705 return error;
706}
707
708/**
709 * get_leaf_nr - Get a leaf number associated with the index
710 * @dip: The GFS2 inode
711 * @index:
712 * @leaf_out:
713 *
714 * Returns: 0 on success, error code otherwise
715 */
716
Steven Whitehousecd915492006-09-04 12:49:07 -0400717static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
718 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719{
Al Virob44b84d2006-10-14 10:46:30 -0400720 __be64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000721 int error;
722
Steven Whitehousee13940b2006-01-30 13:31:50 +0000723 error = gfs2_dir_read_data(dip, (char *)&leaf_no,
Al Virob44b84d2006-10-14 10:46:30 -0400724 index * sizeof(__be64),
725 sizeof(__be64), 0);
Steven Whitehousecd915492006-09-04 12:49:07 -0400726 if (error != sizeof(u64))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 return (error < 0) ? error : -EIO;
728
729 *leaf_out = be64_to_cpu(leaf_no);
730
731 return 0;
732}
733
Steven Whitehousecd915492006-09-04 12:49:07 -0400734static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000735 struct buffer_head **bh_out)
736{
Steven Whitehousecd915492006-09-04 12:49:07 -0400737 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738 int error;
739
740 error = get_leaf_nr(dip, index, &leaf_no);
741 if (!error)
742 error = get_leaf(dip, leaf_no, bh_out);
743
744 return error;
745}
746
Steven Whitehousec7526662006-03-20 12:30:04 -0500747static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
748 const struct qstr *name,
749 gfs2_dscan_t scan,
750 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751{
Steven Whitehousec7526662006-03-20 12:30:04 -0500752 struct buffer_head *bh;
753 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400754 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 int error;
756
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000757 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500758 struct gfs2_leaf *leaf;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000759 unsigned hsize = 1 << ip->i_depth;
Steven Whitehousec7526662006-03-20 12:30:04 -0500760 unsigned index;
761 u64 ln;
Steven Whitehousec9e98882008-11-04 09:47:33 +0000762 if (hsize * sizeof(u64) != ip->i_disksize) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500763 gfs2_consist_inode(ip);
764 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400766
Steven Whitehouse9a004502008-02-01 09:23:44 +0000767 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500768 error = get_first_leaf(ip, index, &bh);
769 if (error)
770 return ERR_PTR(error);
771 do {
772 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500773 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500774 if (dent)
775 goto got_dent;
776 leaf = (struct gfs2_leaf *)bh->b_data;
777 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400778 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500779 if (!ln)
780 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400781
Steven Whitehousec7526662006-03-20 12:30:04 -0500782 error = get_leaf(ip, ln, &bh);
783 } while(!error);
784
785 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000787
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400788
Steven Whitehousec7526662006-03-20 12:30:04 -0500789 error = gfs2_meta_inode_buffer(ip, &bh);
790 if (error)
791 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500792 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500793got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400794 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400795 brelse(bh);
796 bh = NULL;
797 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500798 *pbh = bh;
799 return dent;
800}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801
Steven Whitehousec7526662006-03-20 12:30:04 -0500802static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
803{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400804 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000805 unsigned int n = 1;
806 u64 bn = gfs2_alloc_block(ip, &n);
Steven Whitehousec7526662006-03-20 12:30:04 -0500807 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 Whitehouse5731be52008-02-01 13:16:55 +0000813 gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, 1);
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
Steven Whitehousead6203f2008-11-03 13:59:19 +0000860 gfs2_assert(sdp, dip->i_entries < (1 << 16));
861 leaf->lf_entries = cpu_to_be16(dip->i_entries);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000862
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
Steven Whitehousec9e98882008-11-04 09:47:33 +0000907 dip->i_disksize = sdp->sd_sb.sb_bsize / 2;
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000908 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000909 dip->i_diskflags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910
911 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000912 dip->i_depth = y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000913
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500914 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915
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;
Al Virob44b84d2006-10-14 10:46:30 -0400937 u64 bn, leaf_no;
938 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -0400939 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940 int x, moved = 0;
941 int error;
942
Steven Whitehouse9a004502008-02-01 09:23:44 +0000943 index = name->hash >> (32 - dip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500944 error = get_leaf_nr(dip, index, &leaf_no);
945 if (error)
946 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947
948 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 error = get_leaf(dip, leaf_no, &obh);
950 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500951 return error;
952
953 oleaf = (struct gfs2_leaf *)obh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000954 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500955 brelse(obh);
956 return 1; /* can't split */
957 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000959 gfs2_trans_add_bh(dip->i_gl, obh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960
Steven Whitehousec7526662006-03-20 12:30:04 -0500961 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
962 if (!nleaf) {
963 brelse(obh);
964 return -ENOSPC;
965 }
966 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967
Steven Whitehousec7526662006-03-20 12:30:04 -0500968 /* Compute the start and len of leaf pointers in the hash table. */
Steven Whitehouse9a004502008-02-01 09:23:44 +0000969 len = 1 << (dip->i_depth - be16_to_cpu(oleaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 half_len = len >> 1;
971 if (!half_len) {
Steven Whitehouse9a004502008-02-01 09:23:44 +0000972 printk(KERN_WARNING "i_depth %u lf_depth %u index %u\n", dip->i_depth, be16_to_cpu(oleaf->lf_depth), index);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000973 gfs2_consist_inode(dip);
974 error = -EIO;
975 goto fail_brelse;
976 }
977
978 start = (index & ~(len - 1));
979
980 /* Change the pointers.
981 Don't bother distinguishing stuffed from non-stuffed.
982 This code is complicated enough already. */
Al Virob44b84d2006-10-14 10:46:30 -0400983 lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985 for (x = 0; x < half_len; x++)
986 lp[x] = cpu_to_be64(bn);
987
Steven Whitehousecd915492006-09-04 12:49:07 -0400988 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
989 half_len * sizeof(u64));
990 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000991 if (error >= 0)
992 error = -EIO;
993 goto fail_lpfree;
994 }
995
996 kfree(lp);
997
998 /* Compute the divider */
Steven Whitehouse9a004502008-02-01 09:23:44 +0000999 divider = (start + half_len) << (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001000
1001 /* Copy the entries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001002 dirent_first(dip, obh, &dent);
1003
1004 do {
1005 next = dent;
1006 if (dirent_next(dip, obh, &next))
1007 next = NULL;
1008
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -05001009 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001011 struct qstr str;
1012 str.name = (char*)(dent+1);
1013 str.len = be16_to_cpu(dent->de_name_len);
1014 str.hash = be32_to_cpu(dent->de_hash);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001015 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001016 if (IS_ERR(new)) {
1017 error = PTR_ERR(new);
1018 break;
1019 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001020
1021 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001022 new->de_type = dent->de_type; /* No endian worries */
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001023 be16_add_cpu(&nleaf->lf_entries, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001024
1025 dirent_del(dip, obh, prev, dent);
1026
1027 if (!oleaf->lf_entries)
1028 gfs2_consist_inode(dip);
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001029 be16_add_cpu(&oleaf->lf_entries, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030
1031 if (!prev)
1032 prev = dent;
1033
1034 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001035 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001037 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001038 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001039 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001040
Steven Whitehousec7526662006-03-20 12:30:04 -05001041 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042
1043 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001044 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
Steven Whitehouse382e6e22007-08-16 17:08:20 +01001045 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001046 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001047 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 brelse(dibh);
1049 }
1050
1051 brelse(obh);
1052 brelse(nbh);
1053
1054 return error;
1055
Steven Whitehousee90deff2006-03-29 19:02:15 -05001056fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001057 kfree(lp);
1058
Steven Whitehousee90deff2006-03-29 19:02:15 -05001059fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001060 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001061 brelse(nbh);
1062 return error;
1063}
1064
1065/**
1066 * dir_double_exhash - Double size of ExHash table
1067 * @dip: The GFS2 dinode
1068 *
1069 * Returns: 0 on success, error code on failure
1070 */
1071
1072static int dir_double_exhash(struct gfs2_inode *dip)
1073{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001074 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001075 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001076 u32 hsize;
1077 u64 *buf;
1078 u64 *from, *to;
1079 u64 block;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080 int x;
1081 int error = 0;
1082
Steven Whitehouse9a004502008-02-01 09:23:44 +00001083 hsize = 1 << dip->i_depth;
Steven Whitehousec9e98882008-11-04 09:47:33 +00001084 if (hsize * sizeof(u64) != dip->i_disksize) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085 gfs2_consist_inode(dip);
1086 return -EIO;
1087 }
1088
1089 /* Allocate both the "from" and "to" buffers in one big chunk */
1090
Josef Bacik16c5f062008-04-09 09:33:41 -04001091 buf = kcalloc(3, sdp->sd_hash_bsize, GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092
Steven Whitehousec9e98882008-11-04 09:47:33 +00001093 for (block = dip->i_disksize >> sdp->sd_hash_bsize_shift; block--;) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001094 error = gfs2_dir_read_data(dip, (char *)buf,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001095 block * sdp->sd_hash_bsize,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001096 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001097 if (error != sdp->sd_hash_bsize) {
1098 if (error >= 0)
1099 error = -EIO;
1100 goto fail;
1101 }
1102
1103 from = buf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001104 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105
1106 for (x = sdp->sd_hash_ptrs; x--; from++) {
1107 *to++ = *from; /* No endianess worries */
1108 *to++ = *from;
1109 }
1110
Steven Whitehousee13940b2006-01-30 13:31:50 +00001111 error = gfs2_dir_write_data(dip,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 (char *)buf + sdp->sd_hash_bsize,
1113 block * sdp->sd_sb.sb_bsize,
1114 sdp->sd_sb.sb_bsize);
1115 if (error != sdp->sd_sb.sb_bsize) {
1116 if (error >= 0)
1117 error = -EIO;
1118 goto fail;
1119 }
1120 }
1121
1122 kfree(buf);
1123
1124 error = gfs2_meta_inode_buffer(dip, &dibh);
1125 if (!gfs2_assert_withdraw(sdp, !error)) {
Steven Whitehouse9a004502008-02-01 09:23:44 +00001126 dip->i_depth++;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001127 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001128 brelse(dibh);
1129 }
1130
1131 return error;
1132
Steven Whitehousea91ea692006-09-04 12:04:26 -04001133fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001134 kfree(buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001135 return error;
1136}
1137
1138/**
1139 * compare_dents - compare directory entries by hash value
1140 * @a: first dent
1141 * @b: second dent
1142 *
1143 * When comparing the hash entries of @a to @b:
1144 * gt: returns 1
1145 * lt: returns -1
1146 * eq: returns 0
1147 */
1148
1149static int compare_dents(const void *a, const void *b)
1150{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001151 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001152 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001153 int ret = 0;
1154
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001155 dent_a = *(const struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001156 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001157
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001158 dent_b = *(const struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001159 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001160
1161 if (hash_a > hash_b)
1162 ret = 1;
1163 else if (hash_a < hash_b)
1164 ret = -1;
1165 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001166 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1167 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001168
1169 if (len_a > len_b)
1170 ret = 1;
1171 else if (len_a < len_b)
1172 ret = -1;
1173 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001174 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001175 }
1176
1177 return ret;
1178}
1179
1180/**
1181 * do_filldir_main - read out directory entries
1182 * @dip: The GFS2 inode
1183 * @offset: The offset in the file to read from
1184 * @opaque: opaque data to pass to filldir
1185 * @filldir: The function to pass entries to
1186 * @darr: an array of struct gfs2_dirent pointers to read
1187 * @entries: the number of entries in darr
1188 * @copied: pointer to int that's non-zero if a entry has been copied out
1189 *
1190 * Jump through some hoops to make sure that if there are hash collsions,
1191 * they are read out at the beginning of a buffer. We want to minimize
1192 * the possibility that they will fall into different readdir buffers or
1193 * that someone will want to seek to that location.
1194 *
1195 * Returns: errno, >0 on exception from filldir
1196 */
1197
Steven Whitehousecd915492006-09-04 12:49:07 -04001198static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001199 void *opaque, filldir_t filldir,
Steven Whitehousecd915492006-09-04 12:49:07 -04001200 const struct gfs2_dirent **darr, u32 entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001201 int *copied)
1202{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001203 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001204 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001205 unsigned int x, y;
1206 int run = 0;
1207 int error = 0;
1208
1209 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1210
1211 dent_next = darr[0];
1212 off_next = be32_to_cpu(dent_next->de_hash);
1213 off_next = gfs2_disk_hash2offset(off_next);
1214
1215 for (x = 0, y = 1; x < entries; x++, y++) {
1216 dent = dent_next;
1217 off = off_next;
1218
1219 if (y < entries) {
1220 dent_next = darr[y];
1221 off_next = be32_to_cpu(dent_next->de_hash);
1222 off_next = gfs2_disk_hash2offset(off_next);
1223
1224 if (off < *offset)
1225 continue;
1226 *offset = off;
1227
1228 if (off_next == off) {
1229 if (*copied && !run)
1230 return 1;
1231 run = 1;
1232 } else
1233 run = 0;
1234 } else {
1235 if (off < *offset)
1236 continue;
1237 *offset = off;
1238 }
1239
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001240 error = filldir(opaque, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001241 be16_to_cpu(dent->de_name_len),
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001242 off, be64_to_cpu(dent->de_inum.no_addr),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001243 be16_to_cpu(dent->de_type));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001244 if (error)
1245 return 1;
1246
1247 *copied = 1;
1248 }
1249
1250 /* Increment the *offset by one, so the next time we come into the
1251 do_filldir fxn, we get the next entry instead of the last one in the
1252 current leaf */
1253
1254 (*offset)++;
1255
1256 return 0;
1257}
1258
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001259static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001260 filldir_t filldir, int *copied, unsigned *depth,
1261 u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001262{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001263 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001264 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001265 struct buffer_head *bh;
1266 struct gfs2_leaf *lf;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001267 unsigned entries = 0, entries2 = 0;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001268 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 Whitehousebdd19a22007-04-18 09:38:42 +01001293 /*
1294 * The extra 99 entries are not normally used, but are a buffer
1295 * zone in case the number of entries in the leaf is corrupt.
1296 * 99 is the maximum number of entries that can fit in a single
1297 * leaf block.
1298 */
1299 larr = vmalloc((leaves + entries + 99) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001300 if (!larr)
1301 goto out;
1302 darr = (const struct gfs2_dirent **)(larr + leaves);
1303 g.pdent = darr;
1304 g.offset = 0;
1305 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001306
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001307 do {
1308 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001309 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001310 goto out_kfree;
1311 lf = (struct gfs2_leaf *)bh->b_data;
1312 lfn = be64_to_cpu(lf->lf_next);
1313 if (lf->lf_entries) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001314 entries2 += be16_to_cpu(lf->lf_entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001315 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1316 gfs2_dirent_gather, NULL, &g);
1317 error = PTR_ERR(dent);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001318 if (IS_ERR(dent))
1319 goto out_kfree;
1320 if (entries2 != g.offset) {
akpm@linux-foundation.orgf391a4e2007-04-25 21:08:02 -07001321 fs_warn(sdp, "Number of entries corrupt in dir "
1322 "leaf %llu, entries2 (%u) != "
1323 "g.offset (%u)\n",
1324 (unsigned long long)bh->b_blocknr,
1325 entries2, g.offset);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001326
1327 error = -EIO;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001328 goto out_kfree;
1329 }
1330 error = 0;
1331 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001332 } else {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001333 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001334 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001335 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001336
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001337 BUG_ON(entries2 != entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001338 error = do_filldir_main(ip, offset, opaque, filldir, darr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001339 entries, copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001340out_kfree:
1341 for(i = 0; i < leaf; i++)
1342 brelse(larr[i]);
Steven Whitehousefe1bded2006-04-18 10:09:15 -04001343 vfree(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001344out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001345 return error;
1346}
1347
1348/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001349 * dir_e_read - Reads the entries from a directory into a filldir buffer
1350 * @dip: dinode pointer
1351 * @offset: the hash of the last entry read shifted to the right once
1352 * @opaque: buffer for the filldir function to fill
1353 * @filldir: points to the filldir function to use
1354 *
1355 * Returns: errno
1356 */
1357
Steven Whitehousecd915492006-09-04 12:49:07 -04001358static int dir_e_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001359 filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001360{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001361 struct gfs2_inode *dip = GFS2_I(inode);
1362 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001363 u32 hsize, len = 0;
1364 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1365 u32 hash, index;
Al Virob44b84d2006-10-14 10:46:30 -04001366 __be64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001367 int copied = 0;
1368 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001369 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001370
Steven Whitehouse9a004502008-02-01 09:23:44 +00001371 hsize = 1 << dip->i_depth;
Steven Whitehousec9e98882008-11-04 09:47:33 +00001372 if (hsize * sizeof(u64) != dip->i_disksize) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001373 gfs2_consist_inode(dip);
1374 return -EIO;
1375 }
1376
1377 hash = gfs2_dir_offset2hash(*offset);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001378 index = hash >> (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001379
Josef Bacik16c5f062008-04-09 09:33:41 -04001380 lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001381 if (!lp)
1382 return -ENOMEM;
1383
1384 while (index < hsize) {
1385 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1386 ht_offset = index - lp_offset;
1387
1388 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001389 error = gfs2_dir_read_data(dip, (char *)lp,
Al Virob44b84d2006-10-14 10:46:30 -04001390 ht_offset * sizeof(__be64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001391 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001392 if (error != sdp->sd_hash_bsize) {
1393 if (error >= 0)
1394 error = -EIO;
1395 goto out;
1396 }
1397 ht_offset_cur = ht_offset;
1398 }
1399
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001400 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1401 &copied, &depth,
1402 be64_to_cpu(lp[lp_offset]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001403 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001404 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001405
Steven Whitehouse9a004502008-02-01 09:23:44 +00001406 len = 1 << (dip->i_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001407 index = (index & ~(len - 1)) + len;
1408 }
1409
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001410out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001411 kfree(lp);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001412 if (error > 0)
1413 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001414 return error;
1415}
1416
Steven Whitehousecd915492006-09-04 12:49:07 -04001417int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001418 filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001419{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001420 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001421 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001422 struct dirent_gather g;
1423 const struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001424 struct buffer_head *dibh;
1425 int copied = 0;
1426 int error;
1427
Steven Whitehousead6203f2008-11-03 13:59:19 +00001428 if (!dip->i_entries)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001429 return 0;
1430
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001431 if (dip->i_diskflags & GFS2_DIF_EXHASH)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001432 return dir_e_read(inode, offset, opaque, filldir);
1433
David Teiglandb3b94fa2006-01-16 16:50:04 +00001434 if (!gfs2_is_stuffed(dip)) {
1435 gfs2_consist_inode(dip);
1436 return -EIO;
1437 }
1438
David Teiglandb3b94fa2006-01-16 16:50:04 +00001439 error = gfs2_meta_inode_buffer(dip, &dibh);
1440 if (error)
1441 return error;
1442
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001443 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001444 /* 96 is max number of dirents which can be stuffed into an inode */
Josef Bacik16c5f062008-04-09 09:33:41 -04001445 darr = kmalloc(96 * sizeof(struct gfs2_dirent *), GFP_NOFS);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001446 if (darr) {
1447 g.pdent = darr;
1448 g.offset = 0;
1449 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1450 gfs2_dirent_gather, NULL, &g);
1451 if (IS_ERR(dent)) {
1452 error = PTR_ERR(dent);
1453 goto out;
1454 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001455 if (dip->i_entries != g.offset) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001456 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
Steven Whitehousead6203f2008-11-03 13:59:19 +00001457 "ip->i_entries (%u) != g.offset (%u)\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001458 (unsigned long long)dip->i_no_addr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001459 dip->i_entries,
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001460 g.offset);
1461 error = -EIO;
1462 goto out;
1463 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001464 error = do_filldir_main(dip, offset, opaque, filldir, darr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001465 dip->i_entries, &copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001466out:
1467 kfree(darr);
1468 }
1469
David Teiglandb3b94fa2006-01-16 16:50:04 +00001470 if (error > 0)
1471 error = 0;
1472
1473 brelse(dibh);
1474
1475 return error;
1476}
1477
David Teiglandb3b94fa2006-01-16 16:50:04 +00001478/**
1479 * gfs2_dir_search - Search a directory
1480 * @dip: The GFS2 inode
1481 * @filename:
1482 * @inode:
1483 *
1484 * This routine searches a directory for a file or another directory.
1485 * Assumes a glock is held on dip.
1486 *
1487 * Returns: errno
1488 */
1489
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001490struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001491{
Steven Whitehousec7526662006-03-20 12:30:04 -05001492 struct buffer_head *bh;
1493 struct gfs2_dirent *dent;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001494 struct inode *inode;
1495
1496 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1497 if (dent) {
1498 if (IS_ERR(dent))
David Howellse231c2e2008-02-07 00:15:26 -08001499 return ERR_CAST(dent);
Wendy Chengbb9bcf02007-06-27 17:07:08 -04001500 inode = gfs2_inode_lookup(dir->i_sb,
1501 be16_to_cpu(dent->de_type),
1502 be64_to_cpu(dent->de_inum.no_addr),
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -05001503 be64_to_cpu(dent->de_inum.no_formal_ino), 0);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001504 brelse(bh);
1505 return inode;
1506 }
1507 return ERR_PTR(-ENOENT);
1508}
1509
1510int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1511 const struct gfs2_inode *ip)
1512{
1513 struct buffer_head *bh;
1514 struct gfs2_dirent *dent;
1515 int ret = -ENOENT;
Steven Whitehousec7526662006-03-20 12:30:04 -05001516
1517 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1518 if (dent) {
1519 if (IS_ERR(dent))
1520 return PTR_ERR(dent);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001521 if (ip) {
1522 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1523 goto out;
1524 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1525 ip->i_no_formal_ino)
1526 goto out;
1527 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1528 be16_to_cpu(dent->de_type))) {
1529 gfs2_consist_inode(GFS2_I(dir));
1530 ret = -EIO;
1531 goto out;
1532 }
1533 }
1534 ret = 0;
1535out:
Steven Whitehousec7526662006-03-20 12:30:04 -05001536 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001537 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001538 return ret;
Steven Whitehousec7526662006-03-20 12:30:04 -05001539}
1540
1541static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1542{
1543 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001544 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001545 struct gfs2_leaf *leaf, *oleaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001546 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001547 u32 index;
1548 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001549
Steven Whitehouse9a004502008-02-01 09:23:44 +00001550 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001551 error = get_first_leaf(ip, index, &obh);
1552 if (error)
1553 return error;
1554 do {
1555 oleaf = (struct gfs2_leaf *)obh->b_data;
1556 bn = be64_to_cpu(oleaf->lf_next);
1557 if (!bn)
1558 break;
1559 brelse(obh);
1560 error = get_leaf(ip, bn, &obh);
1561 if (error)
1562 return error;
1563 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001564
Steven Whitehousec7526662006-03-20 12:30:04 -05001565 gfs2_trans_add_bh(ip->i_gl, obh, 1);
1566
1567 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1568 if (!leaf) {
1569 brelse(obh);
1570 return -ENOSPC;
1571 }
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001572 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001573 brelse(bh);
1574 brelse(obh);
1575
1576 error = gfs2_meta_inode_buffer(ip, &bh);
1577 if (error)
1578 return error;
1579 gfs2_trans_add_bh(ip->i_gl, bh, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001580 gfs2_add_inode_blocks(&ip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001581 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001582 brelse(bh);
1583 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001584}
1585
1586/**
1587 * gfs2_dir_add - Add new filename into directory
1588 * @dip: The GFS2 inode
1589 * @filename: The new name
1590 * @inode: The inode number of the entry
1591 * @type: The type of the entry
1592 *
1593 * Returns: 0 on success, error code on failure
1594 */
1595
Steven Whitehousec7526662006-03-20 12:30:04 -05001596int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001597 const struct gfs2_inode *nip, unsigned type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001598{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001599 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001600 struct buffer_head *bh;
1601 struct gfs2_dirent *dent;
1602 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001603 int error;
1604
Steven Whitehousec7526662006-03-20 12:30:04 -05001605 while(1) {
1606 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1607 &bh);
1608 if (dent) {
1609 if (IS_ERR(dent))
1610 return PTR_ERR(dent);
1611 dent = gfs2_init_dirent(inode, dent, name, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001612 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001613 dent->de_type = cpu_to_be16(type);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001614 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001615 leaf = (struct gfs2_leaf *)bh->b_data;
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001616 be16_add_cpu(&leaf->lf_entries, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -05001617 }
1618 brelse(bh);
1619 error = gfs2_meta_inode_buffer(ip, &bh);
1620 if (error)
1621 break;
1622 gfs2_trans_add_bh(ip->i_gl, bh, 1);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001623 ip->i_entries++;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001624 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001625 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001626 brelse(bh);
1627 error = 0;
1628 break;
1629 }
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001630 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001631 error = dir_make_exhash(inode);
1632 if (error)
1633 break;
1634 continue;
1635 }
1636 error = dir_split_leaf(inode, name);
1637 if (error == 0)
1638 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001639 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001640 break;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001641 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001642 error = dir_double_exhash(ip);
1643 if (error)
1644 break;
1645 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001646 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001647 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001648 if (error == 0)
1649 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001650 }
1651 error = dir_new_leaf(inode, name);
1652 if (!error)
1653 continue;
1654 error = -ENOSPC;
1655 break;
1656 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001657 return error;
1658}
1659
Steven Whitehousec7526662006-03-20 12:30:04 -05001660
David Teiglandb3b94fa2006-01-16 16:50:04 +00001661/**
1662 * gfs2_dir_del - Delete a directory entry
1663 * @dip: The GFS2 inode
1664 * @filename: The filename
1665 *
1666 * Returns: 0 on success, error code on failure
1667 */
1668
Steven Whitehousec7526662006-03-20 12:30:04 -05001669int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001670{
Steven Whitehousec7526662006-03-20 12:30:04 -05001671 struct gfs2_dirent *dent, *prev = NULL;
1672 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001673 int error;
1674
Steven Whitehousec7526662006-03-20 12:30:04 -05001675 /* Returns _either_ the entry (if its first in block) or the
1676 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001677 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001678 if (!dent) {
1679 gfs2_consist_inode(dip);
1680 return -EIO;
1681 }
1682 if (IS_ERR(dent)) {
1683 gfs2_consist_inode(dip);
1684 return PTR_ERR(dent);
1685 }
1686 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001687 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001688 prev = dent;
1689 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1690 }
1691
1692 dirent_del(dip, bh, prev, dent);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001693 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001694 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1695 u16 entries = be16_to_cpu(leaf->lf_entries);
1696 if (!entries)
1697 gfs2_consist_inode(dip);
1698 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehousec7526662006-03-20 12:30:04 -05001699 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001700 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001701
1702 error = gfs2_meta_inode_buffer(dip, &bh);
1703 if (error)
1704 return error;
1705
Steven Whitehousead6203f2008-11-03 13:59:19 +00001706 if (!dip->i_entries)
Steven Whitehousec7526662006-03-20 12:30:04 -05001707 gfs2_consist_inode(dip);
1708 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001709 dip->i_entries--;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001710 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001711 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001712 brelse(bh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001713 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001714
1715 return error;
1716}
1717
David Teiglandb3b94fa2006-01-16 16:50:04 +00001718/**
1719 * gfs2_dir_mvino - Change inode number of directory entry
1720 * @dip: The GFS2 inode
1721 * @filename:
1722 * @new_inode:
1723 *
1724 * This routine changes the inode number of a directory entry. It's used
1725 * by rename to change ".." when a directory is moved.
1726 * Assumes a glock is held on dvp.
1727 *
1728 * Returns: errno
1729 */
1730
Steven Whitehousec7526662006-03-20 12:30:04 -05001731int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001732 const struct gfs2_inode *nip, unsigned int new_type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001733{
Steven Whitehousec7526662006-03-20 12:30:04 -05001734 struct buffer_head *bh;
1735 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001736 int error;
1737
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001738 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001739 if (!dent) {
1740 gfs2_consist_inode(dip);
1741 return -EIO;
1742 }
1743 if (IS_ERR(dent))
1744 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001745
Steven Whitehousec7526662006-03-20 12:30:04 -05001746 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001747 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001748 dent->de_type = cpu_to_be16(new_type);
1749
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001750 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001751 brelse(bh);
1752 error = gfs2_meta_inode_buffer(dip, &bh);
1753 if (error)
1754 return error;
1755 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1756 }
1757
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001758 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001759 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001760 brelse(bh);
1761 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001762}
1763
1764/**
1765 * foreach_leaf - call a function for each leaf in a directory
1766 * @dip: the directory
1767 * @lc: the function to call for each each
1768 * @data: private data to pass to it
1769 *
1770 * Returns: errno
1771 */
1772
1773static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1774{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001775 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001776 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001777 struct gfs2_leaf *leaf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001778 u32 hsize, len;
1779 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1780 u32 index = 0;
Al Virob44b84d2006-10-14 10:46:30 -04001781 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -04001782 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001783 int error = 0;
1784
Steven Whitehouse9a004502008-02-01 09:23:44 +00001785 hsize = 1 << dip->i_depth;
Steven Whitehousec9e98882008-11-04 09:47:33 +00001786 if (hsize * sizeof(u64) != dip->i_disksize) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001787 gfs2_consist_inode(dip);
1788 return -EIO;
1789 }
1790
Josef Bacik16c5f062008-04-09 09:33:41 -04001791 lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001792 if (!lp)
1793 return -ENOMEM;
1794
1795 while (index < hsize) {
1796 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1797 ht_offset = index - lp_offset;
1798
1799 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001800 error = gfs2_dir_read_data(dip, (char *)lp,
Al Virob44b84d2006-10-14 10:46:30 -04001801 ht_offset * sizeof(__be64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001802 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001803 if (error != sdp->sd_hash_bsize) {
1804 if (error >= 0)
1805 error = -EIO;
1806 goto out;
1807 }
1808 ht_offset_cur = ht_offset;
1809 }
1810
1811 leaf_no = be64_to_cpu(lp[lp_offset]);
1812 if (leaf_no) {
1813 error = get_leaf(dip, leaf_no, &bh);
1814 if (error)
1815 goto out;
Steven Whitehousec7526662006-03-20 12:30:04 -05001816 leaf = (struct gfs2_leaf *)bh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001817 len = 1 << (dip->i_depth - be16_to_cpu(leaf->lf_depth));
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001818 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001819
1820 error = lc(dip, index, len, leaf_no, data);
1821 if (error)
1822 goto out;
1823
1824 index = (index & ~(len - 1)) + len;
1825 } else
1826 index++;
1827 }
1828
1829 if (index != hsize) {
1830 gfs2_consist_inode(dip);
1831 error = -EIO;
1832 }
1833
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001834out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001835 kfree(lp);
1836
1837 return error;
1838}
1839
1840/**
1841 * leaf_dealloc - Deallocate a directory leaf
1842 * @dip: the directory
1843 * @index: the hash table offset in the directory
1844 * @len: the number of pointers to this leaf
1845 * @leaf_no: the leaf number
1846 * @data: not used
1847 *
1848 * Returns: errno
1849 */
1850
Steven Whitehousecd915492006-09-04 12:49:07 -04001851static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
1852 u64 leaf_no, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001853{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001854 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001855 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001856 struct gfs2_rgrp_list rlist;
1857 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001858 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001859 unsigned int rg_blocks = 0, l_blocks = 0;
1860 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001861 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001862 int error;
1863
1864 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1865
Josef Bacik16c5f062008-04-09 09:33:41 -04001866 ht = kzalloc(size, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001867 if (!ht)
1868 return -ENOMEM;
1869
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001870 if (!gfs2_alloc_get(dip)) {
1871 error = -ENOMEM;
1872 goto out;
1873 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001874
1875 error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1876 if (error)
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001877 goto out_put;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001878
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001879 error = gfs2_rindex_hold(sdp, &dip->i_alloc->al_ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001880 if (error)
1881 goto out_qs;
1882
1883 /* Count the number of leaves */
1884
Steven Whitehousec7526662006-03-20 12:30:04 -05001885 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001886 error = get_leaf(dip, blk, &bh);
1887 if (error)
1888 goto out_rlist;
Steven Whitehousec7526662006-03-20 12:30:04 -05001889 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1890 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001891 brelse(bh);
1892
1893 gfs2_rlist_add(sdp, &rlist, blk);
1894 l_blocks++;
1895 }
1896
Bob Petersonfe6c9912008-01-28 11:13:02 -06001897 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001898
1899 for (x = 0; x < rlist.rl_rgrps; x++) {
1900 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001901 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001902 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001903 }
1904
1905 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1906 if (error)
1907 goto out_rlist;
1908
1909 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001910 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001911 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1912 if (error)
1913 goto out_rg_gunlock;
1914
Steven Whitehousec7526662006-03-20 12:30:04 -05001915 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001916 error = get_leaf(dip, blk, &bh);
1917 if (error)
1918 goto out_end_trans;
Steven Whitehousec7526662006-03-20 12:30:04 -05001919 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1920 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001921 brelse(bh);
1922
1923 gfs2_free_meta(dip, blk, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001924 gfs2_add_inode_blocks(&dip->i_inode, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001925 }
1926
Steven Whitehousecd915492006-09-04 12:49:07 -04001927 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001928 if (error != size) {
1929 if (error >= 0)
1930 error = -EIO;
1931 goto out_end_trans;
1932 }
1933
1934 error = gfs2_meta_inode_buffer(dip, &dibh);
1935 if (error)
1936 goto out_end_trans;
1937
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001938 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001939 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001940 brelse(dibh);
1941
Steven Whitehousea91ea692006-09-04 12:04:26 -04001942out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001943 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001944out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001945 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001946out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001947 gfs2_rlist_free(&rlist);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001948 gfs2_glock_dq_uninit(&dip->i_alloc->al_ri_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001949out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001950 gfs2_quota_unhold(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001951out_put:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001952 gfs2_alloc_put(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001953out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001954 kfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001955 return error;
1956}
1957
1958/**
1959 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1960 * @dip: the directory
1961 *
1962 * Dealloc all on-disk directory leaves to FREEMETA state
1963 * Change on-disk inode type to "regular file"
1964 *
1965 * Returns: errno
1966 */
1967
1968int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1969{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001970 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001971 struct buffer_head *bh;
1972 int error;
1973
1974 /* Dealloc on-disk leaves to FREEMETA state */
1975 error = foreach_leaf(dip, leaf_dealloc, NULL);
1976 if (error)
1977 return error;
1978
1979 /* Make this a regular file in case we crash.
1980 (We don't want to free these blocks a second time.) */
1981
1982 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1983 if (error)
1984 return error;
1985
1986 error = gfs2_meta_inode_buffer(dip, &bh);
1987 if (!error) {
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001988 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001989 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1990 cpu_to_be32(S_IFREG);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001991 brelse(bh);
1992 }
1993
1994 gfs2_trans_end(sdp);
1995
1996 return error;
1997}
1998
1999/**
2000 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
2001 * @ip: the file being written to
2002 * @filname: the filename that's going to be added
David Teiglandb3b94fa2006-01-16 16:50:04 +00002003 *
Steven Whitehousec7526662006-03-20 12:30:04 -05002004 * Returns: 1 if alloc required, 0 if not, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00002005 */
2006
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04002007int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002008{
Steven Whitehousec7526662006-03-20 12:30:04 -05002009 struct gfs2_dirent *dent;
2010 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002011
Steven Whitehousec7526662006-03-20 12:30:04 -05002012 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04002013 if (!dent) {
Steven Whitehousec7526662006-03-20 12:30:04 -05002014 return 1;
Steven Whitehouseed386502006-04-07 16:28:07 -04002015 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002016 if (IS_ERR(dent))
2017 return PTR_ERR(dent);
2018 brelse(bh);
2019 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002020}
2021