blob: 1f5a7ac97f7d67126fb61116917d9ec8dd026132 [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 Whitehouse8d123582010-09-17 12:30:23 +010082struct qstr gfs2_qdot __read_mostly;
83struct qstr gfs2_qdotdot __read_mostly;
84
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040085typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
86 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087
Bob Peterson0d953262011-03-22 13:52:44 -040088static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
Bob Petersonec038c82011-03-22 13:55:23 -040089 u64 leaf_no, struct buffer_head *leaf_bh,
90 int last_dealloc);
Steven Whitehouse61e085a2006-04-24 10:07:13 -040091
Steven Whitehousecd915492006-09-04 12:49:07 -040092int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040093 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000094{
95 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000096
Steven Whitehouse61e085a2006-04-24 10:07:13 -040097 bh = gfs2_meta_new(ip->i_gl, block);
98 gfs2_trans_add_bh(ip->i_gl, bh, 1);
99 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
100 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000101 *bhp = bh;
102 return 0;
103}
104
Steven Whitehousecd915492006-09-04 12:49:07 -0400105static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400106 struct buffer_head **bhp)
107{
108 struct buffer_head *bh;
109 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000110
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400111 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400112 if (error)
113 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400114 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400115 brelse(bh);
116 return -EIO;
117 }
118 *bhp = bh;
119 return 0;
120}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000121
122static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
123 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000124{
125 struct buffer_head *dibh;
126 int error;
127
128 error = gfs2_meta_inode_buffer(ip, &dibh);
129 if (error)
130 return error;
131
132 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500133 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100134 if (ip->i_inode.i_size < offset + size)
135 i_size_write(&ip->i_inode, offset + size);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100136 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500137 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000138
139 brelse(dibh);
140
141 return size;
142}
143
144
145
146/**
147 * gfs2_dir_write_data - Write directory information to the inode
148 * @ip: The GFS2 inode
149 * @buf: The buffer containing information to be written
150 * @offset: The file offset to start writing at
151 * @size: The amount of data to write
152 *
153 * Returns: The number of bytes correctly written or error code
154 */
155static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400156 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000157{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400158 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000159 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400160 u64 lblock, dblock;
161 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000162 unsigned int o;
163 int copied = 0;
164 int error = 0;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000165 int new = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000166
167 if (!size)
168 return 0;
169
170 if (gfs2_is_stuffed(ip) &&
171 offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500172 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
173 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000174
175 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
176 return -EINVAL;
177
178 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400179 error = gfs2_unstuff_dinode(ip, NULL);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000180 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500181 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000182 }
183
184 lblock = offset;
185 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
186
187 while (copied < size) {
188 unsigned int amount;
189 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000190
191 amount = size - copied;
192 if (amount > sdp->sd_sb.sb_bsize - o)
193 amount = sdp->sd_sb.sb_bsize - o;
194
195 if (!extlen) {
196 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400197 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400198 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000199 if (error)
200 goto fail;
201 error = -EIO;
202 if (gfs2_assert_withdraw(sdp, dblock))
203 goto fail;
204 }
205
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400206 if (amount == sdp->sd_jbsize || new)
207 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
208 else
209 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
210
Steven Whitehousee13940b2006-01-30 13:31:50 +0000211 if (error)
212 goto fail;
213
214 gfs2_trans_add_bh(ip->i_gl, bh, 1);
215 memcpy(bh->b_data + o, buf, amount);
216 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000217
Steven Whitehouse899bb262006-08-01 15:28:57 -0400218 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000219 copied += amount;
220 lblock++;
221 dblock++;
222 extlen--;
223
224 o = sizeof(struct gfs2_meta_header);
225 }
226
227out:
228 error = gfs2_meta_inode_buffer(ip, &dibh);
229 if (error)
230 return error;
231
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100232 if (ip->i_inode.i_size < offset + copied)
233 i_size_write(&ip->i_inode, offset + copied);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100234 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000235
236 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500237 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000238 brelse(dibh);
239
240 return copied;
241fail:
242 if (copied)
243 goto out;
244 return error;
245}
246
247static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400248 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000249{
250 struct buffer_head *dibh;
251 int error;
252
253 error = gfs2_meta_inode_buffer(ip, &dibh);
254 if (!error) {
255 offset += sizeof(struct gfs2_dinode);
256 memcpy(buf, dibh->b_data + offset, size);
257 brelse(dibh);
258 }
259
260 return (error) ? error : size;
261}
262
263
264/**
265 * gfs2_dir_read_data - Read a data from a directory inode
266 * @ip: The GFS2 Inode
267 * @buf: The buffer to place result into
268 * @offset: File offset to begin jdata_readng from
269 * @size: Amount of data to transfer
270 *
271 * Returns: The amount of data actually copied or the error
272 */
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400273static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, u64 offset,
274 unsigned int size, unsigned ra)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000275{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400276 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400277 u64 lblock, dblock;
278 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000279 unsigned int o;
280 int copied = 0;
281 int error = 0;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100282 u64 disksize = i_size_read(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000283
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100284 if (offset >= disksize)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000285 return 0;
286
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100287 if (offset + size > disksize)
288 size = disksize - offset;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000289
290 if (!size)
291 return 0;
292
293 if (gfs2_is_stuffed(ip))
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400294 return gfs2_dir_read_stuffed(ip, buf, offset, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000295
296 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
297 return -EINVAL;
298
299 lblock = offset;
300 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
301
302 while (copied < size) {
303 unsigned int amount;
304 struct buffer_head *bh;
305 int new;
306
307 amount = size - copied;
308 if (amount > sdp->sd_sb.sb_bsize - o)
309 amount = sdp->sd_sb.sb_bsize - o;
310
311 if (!extlen) {
312 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400313 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400314 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400315 if (error || !dblock)
316 goto fail;
317 BUG_ON(extlen < 1);
318 if (!ra)
319 extlen = 1;
320 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200321 } else {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400322 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000323 if (error)
324 goto fail;
325 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400326 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
327 if (error) {
328 brelse(bh);
329 goto fail;
330 }
331 dblock++;
332 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000333 memcpy(buf, bh->b_data + o, amount);
334 brelse(bh);
Steven Whitehouse899bb262006-08-01 15:28:57 -0400335 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000336 copied += amount;
337 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000338 o = sizeof(struct gfs2_meta_header);
339 }
340
341 return copied;
342fail:
343 return (copied) ? copied : error;
344}
345
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500346static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
347{
348 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
349}
350
Steven Whitehousec7526662006-03-20 12:30:04 -0500351static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
352 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000353{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500354 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500355 be32_to_cpu(dent->de_hash) == name->hash &&
356 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400357 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500358 return ret;
359 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360}
361
Steven Whitehousec7526662006-03-20 12:30:04 -0500362static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500363 const struct qstr *name,
364 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500365{
366 return __gfs2_dirent_find(dent, name, 1);
367}
368
369static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500370 const struct qstr *name,
371 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500372{
373 return __gfs2_dirent_find(dent, name, 2);
374}
375
376/*
377 * name->name holds ptr to start of block.
378 * name->len holds size of block.
379 */
380static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500381 const struct qstr *name,
382 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500383{
384 const char *start = name->name;
385 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
386 if (name->len == (end - start))
387 return 1;
388 return 0;
389}
390
391static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500392 const struct qstr *name,
393 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500394{
395 unsigned required = GFS2_DIRENT_SIZE(name->len);
396 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
397 unsigned totlen = be16_to_cpu(dent->de_rec_len);
398
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500399 if (gfs2_dirent_sentinel(dent))
Bob Peterson728a7562010-07-14 18:12:26 -0400400 actual = 0;
Jan Engelhardtc5392122006-09-05 14:30:40 +0200401 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500402 return 1;
403 return 0;
404}
405
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500406struct dirent_gather {
407 const struct gfs2_dirent **pdent;
408 unsigned offset;
409};
410
411static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
412 const struct qstr *name,
413 void *opaque)
414{
415 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500416 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500417 g->pdent[g->offset++] = dent;
418 }
419 return 0;
420}
421
Steven Whitehousec7526662006-03-20 12:30:04 -0500422/*
423 * Other possible things to check:
424 * - Inode located within filesystem size (and on valid block)
425 * - Valid directory entry type
426 * Not sure how heavy-weight we want to make this... could also check
427 * hash is correct for example, but that would take a lot of extra time.
428 * For now the most important thing is to check that the various sizes
429 * are correct.
430 */
431static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
432 unsigned int size, unsigned int len, int first)
433{
434 const char *msg = "gfs2_dirent too small";
435 if (unlikely(size < sizeof(struct gfs2_dirent)))
436 goto error;
437 msg = "gfs2_dirent misaligned";
438 if (unlikely(offset & 0x7))
439 goto error;
440 msg = "gfs2_dirent points beyond end of block";
441 if (unlikely(offset + size > len))
442 goto error;
443 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500444 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500445 goto error;
446 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500447 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500448 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
449 size))
450 goto error;
451 return 0;
452error:
453 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
454 first ? "first in block" : "not first in block");
455 return -EIO;
456}
457
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500458static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500459{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500460 const struct gfs2_meta_header *h = buf;
461 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500462
463 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500464
Steven Whitehousee3167de2006-03-30 15:46:23 -0500465 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500466 case GFS2_METATYPE_LF:
467 offset = sizeof(struct gfs2_leaf);
468 break;
469 case GFS2_METATYPE_DI:
470 offset = sizeof(struct gfs2_dinode);
471 break;
472 default:
473 goto wrong_type;
474 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500475 return offset;
476wrong_type:
477 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500478 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500479 return -1;
480}
Steven Whitehousec7526662006-03-20 12:30:04 -0500481
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400482static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500483 unsigned int len, gfs2_dscan_t scan,
484 const struct qstr *name,
485 void *opaque)
486{
487 struct gfs2_dirent *dent, *prev;
488 unsigned offset;
489 unsigned size;
490 int ret = 0;
491
492 ret = gfs2_dirent_offset(buf);
493 if (ret < 0)
494 goto consist_inode;
495
496 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500497 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400498 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500499 size = be16_to_cpu(dent->de_rec_len);
500 if (gfs2_check_dirent(dent, offset, size, len, 1))
501 goto consist_inode;
502 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500503 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500504 if (ret)
505 break;
506 offset += size;
507 if (offset == len)
508 break;
509 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400510 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500511 size = be16_to_cpu(dent->de_rec_len);
512 if (gfs2_check_dirent(dent, offset, size, len, 0))
513 goto consist_inode;
514 } while(1);
515
516 switch(ret) {
517 case 0:
518 return NULL;
519 case 1:
520 return dent;
521 case 2:
522 return prev ? prev : dent;
523 default:
524 BUG_ON(ret > 0);
525 return ERR_PTR(ret);
526 }
527
Steven Whitehousec7526662006-03-20 12:30:04 -0500528consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400529 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500530 return ERR_PTR(-EIO);
531}
532
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400533static int dirent_check_reclen(struct gfs2_inode *dip,
534 const struct gfs2_dirent *d, const void *end_p)
535{
536 const void *ptr = d;
537 u16 rec_len = be16_to_cpu(d->de_rec_len);
538
539 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
540 goto broken;
541 ptr += rec_len;
542 if (ptr < end_p)
543 return rec_len;
544 if (ptr == end_p)
545 return -ENOENT;
546broken:
547 gfs2_consist_inode(dip);
548 return -EIO;
549}
550
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551/**
552 * dirent_next - Next dirent
553 * @dip: the directory
554 * @bh: The buffer
555 * @dent: Pointer to list of dirents
556 *
557 * Returns: 0 on success, error code otherwise
558 */
559
560static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
561 struct gfs2_dirent **dent)
562{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400563 struct gfs2_dirent *cur = *dent, *tmp;
564 char *bh_end = bh->b_data + bh->b_size;
565 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400567 ret = dirent_check_reclen(dip, cur, bh_end);
568 if (ret < 0)
569 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400571 tmp = (void *)cur + ret;
572 ret = dirent_check_reclen(dip, tmp, bh_end);
573 if (ret == -EIO)
574 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000575
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500577 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 gfs2_consist_inode(dip);
579 return -EIO;
580 }
581
582 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 return 0;
584}
585
586/**
587 * dirent_del - Delete a dirent
588 * @dip: The GFS2 inode
589 * @bh: The buffer
590 * @prev: The previous dirent
591 * @cur: The current dirent
592 *
593 */
594
595static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
596 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
597{
Steven Whitehousecd915492006-09-04 12:49:07 -0400598 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500600 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601 gfs2_consist_inode(dip);
602 return;
603 }
604
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000605 gfs2_trans_add_bh(dip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606
607 /* If there is no prev entry, this is the first entry in the block.
608 The de_rec_len is already as big as it needs to be. Just zero
609 out the inode number and return. */
610
611 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500612 cur->de_inum.no_addr = 0;
613 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614 return;
615 }
616
617 /* Combine this dentry with the previous one. */
618
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000619 prev_rec_len = be16_to_cpu(prev->de_rec_len);
620 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000621
622 if ((char *)prev + prev_rec_len != (char *)cur)
623 gfs2_consist_inode(dip);
624 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
625 gfs2_consist_inode(dip);
626
627 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000628 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629}
630
Steven Whitehousec7526662006-03-20 12:30:04 -0500631/*
632 * Takes a dent from which to grab space as an argument. Returns the
633 * newly created dent.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000634 */
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400635static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
636 struct gfs2_dirent *dent,
637 const struct qstr *name,
638 struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400640 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500641 struct gfs2_dirent *ndent;
642 unsigned offset = 0, totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500644 if (!gfs2_dirent_sentinel(dent))
Steven Whitehousec7526662006-03-20 12:30:04 -0500645 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
646 totlen = be16_to_cpu(dent->de_rec_len);
647 BUG_ON(offset + name->len > totlen);
648 gfs2_trans_add_bh(ip->i_gl, bh, 1);
649 ndent = (struct gfs2_dirent *)((char *)dent + offset);
650 dent->de_rec_len = cpu_to_be16(offset);
651 gfs2_qstr2dirent(name, totlen - offset, ndent);
652 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000653}
654
Steven Whitehousec7526662006-03-20 12:30:04 -0500655static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
656 struct buffer_head *bh,
657 const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658{
659 struct gfs2_dirent *dent;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400660 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500661 gfs2_dirent_find_space, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500662 if (!dent || IS_ERR(dent))
663 return dent;
664 return gfs2_init_dirent(inode, dent, name, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000665}
666
Steven Whitehousecd915492006-09-04 12:49:07 -0400667static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000668 struct buffer_head **bhp)
669{
670 int error;
671
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400672 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400673 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
674 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400676 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677
678 return error;
679}
680
681/**
682 * get_leaf_nr - Get a leaf number associated with the index
683 * @dip: The GFS2 inode
684 * @index:
685 * @leaf_out:
686 *
687 * Returns: 0 on success, error code otherwise
688 */
689
Steven Whitehousecd915492006-09-04 12:49:07 -0400690static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
691 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000692{
Al Virob44b84d2006-10-14 10:46:30 -0400693 __be64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694 int error;
695
Steven Whitehousee13940b2006-01-30 13:31:50 +0000696 error = gfs2_dir_read_data(dip, (char *)&leaf_no,
Al Virob44b84d2006-10-14 10:46:30 -0400697 index * sizeof(__be64),
698 sizeof(__be64), 0);
Steven Whitehousecd915492006-09-04 12:49:07 -0400699 if (error != sizeof(u64))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000700 return (error < 0) ? error : -EIO;
701
702 *leaf_out = be64_to_cpu(leaf_no);
703
704 return 0;
705}
706
Steven Whitehousecd915492006-09-04 12:49:07 -0400707static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000708 struct buffer_head **bh_out)
709{
Steven Whitehousecd915492006-09-04 12:49:07 -0400710 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000711 int error;
712
713 error = get_leaf_nr(dip, index, &leaf_no);
714 if (!error)
715 error = get_leaf(dip, leaf_no, bh_out);
716
717 return error;
718}
719
Steven Whitehousec7526662006-03-20 12:30:04 -0500720static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
721 const struct qstr *name,
722 gfs2_dscan_t scan,
723 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724{
Steven Whitehousec7526662006-03-20 12:30:04 -0500725 struct buffer_head *bh;
726 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400727 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728 int error;
729
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000730 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500731 struct gfs2_leaf *leaf;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000732 unsigned hsize = 1 << ip->i_depth;
Steven Whitehousec7526662006-03-20 12:30:04 -0500733 unsigned index;
734 u64 ln;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100735 if (hsize * sizeof(u64) != i_size_read(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500736 gfs2_consist_inode(ip);
737 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400739
Steven Whitehouse9a004502008-02-01 09:23:44 +0000740 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500741 error = get_first_leaf(ip, index, &bh);
742 if (error)
743 return ERR_PTR(error);
744 do {
745 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500746 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500747 if (dent)
748 goto got_dent;
749 leaf = (struct gfs2_leaf *)bh->b_data;
750 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400751 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500752 if (!ln)
753 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400754
Steven Whitehousec7526662006-03-20 12:30:04 -0500755 error = get_leaf(ip, ln, &bh);
756 } while(!error);
757
758 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000759 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400761
Steven Whitehousec7526662006-03-20 12:30:04 -0500762 error = gfs2_meta_inode_buffer(ip, &bh);
763 if (error)
764 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500765 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500766got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400767 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400768 brelse(bh);
769 bh = NULL;
770 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500771 *pbh = bh;
772 return dent;
773}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774
Steven Whitehousec7526662006-03-20 12:30:04 -0500775static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
776{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400777 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000778 unsigned int n = 1;
Steven Whitehouse09010972009-05-20 10:48:47 +0100779 u64 bn;
780 int error;
781 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -0500782 struct gfs2_leaf *leaf;
783 struct gfs2_dirent *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500784 struct qstr name = { .name = "", .len = 0, .hash = 0 };
Steven Whitehouse09010972009-05-20 10:48:47 +0100785
786 error = gfs2_alloc_block(ip, &bn, &n);
787 if (error)
788 return NULL;
789 bh = gfs2_meta_new(ip->i_gl, bn);
Steven Whitehousec7526662006-03-20 12:30:04 -0500790 if (!bh)
791 return NULL;
Steven Whitehouse09010972009-05-20 10:48:47 +0100792
Steven Whitehouse5731be52008-02-01 13:16:55 +0000793 gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500794 gfs2_trans_add_bh(ip->i_gl, bh, 1);
795 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
796 leaf = (struct gfs2_leaf *)bh->b_data;
797 leaf->lf_depth = cpu_to_be16(depth);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400798 leaf->lf_entries = 0;
Al Viroa2d7d022006-10-14 16:49:30 +0100799 leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400800 leaf->lf_next = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500801 memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
802 dent = (struct gfs2_dirent *)(leaf+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500803 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500804 *pbh = bh;
805 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806}
807
808/**
809 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
810 * @dip: The GFS2 inode
811 *
812 * Returns: 0 on success, error code otherwise
813 */
814
Steven Whitehousec7526662006-03-20 12:30:04 -0500815static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400817 struct gfs2_inode *dip = GFS2_I(inode);
818 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000819 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500820 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000821 struct buffer_head *bh, *dibh;
822 struct gfs2_leaf *leaf;
823 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400824 u32 x;
Al Virob44b84d2006-10-14 10:46:30 -0400825 __be64 *lp;
826 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000827 int error;
828
829 error = gfs2_meta_inode_buffer(dip, &dibh);
830 if (error)
831 return error;
832
David Teiglandb3b94fa2006-01-16 16:50:04 +0000833 /* Turn over a new leaf */
834
Steven Whitehousec7526662006-03-20 12:30:04 -0500835 leaf = new_leaf(inode, &bh, 0);
836 if (!leaf)
837 return -ENOSPC;
838 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000839
Steven Whitehousead6203f2008-11-03 13:59:19 +0000840 gfs2_assert(sdp, dip->i_entries < (1 << 16));
841 leaf->lf_entries = cpu_to_be16(dip->i_entries);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000842
843 /* Copy dirents */
844
845 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
846 sizeof(struct gfs2_dinode));
847
848 /* Find last entry */
849
850 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500851 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
852 sizeof(struct gfs2_leaf);
853 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400854 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500855 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500856 if (!dent) {
857 brelse(bh);
858 brelse(dibh);
859 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000860 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500861 if (IS_ERR(dent)) {
862 brelse(bh);
863 brelse(dibh);
864 return PTR_ERR(dent);
865 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000866
867 /* Adjust the last dirent's record length
868 (Remember that dent still points to the last entry.) */
869
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000870 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000872 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873
874 brelse(bh);
875
876 /* We're done with the new leaf block, now setup the new
877 hash table. */
878
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000879 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000880 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
881
Al Virob44b84d2006-10-14 10:46:30 -0400882 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000883
884 for (x = sdp->sd_hash_ptrs; x--; lp++)
885 *lp = cpu_to_be64(bn);
886
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100887 i_size_write(inode, sdp->sd_sb.sb_bsize / 2);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000888 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000889 dip->i_diskflags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890
891 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000892 dip->i_depth = y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000893
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500894 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895
896 brelse(dibh);
897
898 return 0;
899}
900
901/**
902 * dir_split_leaf - Split a leaf block into two
903 * @dip: The GFS2 inode
904 * @index:
905 * @leaf_no:
906 *
907 * Returns: 0 on success, error code on failure
908 */
909
Steven Whitehousec7526662006-03-20 12:30:04 -0500910static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400912 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000913 struct buffer_head *nbh, *obh, *dibh;
914 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -0400915 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -0400916 u32 start, len, half_len, divider;
Al Virob44b84d2006-10-14 10:46:30 -0400917 u64 bn, leaf_no;
918 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -0400919 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920 int x, moved = 0;
921 int error;
922
Steven Whitehouse9a004502008-02-01 09:23:44 +0000923 index = name->hash >> (32 - dip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500924 error = get_leaf_nr(dip, index, &leaf_no);
925 if (error)
926 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000927
928 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 error = get_leaf(dip, leaf_no, &obh);
930 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500931 return error;
932
933 oleaf = (struct gfs2_leaf *)obh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000934 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500935 brelse(obh);
936 return 1; /* can't split */
937 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000939 gfs2_trans_add_bh(dip->i_gl, obh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940
Steven Whitehousec7526662006-03-20 12:30:04 -0500941 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
942 if (!nleaf) {
943 brelse(obh);
944 return -ENOSPC;
945 }
946 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947
Steven Whitehousec7526662006-03-20 12:30:04 -0500948 /* Compute the start and len of leaf pointers in the hash table. */
Steven Whitehouse9a004502008-02-01 09:23:44 +0000949 len = 1 << (dip->i_depth - be16_to_cpu(oleaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000950 half_len = len >> 1;
951 if (!half_len) {
Steven Whitehouse9a004502008-02-01 09:23:44 +0000952 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 +0000953 gfs2_consist_inode(dip);
954 error = -EIO;
955 goto fail_brelse;
956 }
957
958 start = (index & ~(len - 1));
959
960 /* Change the pointers.
961 Don't bother distinguishing stuffed from non-stuffed.
962 This code is complicated enough already. */
David Rientjes4244b522010-07-20 19:45:03 -0700963 lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS);
964 if (!lp) {
965 error = -ENOMEM;
966 goto fail_brelse;
967 }
968
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 for (x = 0; x < half_len; x++)
971 lp[x] = cpu_to_be64(bn);
972
Steven Whitehousecd915492006-09-04 12:49:07 -0400973 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
974 half_len * sizeof(u64));
975 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 if (error >= 0)
977 error = -EIO;
978 goto fail_lpfree;
979 }
980
981 kfree(lp);
982
983 /* Compute the divider */
Steven Whitehouse9a004502008-02-01 09:23:44 +0000984 divider = (start + half_len) << (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985
986 /* Copy the entries */
Steven Whitehouse15793432009-11-06 11:06:37 +0000987 dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000988
989 do {
990 next = dent;
991 if (dirent_next(dip, obh, &next))
992 next = NULL;
993
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500994 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500996 struct qstr str;
997 str.name = (char*)(dent+1);
998 str.len = be16_to_cpu(dent->de_name_len);
999 str.hash = be32_to_cpu(dent->de_hash);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001000 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001001 if (IS_ERR(new)) {
1002 error = PTR_ERR(new);
1003 break;
1004 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005
1006 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 new->de_type = dent->de_type; /* No endian worries */
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001008 be16_add_cpu(&nleaf->lf_entries, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001009
1010 dirent_del(dip, obh, prev, dent);
1011
1012 if (!oleaf->lf_entries)
1013 gfs2_consist_inode(dip);
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001014 be16_add_cpu(&oleaf->lf_entries, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015
1016 if (!prev)
1017 prev = dent;
1018
1019 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001020 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001022 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001024 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025
Steven Whitehousec7526662006-03-20 12:30:04 -05001026 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027
1028 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001029 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
Steven Whitehouse382e6e22007-08-16 17:08:20 +01001030 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001031 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001032 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033 brelse(dibh);
1034 }
1035
1036 brelse(obh);
1037 brelse(nbh);
1038
1039 return error;
1040
Steven Whitehousee90deff2006-03-29 19:02:15 -05001041fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042 kfree(lp);
1043
Steven Whitehousee90deff2006-03-29 19:02:15 -05001044fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001046 brelse(nbh);
1047 return error;
1048}
1049
1050/**
1051 * dir_double_exhash - Double size of ExHash table
1052 * @dip: The GFS2 dinode
1053 *
1054 * Returns: 0 on success, error code on failure
1055 */
1056
1057static int dir_double_exhash(struct gfs2_inode *dip)
1058{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001059 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001060 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001061 u32 hsize;
1062 u64 *buf;
1063 u64 *from, *to;
1064 u64 block;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001065 u64 disksize = i_size_read(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066 int x;
1067 int error = 0;
1068
Steven Whitehouse9a004502008-02-01 09:23:44 +00001069 hsize = 1 << dip->i_depth;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001070 if (hsize * sizeof(u64) != disksize) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071 gfs2_consist_inode(dip);
1072 return -EIO;
1073 }
1074
1075 /* Allocate both the "from" and "to" buffers in one big chunk */
1076
David Rientjes4244b522010-07-20 19:45:03 -07001077 buf = kcalloc(3, sdp->sd_hash_bsize, GFP_NOFS);
1078 if (!buf)
1079 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001081 for (block = disksize >> sdp->sd_hash_bsize_shift; block--;) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001082 error = gfs2_dir_read_data(dip, (char *)buf,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001083 block * sdp->sd_hash_bsize,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001084 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085 if (error != sdp->sd_hash_bsize) {
1086 if (error >= 0)
1087 error = -EIO;
1088 goto fail;
1089 }
1090
1091 from = buf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001092 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001093
1094 for (x = sdp->sd_hash_ptrs; x--; from++) {
1095 *to++ = *from; /* No endianess worries */
1096 *to++ = *from;
1097 }
1098
Steven Whitehousee13940b2006-01-30 13:31:50 +00001099 error = gfs2_dir_write_data(dip,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100 (char *)buf + sdp->sd_hash_bsize,
1101 block * sdp->sd_sb.sb_bsize,
1102 sdp->sd_sb.sb_bsize);
1103 if (error != sdp->sd_sb.sb_bsize) {
1104 if (error >= 0)
1105 error = -EIO;
1106 goto fail;
1107 }
1108 }
1109
1110 kfree(buf);
1111
1112 error = gfs2_meta_inode_buffer(dip, &dibh);
1113 if (!gfs2_assert_withdraw(sdp, !error)) {
Steven Whitehouse9a004502008-02-01 09:23:44 +00001114 dip->i_depth++;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001115 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116 brelse(dibh);
1117 }
1118
1119 return error;
1120
Steven Whitehousea91ea692006-09-04 12:04:26 -04001121fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001122 kfree(buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123 return error;
1124}
1125
1126/**
1127 * compare_dents - compare directory entries by hash value
1128 * @a: first dent
1129 * @b: second dent
1130 *
1131 * When comparing the hash entries of @a to @b:
1132 * gt: returns 1
1133 * lt: returns -1
1134 * eq: returns 0
1135 */
1136
1137static int compare_dents(const void *a, const void *b)
1138{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001139 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001140 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 int ret = 0;
1142
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001143 dent_a = *(const struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001144 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001145
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001146 dent_b = *(const struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001147 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001148
1149 if (hash_a > hash_b)
1150 ret = 1;
1151 else if (hash_a < hash_b)
1152 ret = -1;
1153 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001154 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1155 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001156
1157 if (len_a > len_b)
1158 ret = 1;
1159 else if (len_a < len_b)
1160 ret = -1;
1161 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001162 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163 }
1164
1165 return ret;
1166}
1167
1168/**
1169 * do_filldir_main - read out directory entries
1170 * @dip: The GFS2 inode
1171 * @offset: The offset in the file to read from
1172 * @opaque: opaque data to pass to filldir
1173 * @filldir: The function to pass entries to
1174 * @darr: an array of struct gfs2_dirent pointers to read
1175 * @entries: the number of entries in darr
1176 * @copied: pointer to int that's non-zero if a entry has been copied out
1177 *
1178 * Jump through some hoops to make sure that if there are hash collsions,
1179 * they are read out at the beginning of a buffer. We want to minimize
1180 * the possibility that they will fall into different readdir buffers or
1181 * that someone will want to seek to that location.
1182 *
1183 * Returns: errno, >0 on exception from filldir
1184 */
1185
Steven Whitehousecd915492006-09-04 12:49:07 -04001186static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001187 void *opaque, filldir_t filldir,
Steven Whitehousecd915492006-09-04 12:49:07 -04001188 const struct gfs2_dirent **darr, u32 entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001189 int *copied)
1190{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001191 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001192 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001193 unsigned int x, y;
1194 int run = 0;
1195 int error = 0;
1196
1197 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1198
1199 dent_next = darr[0];
1200 off_next = be32_to_cpu(dent_next->de_hash);
1201 off_next = gfs2_disk_hash2offset(off_next);
1202
1203 for (x = 0, y = 1; x < entries; x++, y++) {
1204 dent = dent_next;
1205 off = off_next;
1206
1207 if (y < entries) {
1208 dent_next = darr[y];
1209 off_next = be32_to_cpu(dent_next->de_hash);
1210 off_next = gfs2_disk_hash2offset(off_next);
1211
1212 if (off < *offset)
1213 continue;
1214 *offset = off;
1215
1216 if (off_next == off) {
1217 if (*copied && !run)
1218 return 1;
1219 run = 1;
1220 } else
1221 run = 0;
1222 } else {
1223 if (off < *offset)
1224 continue;
1225 *offset = off;
1226 }
1227
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001228 error = filldir(opaque, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001229 be16_to_cpu(dent->de_name_len),
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001230 off, be64_to_cpu(dent->de_inum.no_addr),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001231 be16_to_cpu(dent->de_type));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001232 if (error)
1233 return 1;
1234
1235 *copied = 1;
1236 }
1237
1238 /* Increment the *offset by one, so the next time we come into the
1239 do_filldir fxn, we get the next entry instead of the last one in the
1240 current leaf */
1241
1242 (*offset)++;
1243
1244 return 0;
1245}
1246
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001247static void *gfs2_alloc_sort_buffer(unsigned size)
1248{
1249 void *ptr = NULL;
1250
1251 if (size < KMALLOC_MAX_SIZE)
1252 ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN);
1253 if (!ptr)
1254 ptr = __vmalloc(size, GFP_NOFS, PAGE_KERNEL);
1255 return ptr;
1256}
1257
1258static void gfs2_free_sort_buffer(void *ptr)
1259{
1260 if (is_vmalloc_addr(ptr))
1261 vfree(ptr);
1262 else
1263 kfree(ptr);
1264}
1265
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001266static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001267 filldir_t filldir, int *copied, unsigned *depth,
1268 u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001269{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001270 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001271 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001272 struct buffer_head *bh;
1273 struct gfs2_leaf *lf;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001274 unsigned entries = 0, entries2 = 0;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001275 unsigned leaves = 0;
1276 const struct gfs2_dirent **darr, *dent;
1277 struct dirent_gather g;
1278 struct buffer_head **larr;
1279 int leaf = 0;
1280 int error, i;
1281 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001282
David Teiglandb3b94fa2006-01-16 16:50:04 +00001283 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001284 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001285 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001286 goto out;
1287 lf = (struct gfs2_leaf *)bh->b_data;
1288 if (leaves == 0)
1289 *depth = be16_to_cpu(lf->lf_depth);
1290 entries += be16_to_cpu(lf->lf_entries);
1291 leaves++;
1292 lfn = be64_to_cpu(lf->lf_next);
1293 brelse(bh);
1294 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001295
1296 if (!entries)
1297 return 0;
1298
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001299 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001300 /*
1301 * The extra 99 entries are not normally used, but are a buffer
1302 * zone in case the number of entries in the leaf is corrupt.
1303 * 99 is the maximum number of entries that can fit in a single
1304 * leaf block.
1305 */
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001306 larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001307 if (!larr)
1308 goto out;
1309 darr = (const struct gfs2_dirent **)(larr + leaves);
1310 g.pdent = darr;
1311 g.offset = 0;
1312 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001313
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001314 do {
1315 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001316 if (error)
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001317 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001318 lf = (struct gfs2_leaf *)bh->b_data;
1319 lfn = be64_to_cpu(lf->lf_next);
1320 if (lf->lf_entries) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001321 entries2 += be16_to_cpu(lf->lf_entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001322 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1323 gfs2_dirent_gather, NULL, &g);
1324 error = PTR_ERR(dent);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001325 if (IS_ERR(dent))
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001326 goto out_free;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001327 if (entries2 != g.offset) {
akpm@linux-foundation.orgf391a4e2007-04-25 21:08:02 -07001328 fs_warn(sdp, "Number of entries corrupt in dir "
1329 "leaf %llu, entries2 (%u) != "
1330 "g.offset (%u)\n",
1331 (unsigned long long)bh->b_blocknr,
1332 entries2, g.offset);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001333
1334 error = -EIO;
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001335 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001336 }
1337 error = 0;
1338 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001339 } else {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001340 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001341 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001342 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001343
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001344 BUG_ON(entries2 != entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001345 error = do_filldir_main(ip, offset, opaque, filldir, darr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001346 entries, copied);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001347out_free:
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001348 for(i = 0; i < leaf; i++)
1349 brelse(larr[i]);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001350 gfs2_free_sort_buffer(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001351out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001352 return error;
1353}
1354
1355/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001356 * dir_e_read - Reads the entries from a directory into a filldir buffer
1357 * @dip: dinode pointer
1358 * @offset: the hash of the last entry read shifted to the right once
1359 * @opaque: buffer for the filldir function to fill
1360 * @filldir: points to the filldir function to use
1361 *
1362 * Returns: errno
1363 */
1364
Steven Whitehousecd915492006-09-04 12:49:07 -04001365static int dir_e_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001366 filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001367{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001368 struct gfs2_inode *dip = GFS2_I(inode);
1369 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001370 u32 hsize, len = 0;
1371 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1372 u32 hash, index;
Al Virob44b84d2006-10-14 10:46:30 -04001373 __be64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001374 int copied = 0;
1375 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001376 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001377
Steven Whitehouse9a004502008-02-01 09:23:44 +00001378 hsize = 1 << dip->i_depth;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001379 if (hsize * sizeof(u64) != i_size_read(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001380 gfs2_consist_inode(dip);
1381 return -EIO;
1382 }
1383
1384 hash = gfs2_dir_offset2hash(*offset);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001385 index = hash >> (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001386
Josef Bacik16c5f062008-04-09 09:33:41 -04001387 lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001388 if (!lp)
1389 return -ENOMEM;
1390
1391 while (index < hsize) {
1392 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1393 ht_offset = index - lp_offset;
1394
1395 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001396 error = gfs2_dir_read_data(dip, (char *)lp,
Al Virob44b84d2006-10-14 10:46:30 -04001397 ht_offset * sizeof(__be64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001398 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001399 if (error != sdp->sd_hash_bsize) {
1400 if (error >= 0)
1401 error = -EIO;
1402 goto out;
1403 }
1404 ht_offset_cur = ht_offset;
1405 }
1406
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001407 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1408 &copied, &depth,
1409 be64_to_cpu(lp[lp_offset]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001410 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001411 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001412
Steven Whitehouse9a004502008-02-01 09:23:44 +00001413 len = 1 << (dip->i_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001414 index = (index & ~(len - 1)) + len;
1415 }
1416
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001417out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001418 kfree(lp);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001419 if (error > 0)
1420 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001421 return error;
1422}
1423
Steven Whitehousecd915492006-09-04 12:49:07 -04001424int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001425 filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001426{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001427 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001428 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001429 struct dirent_gather g;
1430 const struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001431 struct buffer_head *dibh;
1432 int copied = 0;
1433 int error;
1434
Steven Whitehousead6203f2008-11-03 13:59:19 +00001435 if (!dip->i_entries)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001436 return 0;
1437
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001438 if (dip->i_diskflags & GFS2_DIF_EXHASH)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001439 return dir_e_read(inode, offset, opaque, filldir);
1440
David Teiglandb3b94fa2006-01-16 16:50:04 +00001441 if (!gfs2_is_stuffed(dip)) {
1442 gfs2_consist_inode(dip);
1443 return -EIO;
1444 }
1445
David Teiglandb3b94fa2006-01-16 16:50:04 +00001446 error = gfs2_meta_inode_buffer(dip, &dibh);
1447 if (error)
1448 return error;
1449
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001450 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001451 /* 96 is max number of dirents which can be stuffed into an inode */
Josef Bacik16c5f062008-04-09 09:33:41 -04001452 darr = kmalloc(96 * sizeof(struct gfs2_dirent *), GFP_NOFS);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001453 if (darr) {
1454 g.pdent = darr;
1455 g.offset = 0;
1456 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1457 gfs2_dirent_gather, NULL, &g);
1458 if (IS_ERR(dent)) {
1459 error = PTR_ERR(dent);
1460 goto out;
1461 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001462 if (dip->i_entries != g.offset) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001463 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
Steven Whitehousead6203f2008-11-03 13:59:19 +00001464 "ip->i_entries (%u) != g.offset (%u)\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001465 (unsigned long long)dip->i_no_addr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001466 dip->i_entries,
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001467 g.offset);
1468 error = -EIO;
1469 goto out;
1470 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001471 error = do_filldir_main(dip, offset, opaque, filldir, darr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001472 dip->i_entries, &copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001473out:
1474 kfree(darr);
1475 }
1476
David Teiglandb3b94fa2006-01-16 16:50:04 +00001477 if (error > 0)
1478 error = 0;
1479
1480 brelse(dibh);
1481
1482 return error;
1483}
1484
David Teiglandb3b94fa2006-01-16 16:50:04 +00001485/**
1486 * gfs2_dir_search - Search a directory
1487 * @dip: The GFS2 inode
1488 * @filename:
1489 * @inode:
1490 *
1491 * This routine searches a directory for a file or another directory.
1492 * Assumes a glock is held on dip.
1493 *
1494 * Returns: errno
1495 */
1496
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001497struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001498{
Steven Whitehousec7526662006-03-20 12:30:04 -05001499 struct buffer_head *bh;
1500 struct gfs2_dirent *dent;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001501 struct inode *inode;
1502
1503 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1504 if (dent) {
1505 if (IS_ERR(dent))
David Howellse231c2e2008-02-07 00:15:26 -08001506 return ERR_CAST(dent);
Wendy Chengbb9bcf02007-06-27 17:07:08 -04001507 inode = gfs2_inode_lookup(dir->i_sb,
1508 be16_to_cpu(dent->de_type),
1509 be64_to_cpu(dent->de_inum.no_addr),
Bob Peterson44ad37d2011-03-17 16:19:58 -04001510 be64_to_cpu(dent->de_inum.no_formal_ino), 0);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001511 brelse(bh);
1512 return inode;
1513 }
1514 return ERR_PTR(-ENOENT);
1515}
1516
1517int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1518 const struct gfs2_inode *ip)
1519{
1520 struct buffer_head *bh;
1521 struct gfs2_dirent *dent;
1522 int ret = -ENOENT;
Steven Whitehousec7526662006-03-20 12:30:04 -05001523
1524 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1525 if (dent) {
1526 if (IS_ERR(dent))
1527 return PTR_ERR(dent);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001528 if (ip) {
1529 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1530 goto out;
1531 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1532 ip->i_no_formal_ino)
1533 goto out;
1534 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1535 be16_to_cpu(dent->de_type))) {
1536 gfs2_consist_inode(GFS2_I(dir));
1537 ret = -EIO;
1538 goto out;
1539 }
1540 }
1541 ret = 0;
1542out:
Steven Whitehousec7526662006-03-20 12:30:04 -05001543 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001544 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001545 return ret;
Steven Whitehousec7526662006-03-20 12:30:04 -05001546}
1547
1548static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1549{
1550 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001551 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001552 struct gfs2_leaf *leaf, *oleaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001553 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001554 u32 index;
1555 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001556
Steven Whitehouse9a004502008-02-01 09:23:44 +00001557 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001558 error = get_first_leaf(ip, index, &obh);
1559 if (error)
1560 return error;
1561 do {
1562 oleaf = (struct gfs2_leaf *)obh->b_data;
1563 bn = be64_to_cpu(oleaf->lf_next);
1564 if (!bn)
1565 break;
1566 brelse(obh);
1567 error = get_leaf(ip, bn, &obh);
1568 if (error)
1569 return error;
1570 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001571
Steven Whitehousec7526662006-03-20 12:30:04 -05001572 gfs2_trans_add_bh(ip->i_gl, obh, 1);
1573
1574 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1575 if (!leaf) {
1576 brelse(obh);
1577 return -ENOSPC;
1578 }
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001579 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001580 brelse(bh);
1581 brelse(obh);
1582
1583 error = gfs2_meta_inode_buffer(ip, &bh);
1584 if (error)
1585 return error;
1586 gfs2_trans_add_bh(ip->i_gl, bh, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001587 gfs2_add_inode_blocks(&ip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001588 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001589 brelse(bh);
1590 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001591}
1592
1593/**
1594 * gfs2_dir_add - Add new filename into directory
1595 * @dip: The GFS2 inode
1596 * @filename: The new name
1597 * @inode: The inode number of the entry
1598 * @type: The type of the entry
1599 *
1600 * Returns: 0 on success, error code on failure
1601 */
1602
Steven Whitehousec7526662006-03-20 12:30:04 -05001603int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001604 const struct gfs2_inode *nip, unsigned type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001605{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001606 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001607 struct buffer_head *bh;
1608 struct gfs2_dirent *dent;
1609 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001610 int error;
1611
Steven Whitehousec7526662006-03-20 12:30:04 -05001612 while(1) {
1613 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1614 &bh);
1615 if (dent) {
1616 if (IS_ERR(dent))
1617 return PTR_ERR(dent);
1618 dent = gfs2_init_dirent(inode, dent, name, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001619 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001620 dent->de_type = cpu_to_be16(type);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001621 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001622 leaf = (struct gfs2_leaf *)bh->b_data;
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001623 be16_add_cpu(&leaf->lf_entries, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -05001624 }
1625 brelse(bh);
1626 error = gfs2_meta_inode_buffer(ip, &bh);
1627 if (error)
1628 break;
1629 gfs2_trans_add_bh(ip->i_gl, bh, 1);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001630 ip->i_entries++;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001631 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001632 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001633 brelse(bh);
1634 error = 0;
1635 break;
1636 }
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001637 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001638 error = dir_make_exhash(inode);
1639 if (error)
1640 break;
1641 continue;
1642 }
1643 error = dir_split_leaf(inode, name);
1644 if (error == 0)
1645 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001646 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001647 break;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001648 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001649 error = dir_double_exhash(ip);
1650 if (error)
1651 break;
1652 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001653 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001654 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001655 if (error == 0)
1656 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001657 }
1658 error = dir_new_leaf(inode, name);
1659 if (!error)
1660 continue;
1661 error = -ENOSPC;
1662 break;
1663 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001664 return error;
1665}
1666
Steven Whitehousec7526662006-03-20 12:30:04 -05001667
David Teiglandb3b94fa2006-01-16 16:50:04 +00001668/**
1669 * gfs2_dir_del - Delete a directory entry
1670 * @dip: The GFS2 inode
1671 * @filename: The filename
1672 *
1673 * Returns: 0 on success, error code on failure
1674 */
1675
Steven Whitehousec7526662006-03-20 12:30:04 -05001676int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001677{
Steven Whitehousec7526662006-03-20 12:30:04 -05001678 struct gfs2_dirent *dent, *prev = NULL;
1679 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001680 int error;
1681
Steven Whitehousec7526662006-03-20 12:30:04 -05001682 /* Returns _either_ the entry (if its first in block) or the
1683 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001684 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001685 if (!dent) {
1686 gfs2_consist_inode(dip);
1687 return -EIO;
1688 }
1689 if (IS_ERR(dent)) {
1690 gfs2_consist_inode(dip);
1691 return PTR_ERR(dent);
1692 }
1693 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001694 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001695 prev = dent;
1696 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1697 }
1698
1699 dirent_del(dip, bh, prev, dent);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001700 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001701 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1702 u16 entries = be16_to_cpu(leaf->lf_entries);
1703 if (!entries)
1704 gfs2_consist_inode(dip);
1705 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehousec7526662006-03-20 12:30:04 -05001706 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001707 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001708
1709 error = gfs2_meta_inode_buffer(dip, &bh);
1710 if (error)
1711 return error;
1712
Steven Whitehousead6203f2008-11-03 13:59:19 +00001713 if (!dip->i_entries)
Steven Whitehousec7526662006-03-20 12:30:04 -05001714 gfs2_consist_inode(dip);
1715 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001716 dip->i_entries--;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001717 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001718 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001719 brelse(bh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001720 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001721
1722 return error;
1723}
1724
David Teiglandb3b94fa2006-01-16 16:50:04 +00001725/**
1726 * gfs2_dir_mvino - Change inode number of directory entry
1727 * @dip: The GFS2 inode
1728 * @filename:
1729 * @new_inode:
1730 *
1731 * This routine changes the inode number of a directory entry. It's used
1732 * by rename to change ".." when a directory is moved.
1733 * Assumes a glock is held on dvp.
1734 *
1735 * Returns: errno
1736 */
1737
Steven Whitehousec7526662006-03-20 12:30:04 -05001738int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001739 const struct gfs2_inode *nip, unsigned int new_type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001740{
Steven Whitehousec7526662006-03-20 12:30:04 -05001741 struct buffer_head *bh;
1742 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001743 int error;
1744
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001745 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001746 if (!dent) {
1747 gfs2_consist_inode(dip);
1748 return -EIO;
1749 }
1750 if (IS_ERR(dent))
1751 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001752
Steven Whitehousec7526662006-03-20 12:30:04 -05001753 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001754 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001755 dent->de_type = cpu_to_be16(new_type);
1756
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001757 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001758 brelse(bh);
1759 error = gfs2_meta_inode_buffer(dip, &bh);
1760 if (error)
1761 return error;
1762 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1763 }
1764
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001765 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001766 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001767 brelse(bh);
1768 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001769}
1770
1771/**
1772 * foreach_leaf - call a function for each leaf in a directory
1773 * @dip: the directory
David Teiglandb3b94fa2006-01-16 16:50:04 +00001774 *
1775 * Returns: errno
1776 */
1777
Bob Peterson0d953262011-03-22 13:52:44 -04001778static int foreach_leaf(struct gfs2_inode *dip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001779{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001780 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001781 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001782 struct gfs2_leaf *leaf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001783 u32 hsize, len;
1784 u32 ht_offset, lp_offset, ht_offset_cur = -1;
Bob Petersond24a7a42011-03-22 13:54:03 -04001785 u32 index = 0, next_index;
Al Virob44b84d2006-10-14 10:46:30 -04001786 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -04001787 u64 leaf_no;
Bob Petersond24a7a42011-03-22 13:54:03 -04001788 int error = 0, last;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001789
Steven Whitehouse9a004502008-02-01 09:23:44 +00001790 hsize = 1 << dip->i_depth;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001791 if (hsize * sizeof(u64) != i_size_read(&dip->i_inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001792 gfs2_consist_inode(dip);
1793 return -EIO;
1794 }
1795
Josef Bacik16c5f062008-04-09 09:33:41 -04001796 lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001797 if (!lp)
1798 return -ENOMEM;
1799
1800 while (index < hsize) {
1801 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1802 ht_offset = index - lp_offset;
1803
1804 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001805 error = gfs2_dir_read_data(dip, (char *)lp,
Al Virob44b84d2006-10-14 10:46:30 -04001806 ht_offset * sizeof(__be64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001807 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001808 if (error != sdp->sd_hash_bsize) {
1809 if (error >= 0)
1810 error = -EIO;
1811 goto out;
1812 }
1813 ht_offset_cur = ht_offset;
1814 }
1815
1816 leaf_no = be64_to_cpu(lp[lp_offset]);
1817 if (leaf_no) {
1818 error = get_leaf(dip, leaf_no, &bh);
1819 if (error)
1820 goto out;
Steven Whitehousec7526662006-03-20 12:30:04 -05001821 leaf = (struct gfs2_leaf *)bh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001822 len = 1 << (dip->i_depth - be16_to_cpu(leaf->lf_depth));
Bob Petersond24a7a42011-03-22 13:54:03 -04001823 next_index = (index & ~(len - 1)) + len;
1824 last = ((next_index >= hsize) ? 1 : 0);
Bob Petersonec038c82011-03-22 13:55:23 -04001825 error = leaf_dealloc(dip, index, len, leaf_no, bh,
1826 last);
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001827 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001828 if (error)
1829 goto out;
Bob Petersond24a7a42011-03-22 13:54:03 -04001830 index = next_index;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001831 } else
1832 index++;
1833 }
1834
1835 if (index != hsize) {
1836 gfs2_consist_inode(dip);
1837 error = -EIO;
1838 }
1839
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001840out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001841 kfree(lp);
1842
1843 return error;
1844}
1845
1846/**
1847 * leaf_dealloc - Deallocate a directory leaf
1848 * @dip: the directory
1849 * @index: the hash table offset in the directory
1850 * @len: the number of pointers to this leaf
1851 * @leaf_no: the leaf number
Bob Petersonec038c82011-03-22 13:55:23 -04001852 * @leaf_bh: buffer_head for the starting leaf
Bob Petersond24a7a42011-03-22 13:54:03 -04001853 * last_dealloc: 1 if this is the final dealloc for the leaf, else 0
David Teiglandb3b94fa2006-01-16 16:50:04 +00001854 *
1855 * Returns: errno
1856 */
1857
Steven Whitehousecd915492006-09-04 12:49:07 -04001858static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
Bob Petersonec038c82011-03-22 13:55:23 -04001859 u64 leaf_no, struct buffer_head *leaf_bh,
1860 int last_dealloc)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001861{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001862 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001863 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001864 struct gfs2_rgrp_list rlist;
1865 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001866 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001867 unsigned int rg_blocks = 0, l_blocks = 0;
1868 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001869 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001870 int error;
1871
1872 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1873
Josef Bacik16c5f062008-04-09 09:33:41 -04001874 ht = kzalloc(size, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001875 if (!ht)
1876 return -ENOMEM;
1877
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001878 if (!gfs2_alloc_get(dip)) {
1879 error = -ENOMEM;
1880 goto out;
1881 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001882
1883 error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1884 if (error)
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001885 goto out_put;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001886
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001887 error = gfs2_rindex_hold(sdp, &dip->i_alloc->al_ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001888 if (error)
1889 goto out_qs;
1890
1891 /* Count the number of leaves */
Bob Petersonec038c82011-03-22 13:55:23 -04001892 bh = leaf_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001893
Steven Whitehousec7526662006-03-20 12:30:04 -05001894 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04001895 if (blk != leaf_no) {
1896 error = get_leaf(dip, blk, &bh);
1897 if (error)
1898 goto out_rlist;
1899 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001900 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1901 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04001902 if (blk != leaf_no)
1903 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001904
1905 gfs2_rlist_add(sdp, &rlist, blk);
1906 l_blocks++;
1907 }
1908
Bob Petersonfe6c9912008-01-28 11:13:02 -06001909 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001910
1911 for (x = 0; x < rlist.rl_rgrps; x++) {
1912 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001913 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001914 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001915 }
1916
1917 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1918 if (error)
1919 goto out_rlist;
1920
1921 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001922 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001923 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1924 if (error)
1925 goto out_rg_gunlock;
1926
Bob Petersonec038c82011-03-22 13:55:23 -04001927 bh = leaf_bh;
1928
Steven Whitehousec7526662006-03-20 12:30:04 -05001929 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04001930 if (blk != leaf_no) {
1931 error = get_leaf(dip, blk, &bh);
1932 if (error)
1933 goto out_end_trans;
1934 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001935 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1936 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04001937 if (blk != leaf_no)
1938 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001939
1940 gfs2_free_meta(dip, blk, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001941 gfs2_add_inode_blocks(&dip->i_inode, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001942 }
1943
Steven Whitehousecd915492006-09-04 12:49:07 -04001944 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001945 if (error != size) {
1946 if (error >= 0)
1947 error = -EIO;
1948 goto out_end_trans;
1949 }
1950
1951 error = gfs2_meta_inode_buffer(dip, &dibh);
1952 if (error)
1953 goto out_end_trans;
1954
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001955 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
Bob Petersond24a7a42011-03-22 13:54:03 -04001956 /* On the last dealloc, make this a regular file in case we crash.
1957 (We don't want to free these blocks a second time.) */
1958 if (last_dealloc)
1959 dip->i_inode.i_mode = S_IFREG;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001960 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001961 brelse(dibh);
1962
Steven Whitehousea91ea692006-09-04 12:04:26 -04001963out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001964 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001965out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001966 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001967out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001968 gfs2_rlist_free(&rlist);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001969 gfs2_glock_dq_uninit(&dip->i_alloc->al_ri_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001970out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001971 gfs2_quota_unhold(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001972out_put:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001973 gfs2_alloc_put(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001974out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001975 kfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001976 return error;
1977}
1978
1979/**
1980 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1981 * @dip: the directory
1982 *
1983 * Dealloc all on-disk directory leaves to FREEMETA state
1984 * Change on-disk inode type to "regular file"
1985 *
1986 * Returns: errno
1987 */
1988
1989int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1990{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001991 /* Dealloc on-disk leaves to FREEMETA state */
Bob Petersond24a7a42011-03-22 13:54:03 -04001992 return foreach_leaf(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001993}
1994
1995/**
1996 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
1997 * @ip: the file being written to
1998 * @filname: the filename that's going to be added
David Teiglandb3b94fa2006-01-16 16:50:04 +00001999 *
Steven Whitehousec7526662006-03-20 12:30:04 -05002000 * Returns: 1 if alloc required, 0 if not, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00002001 */
2002
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04002003int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002004{
Steven Whitehousec7526662006-03-20 12:30:04 -05002005 struct gfs2_dirent *dent;
2006 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002007
Steven Whitehousec7526662006-03-20 12:30:04 -05002008 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04002009 if (!dent) {
Steven Whitehousec7526662006-03-20 12:30:04 -05002010 return 1;
Steven Whitehouseed386502006-04-07 16:28:07 -04002011 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002012 if (IS_ERR(dent))
2013 return PTR_ERR(dent);
2014 brelse(bh);
2015 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002016}
2017