blob: 5c356d09c321c10133afc7cf93aba2eddd1cb3c1 [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 Whitehouse907b9bc2006-09-25 09:26:04 -040085typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len,
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040086 u64 leaf_no, void *data);
87typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
88 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000089
Steven Whitehouse61e085a2006-04-24 10:07:13 -040090
Steven Whitehousecd915492006-09-04 12:49:07 -040091int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040092 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000093{
94 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000095
Steven Whitehouse61e085a2006-04-24 10:07:13 -040096 bh = gfs2_meta_new(ip->i_gl, block);
97 gfs2_trans_add_bh(ip->i_gl, bh, 1);
98 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
99 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000100 *bhp = bh;
101 return 0;
102}
103
Steven Whitehousecd915492006-09-04 12:49:07 -0400104static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400105 struct buffer_head **bhp)
106{
107 struct buffer_head *bh;
108 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000109
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400110 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400111 if (error)
112 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400113 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400114 brelse(bh);
115 return -EIO;
116 }
117 *bhp = bh;
118 return 0;
119}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000120
121static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
122 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000123{
124 struct buffer_head *dibh;
125 int error;
126
127 error = gfs2_meta_inode_buffer(ip, &dibh);
128 if (error)
129 return error;
130
131 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500132 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100133 if (ip->i_inode.i_size < offset + size)
134 i_size_write(&ip->i_inode, offset + size);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100135 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500136 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000137
138 brelse(dibh);
139
140 return size;
141}
142
143
144
145/**
146 * gfs2_dir_write_data - Write directory information to the inode
147 * @ip: The GFS2 inode
148 * @buf: The buffer containing information to be written
149 * @offset: The file offset to start writing at
150 * @size: The amount of data to write
151 *
152 * Returns: The number of bytes correctly written or error code
153 */
154static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400155 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000156{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400157 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000158 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400159 u64 lblock, dblock;
160 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000161 unsigned int o;
162 int copied = 0;
163 int error = 0;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000164 int new = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000165
166 if (!size)
167 return 0;
168
169 if (gfs2_is_stuffed(ip) &&
170 offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500171 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
172 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000173
174 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
175 return -EINVAL;
176
177 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400178 error = gfs2_unstuff_dinode(ip, NULL);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000179 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500180 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000181 }
182
183 lblock = offset;
184 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
185
186 while (copied < size) {
187 unsigned int amount;
188 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000189
190 amount = size - copied;
191 if (amount > sdp->sd_sb.sb_bsize - o)
192 amount = sdp->sd_sb.sb_bsize - o;
193
194 if (!extlen) {
195 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400196 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400197 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000198 if (error)
199 goto fail;
200 error = -EIO;
201 if (gfs2_assert_withdraw(sdp, dblock))
202 goto fail;
203 }
204
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400205 if (amount == sdp->sd_jbsize || new)
206 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
207 else
208 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
209
Steven Whitehousee13940b2006-01-30 13:31:50 +0000210 if (error)
211 goto fail;
212
213 gfs2_trans_add_bh(ip->i_gl, bh, 1);
214 memcpy(bh->b_data + o, buf, amount);
215 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000216
Steven Whitehouse899bb262006-08-01 15:28:57 -0400217 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000218 copied += amount;
219 lblock++;
220 dblock++;
221 extlen--;
222
223 o = sizeof(struct gfs2_meta_header);
224 }
225
226out:
227 error = gfs2_meta_inode_buffer(ip, &dibh);
228 if (error)
229 return error;
230
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100231 if (ip->i_inode.i_size < offset + copied)
232 i_size_write(&ip->i_inode, offset + copied);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100233 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000234
235 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500236 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000237 brelse(dibh);
238
239 return copied;
240fail:
241 if (copied)
242 goto out;
243 return error;
244}
245
246static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400247 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000248{
249 struct buffer_head *dibh;
250 int error;
251
252 error = gfs2_meta_inode_buffer(ip, &dibh);
253 if (!error) {
254 offset += sizeof(struct gfs2_dinode);
255 memcpy(buf, dibh->b_data + offset, size);
256 brelse(dibh);
257 }
258
259 return (error) ? error : size;
260}
261
262
263/**
264 * gfs2_dir_read_data - Read a data from a directory inode
265 * @ip: The GFS2 Inode
266 * @buf: The buffer to place result into
267 * @offset: File offset to begin jdata_readng from
268 * @size: Amount of data to transfer
269 *
270 * Returns: The amount of data actually copied or the error
271 */
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400272static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, u64 offset,
273 unsigned int size, unsigned ra)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000274{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400275 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400276 u64 lblock, dblock;
277 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000278 unsigned int o;
279 int copied = 0;
280 int error = 0;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100281 u64 disksize = i_size_read(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000282
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100283 if (offset >= disksize)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000284 return 0;
285
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100286 if (offset + size > disksize)
287 size = disksize - offset;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000288
289 if (!size)
290 return 0;
291
292 if (gfs2_is_stuffed(ip))
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400293 return gfs2_dir_read_stuffed(ip, buf, offset, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000294
295 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
296 return -EINVAL;
297
298 lblock = offset;
299 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
300
301 while (copied < size) {
302 unsigned int amount;
303 struct buffer_head *bh;
304 int new;
305
306 amount = size - copied;
307 if (amount > sdp->sd_sb.sb_bsize - o)
308 amount = sdp->sd_sb.sb_bsize - o;
309
310 if (!extlen) {
311 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400312 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400313 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400314 if (error || !dblock)
315 goto fail;
316 BUG_ON(extlen < 1);
317 if (!ra)
318 extlen = 1;
319 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200320 } else {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400321 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000322 if (error)
323 goto fail;
324 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400325 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
326 if (error) {
327 brelse(bh);
328 goto fail;
329 }
330 dblock++;
331 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000332 memcpy(buf, bh->b_data + o, amount);
333 brelse(bh);
Steven Whitehouse899bb262006-08-01 15:28:57 -0400334 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000335 copied += amount;
336 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000337 o = sizeof(struct gfs2_meta_header);
338 }
339
340 return copied;
341fail:
342 return (copied) ? copied : error;
343}
344
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500345static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
346{
347 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
348}
349
Steven Whitehousec7526662006-03-20 12:30:04 -0500350static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
351 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000352{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500353 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500354 be32_to_cpu(dent->de_hash) == name->hash &&
355 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400356 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500357 return ret;
358 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359}
360
Steven Whitehousec7526662006-03-20 12:30:04 -0500361static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500362 const struct qstr *name,
363 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500364{
365 return __gfs2_dirent_find(dent, name, 1);
366}
367
368static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500369 const struct qstr *name,
370 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500371{
372 return __gfs2_dirent_find(dent, name, 2);
373}
374
375/*
376 * name->name holds ptr to start of block.
377 * name->len holds size of block.
378 */
379static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500380 const struct qstr *name,
381 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500382{
383 const char *start = name->name;
384 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
385 if (name->len == (end - start))
386 return 1;
387 return 0;
388}
389
390static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500391 const struct qstr *name,
392 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500393{
394 unsigned required = GFS2_DIRENT_SIZE(name->len);
395 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
396 unsigned totlen = be16_to_cpu(dent->de_rec_len);
397
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500398 if (gfs2_dirent_sentinel(dent))
Bob Peterson728a7562010-07-14 18:12:26 -0400399 actual = 0;
Jan Engelhardtc5392122006-09-05 14:30:40 +0200400 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500401 return 1;
402 return 0;
403}
404
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500405struct dirent_gather {
406 const struct gfs2_dirent **pdent;
407 unsigned offset;
408};
409
410static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
411 const struct qstr *name,
412 void *opaque)
413{
414 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500415 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500416 g->pdent[g->offset++] = dent;
417 }
418 return 0;
419}
420
Steven Whitehousec7526662006-03-20 12:30:04 -0500421/*
422 * Other possible things to check:
423 * - Inode located within filesystem size (and on valid block)
424 * - Valid directory entry type
425 * Not sure how heavy-weight we want to make this... could also check
426 * hash is correct for example, but that would take a lot of extra time.
427 * For now the most important thing is to check that the various sizes
428 * are correct.
429 */
430static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
431 unsigned int size, unsigned int len, int first)
432{
433 const char *msg = "gfs2_dirent too small";
434 if (unlikely(size < sizeof(struct gfs2_dirent)))
435 goto error;
436 msg = "gfs2_dirent misaligned";
437 if (unlikely(offset & 0x7))
438 goto error;
439 msg = "gfs2_dirent points beyond end of block";
440 if (unlikely(offset + size > len))
441 goto error;
442 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500443 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500444 goto error;
445 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500446 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500447 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
448 size))
449 goto error;
450 return 0;
451error:
452 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
453 first ? "first in block" : "not first in block");
454 return -EIO;
455}
456
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500457static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500458{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500459 const struct gfs2_meta_header *h = buf;
460 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500461
462 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500463
Steven Whitehousee3167de2006-03-30 15:46:23 -0500464 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500465 case GFS2_METATYPE_LF:
466 offset = sizeof(struct gfs2_leaf);
467 break;
468 case GFS2_METATYPE_DI:
469 offset = sizeof(struct gfs2_dinode);
470 break;
471 default:
472 goto wrong_type;
473 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500474 return offset;
475wrong_type:
476 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500477 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500478 return -1;
479}
Steven Whitehousec7526662006-03-20 12:30:04 -0500480
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400481static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500482 unsigned int len, gfs2_dscan_t scan,
483 const struct qstr *name,
484 void *opaque)
485{
486 struct gfs2_dirent *dent, *prev;
487 unsigned offset;
488 unsigned size;
489 int ret = 0;
490
491 ret = gfs2_dirent_offset(buf);
492 if (ret < 0)
493 goto consist_inode;
494
495 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500496 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400497 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500498 size = be16_to_cpu(dent->de_rec_len);
499 if (gfs2_check_dirent(dent, offset, size, len, 1))
500 goto consist_inode;
501 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500502 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500503 if (ret)
504 break;
505 offset += size;
506 if (offset == len)
507 break;
508 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400509 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500510 size = be16_to_cpu(dent->de_rec_len);
511 if (gfs2_check_dirent(dent, offset, size, len, 0))
512 goto consist_inode;
513 } while(1);
514
515 switch(ret) {
516 case 0:
517 return NULL;
518 case 1:
519 return dent;
520 case 2:
521 return prev ? prev : dent;
522 default:
523 BUG_ON(ret > 0);
524 return ERR_PTR(ret);
525 }
526
Steven Whitehousec7526662006-03-20 12:30:04 -0500527consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400528 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500529 return ERR_PTR(-EIO);
530}
531
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400532static int dirent_check_reclen(struct gfs2_inode *dip,
533 const struct gfs2_dirent *d, const void *end_p)
534{
535 const void *ptr = d;
536 u16 rec_len = be16_to_cpu(d->de_rec_len);
537
538 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
539 goto broken;
540 ptr += rec_len;
541 if (ptr < end_p)
542 return rec_len;
543 if (ptr == end_p)
544 return -ENOENT;
545broken:
546 gfs2_consist_inode(dip);
547 return -EIO;
548}
549
David Teiglandb3b94fa2006-01-16 16:50:04 +0000550/**
551 * dirent_next - Next dirent
552 * @dip: the directory
553 * @bh: The buffer
554 * @dent: Pointer to list of dirents
555 *
556 * Returns: 0 on success, error code otherwise
557 */
558
559static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
560 struct gfs2_dirent **dent)
561{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400562 struct gfs2_dirent *cur = *dent, *tmp;
563 char *bh_end = bh->b_data + bh->b_size;
564 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400566 ret = dirent_check_reclen(dip, cur, bh_end);
567 if (ret < 0)
568 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000569
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400570 tmp = (void *)cur + ret;
571 ret = dirent_check_reclen(dip, tmp, bh_end);
572 if (ret == -EIO)
573 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000574
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500576 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 gfs2_consist_inode(dip);
578 return -EIO;
579 }
580
581 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582 return 0;
583}
584
585/**
586 * dirent_del - Delete a dirent
587 * @dip: The GFS2 inode
588 * @bh: The buffer
589 * @prev: The previous dirent
590 * @cur: The current dirent
591 *
592 */
593
594static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
595 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
596{
Steven Whitehousecd915492006-09-04 12:49:07 -0400597 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000598
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500599 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000600 gfs2_consist_inode(dip);
601 return;
602 }
603
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000604 gfs2_trans_add_bh(dip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605
606 /* If there is no prev entry, this is the first entry in the block.
607 The de_rec_len is already as big as it needs to be. Just zero
608 out the inode number and return. */
609
610 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500611 cur->de_inum.no_addr = 0;
612 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 return;
614 }
615
616 /* Combine this dentry with the previous one. */
617
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000618 prev_rec_len = be16_to_cpu(prev->de_rec_len);
619 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620
621 if ((char *)prev + prev_rec_len != (char *)cur)
622 gfs2_consist_inode(dip);
623 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
624 gfs2_consist_inode(dip);
625
626 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000627 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628}
629
Steven Whitehousec7526662006-03-20 12:30:04 -0500630/*
631 * Takes a dent from which to grab space as an argument. Returns the
632 * newly created dent.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633 */
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400634static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
635 struct gfs2_dirent *dent,
636 const struct qstr *name,
637 struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000638{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400639 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500640 struct gfs2_dirent *ndent;
641 unsigned offset = 0, totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500643 if (!gfs2_dirent_sentinel(dent))
Steven Whitehousec7526662006-03-20 12:30:04 -0500644 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
645 totlen = be16_to_cpu(dent->de_rec_len);
646 BUG_ON(offset + name->len > totlen);
647 gfs2_trans_add_bh(ip->i_gl, bh, 1);
648 ndent = (struct gfs2_dirent *)((char *)dent + offset);
649 dent->de_rec_len = cpu_to_be16(offset);
650 gfs2_qstr2dirent(name, totlen - offset, ndent);
651 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652}
653
Steven Whitehousec7526662006-03-20 12:30:04 -0500654static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
655 struct buffer_head *bh,
656 const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657{
658 struct gfs2_dirent *dent;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400659 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500660 gfs2_dirent_find_space, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500661 if (!dent || IS_ERR(dent))
662 return dent;
663 return gfs2_init_dirent(inode, dent, name, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664}
665
Steven Whitehousecd915492006-09-04 12:49:07 -0400666static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667 struct buffer_head **bhp)
668{
669 int error;
670
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400671 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400672 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
673 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400675 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000676
677 return error;
678}
679
680/**
681 * get_leaf_nr - Get a leaf number associated with the index
682 * @dip: The GFS2 inode
683 * @index:
684 * @leaf_out:
685 *
686 * Returns: 0 on success, error code otherwise
687 */
688
Steven Whitehousecd915492006-09-04 12:49:07 -0400689static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
690 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691{
Al Virob44b84d2006-10-14 10:46:30 -0400692 __be64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693 int error;
694
Steven Whitehousee13940b2006-01-30 13:31:50 +0000695 error = gfs2_dir_read_data(dip, (char *)&leaf_no,
Al Virob44b84d2006-10-14 10:46:30 -0400696 index * sizeof(__be64),
697 sizeof(__be64), 0);
Steven Whitehousecd915492006-09-04 12:49:07 -0400698 if (error != sizeof(u64))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699 return (error < 0) ? error : -EIO;
700
701 *leaf_out = be64_to_cpu(leaf_no);
702
703 return 0;
704}
705
Steven Whitehousecd915492006-09-04 12:49:07 -0400706static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707 struct buffer_head **bh_out)
708{
Steven Whitehousecd915492006-09-04 12:49:07 -0400709 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000710 int error;
711
712 error = get_leaf_nr(dip, index, &leaf_no);
713 if (!error)
714 error = get_leaf(dip, leaf_no, bh_out);
715
716 return error;
717}
718
Steven Whitehousec7526662006-03-20 12:30:04 -0500719static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
720 const struct qstr *name,
721 gfs2_dscan_t scan,
722 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723{
Steven Whitehousec7526662006-03-20 12:30:04 -0500724 struct buffer_head *bh;
725 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400726 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 int error;
728
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000729 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500730 struct gfs2_leaf *leaf;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000731 unsigned hsize = 1 << ip->i_depth;
Steven Whitehousec7526662006-03-20 12:30:04 -0500732 unsigned index;
733 u64 ln;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100734 if (hsize * sizeof(u64) != i_size_read(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500735 gfs2_consist_inode(ip);
736 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000737 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400738
Steven Whitehouse9a004502008-02-01 09:23:44 +0000739 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500740 error = get_first_leaf(ip, index, &bh);
741 if (error)
742 return ERR_PTR(error);
743 do {
744 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500745 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500746 if (dent)
747 goto got_dent;
748 leaf = (struct gfs2_leaf *)bh->b_data;
749 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400750 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500751 if (!ln)
752 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400753
Steven Whitehousec7526662006-03-20 12:30:04 -0500754 error = get_leaf(ip, ln, &bh);
755 } while(!error);
756
757 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000758 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000759
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400760
Steven Whitehousec7526662006-03-20 12:30:04 -0500761 error = gfs2_meta_inode_buffer(ip, &bh);
762 if (error)
763 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500764 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500765got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400766 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400767 brelse(bh);
768 bh = NULL;
769 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500770 *pbh = bh;
771 return dent;
772}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000773
Steven Whitehousec7526662006-03-20 12:30:04 -0500774static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
775{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400776 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000777 unsigned int n = 1;
Steven Whitehouse09010972009-05-20 10:48:47 +0100778 u64 bn;
779 int error;
780 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -0500781 struct gfs2_leaf *leaf;
782 struct gfs2_dirent *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500783 struct qstr name = { .name = "", .len = 0, .hash = 0 };
Steven Whitehouse09010972009-05-20 10:48:47 +0100784
785 error = gfs2_alloc_block(ip, &bn, &n);
786 if (error)
787 return NULL;
788 bh = gfs2_meta_new(ip->i_gl, bn);
Steven Whitehousec7526662006-03-20 12:30:04 -0500789 if (!bh)
790 return NULL;
Steven Whitehouse09010972009-05-20 10:48:47 +0100791
Steven Whitehouse5731be52008-02-01 13:16:55 +0000792 gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500793 gfs2_trans_add_bh(ip->i_gl, bh, 1);
794 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
795 leaf = (struct gfs2_leaf *)bh->b_data;
796 leaf->lf_depth = cpu_to_be16(depth);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400797 leaf->lf_entries = 0;
Al Viroa2d7d022006-10-14 16:49:30 +0100798 leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400799 leaf->lf_next = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500800 memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
801 dent = (struct gfs2_dirent *)(leaf+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500802 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500803 *pbh = bh;
804 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805}
806
807/**
808 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
809 * @dip: The GFS2 inode
810 *
811 * Returns: 0 on success, error code otherwise
812 */
813
Steven Whitehousec7526662006-03-20 12:30:04 -0500814static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000815{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400816 struct gfs2_inode *dip = GFS2_I(inode);
817 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500819 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 struct buffer_head *bh, *dibh;
821 struct gfs2_leaf *leaf;
822 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400823 u32 x;
Al Virob44b84d2006-10-14 10:46:30 -0400824 __be64 *lp;
825 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826 int error;
827
828 error = gfs2_meta_inode_buffer(dip, &dibh);
829 if (error)
830 return error;
831
David Teiglandb3b94fa2006-01-16 16:50:04 +0000832 /* Turn over a new leaf */
833
Steven Whitehousec7526662006-03-20 12:30:04 -0500834 leaf = new_leaf(inode, &bh, 0);
835 if (!leaf)
836 return -ENOSPC;
837 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000838
Steven Whitehousead6203f2008-11-03 13:59:19 +0000839 gfs2_assert(sdp, dip->i_entries < (1 << 16));
840 leaf->lf_entries = cpu_to_be16(dip->i_entries);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000841
842 /* Copy dirents */
843
844 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
845 sizeof(struct gfs2_dinode));
846
847 /* Find last entry */
848
849 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500850 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
851 sizeof(struct gfs2_leaf);
852 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400853 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500854 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500855 if (!dent) {
856 brelse(bh);
857 brelse(dibh);
858 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000859 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500860 if (IS_ERR(dent)) {
861 brelse(bh);
862 brelse(dibh);
863 return PTR_ERR(dent);
864 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000865
866 /* Adjust the last dirent's record length
867 (Remember that dent still points to the last entry.) */
868
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000869 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000870 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000871 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000872
873 brelse(bh);
874
875 /* We're done with the new leaf block, now setup the new
876 hash table. */
877
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000878 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
880
Al Virob44b84d2006-10-14 10:46:30 -0400881 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000882
883 for (x = sdp->sd_hash_ptrs; x--; lp++)
884 *lp = cpu_to_be64(bn);
885
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100886 i_size_write(inode, sdp->sd_sb.sb_bsize / 2);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000887 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000888 dip->i_diskflags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889
890 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000891 dip->i_depth = y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500893 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000894
895 brelse(dibh);
896
897 return 0;
898}
899
900/**
901 * dir_split_leaf - Split a leaf block into two
902 * @dip: The GFS2 inode
903 * @index:
904 * @leaf_no:
905 *
906 * Returns: 0 on success, error code on failure
907 */
908
Steven Whitehousec7526662006-03-20 12:30:04 -0500909static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400911 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912 struct buffer_head *nbh, *obh, *dibh;
913 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -0400914 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -0400915 u32 start, len, half_len, divider;
Al Virob44b84d2006-10-14 10:46:30 -0400916 u64 bn, leaf_no;
917 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -0400918 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 int x, moved = 0;
920 int error;
921
Steven Whitehouse9a004502008-02-01 09:23:44 +0000922 index = name->hash >> (32 - dip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500923 error = get_leaf_nr(dip, index, &leaf_no);
924 if (error)
925 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926
927 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 error = get_leaf(dip, leaf_no, &obh);
929 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500930 return error;
931
932 oleaf = (struct gfs2_leaf *)obh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000933 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500934 brelse(obh);
935 return 1; /* can't split */
936 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000938 gfs2_trans_add_bh(dip->i_gl, obh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000939
Steven Whitehousec7526662006-03-20 12:30:04 -0500940 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
941 if (!nleaf) {
942 brelse(obh);
943 return -ENOSPC;
944 }
945 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946
Steven Whitehousec7526662006-03-20 12:30:04 -0500947 /* Compute the start and len of leaf pointers in the hash table. */
Steven Whitehouse9a004502008-02-01 09:23:44 +0000948 len = 1 << (dip->i_depth - be16_to_cpu(oleaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 half_len = len >> 1;
950 if (!half_len) {
Steven Whitehouse9a004502008-02-01 09:23:44 +0000951 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 +0000952 gfs2_consist_inode(dip);
953 error = -EIO;
954 goto fail_brelse;
955 }
956
957 start = (index & ~(len - 1));
958
959 /* Change the pointers.
960 Don't bother distinguishing stuffed from non-stuffed.
961 This code is complicated enough already. */
David Rientjes4244b522010-07-20 19:45:03 -0700962 lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS);
963 if (!lp) {
964 error = -ENOMEM;
965 goto fail_brelse;
966 }
967
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 for (x = 0; x < half_len; x++)
970 lp[x] = cpu_to_be64(bn);
971
Steven Whitehousecd915492006-09-04 12:49:07 -0400972 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
973 half_len * sizeof(u64));
974 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000975 if (error >= 0)
976 error = -EIO;
977 goto fail_lpfree;
978 }
979
980 kfree(lp);
981
982 /* Compute the divider */
Steven Whitehouse9a004502008-02-01 09:23:44 +0000983 divider = (start + half_len) << (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984
985 /* Copy the entries */
Steven Whitehouse15793432009-11-06 11:06:37 +0000986 dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987
988 do {
989 next = dent;
990 if (dirent_next(dip, obh, &next))
991 next = NULL;
992
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500993 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +0000994 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500995 struct qstr str;
996 str.name = (char*)(dent+1);
997 str.len = be16_to_cpu(dent->de_name_len);
998 str.hash = be32_to_cpu(dent->de_hash);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500999 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001000 if (IS_ERR(new)) {
1001 error = PTR_ERR(new);
1002 break;
1003 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004
1005 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001006 new->de_type = dent->de_type; /* No endian worries */
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001007 be16_add_cpu(&nleaf->lf_entries, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008
1009 dirent_del(dip, obh, prev, dent);
1010
1011 if (!oleaf->lf_entries)
1012 gfs2_consist_inode(dip);
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001013 be16_add_cpu(&oleaf->lf_entries, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001014
1015 if (!prev)
1016 prev = dent;
1017
1018 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001019 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001020 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001021 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001022 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001023 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001024
Steven Whitehousec7526662006-03-20 12:30:04 -05001025 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026
1027 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001028 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
Steven Whitehouse382e6e22007-08-16 17:08:20 +01001029 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001030 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001031 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032 brelse(dibh);
1033 }
1034
1035 brelse(obh);
1036 brelse(nbh);
1037
1038 return error;
1039
Steven Whitehousee90deff2006-03-29 19:02:15 -05001040fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041 kfree(lp);
1042
Steven Whitehousee90deff2006-03-29 19:02:15 -05001043fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 brelse(nbh);
1046 return error;
1047}
1048
1049/**
1050 * dir_double_exhash - Double size of ExHash table
1051 * @dip: The GFS2 dinode
1052 *
1053 * Returns: 0 on success, error code on failure
1054 */
1055
1056static int dir_double_exhash(struct gfs2_inode *dip)
1057{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001058 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001059 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001060 u32 hsize;
1061 u64 *buf;
1062 u64 *from, *to;
1063 u64 block;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001064 u64 disksize = i_size_read(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065 int x;
1066 int error = 0;
1067
Steven Whitehouse9a004502008-02-01 09:23:44 +00001068 hsize = 1 << dip->i_depth;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001069 if (hsize * sizeof(u64) != disksize) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001070 gfs2_consist_inode(dip);
1071 return -EIO;
1072 }
1073
1074 /* Allocate both the "from" and "to" buffers in one big chunk */
1075
David Rientjes4244b522010-07-20 19:45:03 -07001076 buf = kcalloc(3, sdp->sd_hash_bsize, GFP_NOFS);
1077 if (!buf)
1078 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001079
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001080 for (block = disksize >> sdp->sd_hash_bsize_shift; block--;) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001081 error = gfs2_dir_read_data(dip, (char *)buf,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082 block * sdp->sd_hash_bsize,
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001083 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084 if (error != sdp->sd_hash_bsize) {
1085 if (error >= 0)
1086 error = -EIO;
1087 goto fail;
1088 }
1089
1090 from = buf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001091 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092
1093 for (x = sdp->sd_hash_ptrs; x--; from++) {
1094 *to++ = *from; /* No endianess worries */
1095 *to++ = *from;
1096 }
1097
Steven Whitehousee13940b2006-01-30 13:31:50 +00001098 error = gfs2_dir_write_data(dip,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001099 (char *)buf + sdp->sd_hash_bsize,
1100 block * sdp->sd_sb.sb_bsize,
1101 sdp->sd_sb.sb_bsize);
1102 if (error != sdp->sd_sb.sb_bsize) {
1103 if (error >= 0)
1104 error = -EIO;
1105 goto fail;
1106 }
1107 }
1108
1109 kfree(buf);
1110
1111 error = gfs2_meta_inode_buffer(dip, &dibh);
1112 if (!gfs2_assert_withdraw(sdp, !error)) {
Steven Whitehouse9a004502008-02-01 09:23:44 +00001113 dip->i_depth++;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001114 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115 brelse(dibh);
1116 }
1117
1118 return error;
1119
Steven Whitehousea91ea692006-09-04 12:04:26 -04001120fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121 kfree(buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001122 return error;
1123}
1124
1125/**
1126 * compare_dents - compare directory entries by hash value
1127 * @a: first dent
1128 * @b: second dent
1129 *
1130 * When comparing the hash entries of @a to @b:
1131 * gt: returns 1
1132 * lt: returns -1
1133 * eq: returns 0
1134 */
1135
1136static int compare_dents(const void *a, const void *b)
1137{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001138 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001139 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001140 int ret = 0;
1141
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001142 dent_a = *(const struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001143 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001144
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001145 dent_b = *(const struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001146 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001147
1148 if (hash_a > hash_b)
1149 ret = 1;
1150 else if (hash_a < hash_b)
1151 ret = -1;
1152 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001153 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1154 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155
1156 if (len_a > len_b)
1157 ret = 1;
1158 else if (len_a < len_b)
1159 ret = -1;
1160 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001161 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001162 }
1163
1164 return ret;
1165}
1166
1167/**
1168 * do_filldir_main - read out directory entries
1169 * @dip: The GFS2 inode
1170 * @offset: The offset in the file to read from
1171 * @opaque: opaque data to pass to filldir
1172 * @filldir: The function to pass entries to
1173 * @darr: an array of struct gfs2_dirent pointers to read
1174 * @entries: the number of entries in darr
1175 * @copied: pointer to int that's non-zero if a entry has been copied out
1176 *
1177 * Jump through some hoops to make sure that if there are hash collsions,
1178 * they are read out at the beginning of a buffer. We want to minimize
1179 * the possibility that they will fall into different readdir buffers or
1180 * that someone will want to seek to that location.
1181 *
1182 * Returns: errno, >0 on exception from filldir
1183 */
1184
Steven Whitehousecd915492006-09-04 12:49:07 -04001185static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001186 void *opaque, filldir_t filldir,
Steven Whitehousecd915492006-09-04 12:49:07 -04001187 const struct gfs2_dirent **darr, u32 entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 int *copied)
1189{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001190 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001191 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001192 unsigned int x, y;
1193 int run = 0;
1194 int error = 0;
1195
1196 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1197
1198 dent_next = darr[0];
1199 off_next = be32_to_cpu(dent_next->de_hash);
1200 off_next = gfs2_disk_hash2offset(off_next);
1201
1202 for (x = 0, y = 1; x < entries; x++, y++) {
1203 dent = dent_next;
1204 off = off_next;
1205
1206 if (y < entries) {
1207 dent_next = darr[y];
1208 off_next = be32_to_cpu(dent_next->de_hash);
1209 off_next = gfs2_disk_hash2offset(off_next);
1210
1211 if (off < *offset)
1212 continue;
1213 *offset = off;
1214
1215 if (off_next == off) {
1216 if (*copied && !run)
1217 return 1;
1218 run = 1;
1219 } else
1220 run = 0;
1221 } else {
1222 if (off < *offset)
1223 continue;
1224 *offset = off;
1225 }
1226
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001227 error = filldir(opaque, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001228 be16_to_cpu(dent->de_name_len),
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001229 off, be64_to_cpu(dent->de_inum.no_addr),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001230 be16_to_cpu(dent->de_type));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001231 if (error)
1232 return 1;
1233
1234 *copied = 1;
1235 }
1236
1237 /* Increment the *offset by one, so the next time we come into the
1238 do_filldir fxn, we get the next entry instead of the last one in the
1239 current leaf */
1240
1241 (*offset)++;
1242
1243 return 0;
1244}
1245
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001246static void *gfs2_alloc_sort_buffer(unsigned size)
1247{
1248 void *ptr = NULL;
1249
1250 if (size < KMALLOC_MAX_SIZE)
1251 ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN);
1252 if (!ptr)
1253 ptr = __vmalloc(size, GFP_NOFS, PAGE_KERNEL);
1254 return ptr;
1255}
1256
1257static void gfs2_free_sort_buffer(void *ptr)
1258{
1259 if (is_vmalloc_addr(ptr))
1260 vfree(ptr);
1261 else
1262 kfree(ptr);
1263}
1264
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001265static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001266 filldir_t filldir, int *copied, unsigned *depth,
1267 u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001268{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001269 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001270 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001271 struct buffer_head *bh;
1272 struct gfs2_leaf *lf;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001273 unsigned entries = 0, entries2 = 0;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001274 unsigned leaves = 0;
1275 const struct gfs2_dirent **darr, *dent;
1276 struct dirent_gather g;
1277 struct buffer_head **larr;
1278 int leaf = 0;
1279 int error, i;
1280 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001281
David Teiglandb3b94fa2006-01-16 16:50:04 +00001282 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001283 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001284 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001285 goto out;
1286 lf = (struct gfs2_leaf *)bh->b_data;
1287 if (leaves == 0)
1288 *depth = be16_to_cpu(lf->lf_depth);
1289 entries += be16_to_cpu(lf->lf_entries);
1290 leaves++;
1291 lfn = be64_to_cpu(lf->lf_next);
1292 brelse(bh);
1293 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001294
1295 if (!entries)
1296 return 0;
1297
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001298 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001299 /*
1300 * The extra 99 entries are not normally used, but are a buffer
1301 * zone in case the number of entries in the leaf is corrupt.
1302 * 99 is the maximum number of entries that can fit in a single
1303 * leaf block.
1304 */
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001305 larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001306 if (!larr)
1307 goto out;
1308 darr = (const struct gfs2_dirent **)(larr + leaves);
1309 g.pdent = darr;
1310 g.offset = 0;
1311 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001312
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001313 do {
1314 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001315 if (error)
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001316 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001317 lf = (struct gfs2_leaf *)bh->b_data;
1318 lfn = be64_to_cpu(lf->lf_next);
1319 if (lf->lf_entries) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001320 entries2 += be16_to_cpu(lf->lf_entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001321 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1322 gfs2_dirent_gather, NULL, &g);
1323 error = PTR_ERR(dent);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001324 if (IS_ERR(dent))
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001325 goto out_free;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001326 if (entries2 != g.offset) {
akpm@linux-foundation.orgf391a4e2007-04-25 21:08:02 -07001327 fs_warn(sdp, "Number of entries corrupt in dir "
1328 "leaf %llu, entries2 (%u) != "
1329 "g.offset (%u)\n",
1330 (unsigned long long)bh->b_blocknr,
1331 entries2, g.offset);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001332
1333 error = -EIO;
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001334 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001335 }
1336 error = 0;
1337 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001338 } else {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001339 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001340 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001341 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001342
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001343 BUG_ON(entries2 != entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001344 error = do_filldir_main(ip, offset, opaque, filldir, darr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001345 entries, copied);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001346out_free:
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001347 for(i = 0; i < leaf; i++)
1348 brelse(larr[i]);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001349 gfs2_free_sort_buffer(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001350out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001351 return error;
1352}
1353
1354/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001355 * dir_e_read - Reads the entries from a directory into a filldir buffer
1356 * @dip: dinode pointer
1357 * @offset: the hash of the last entry read shifted to the right once
1358 * @opaque: buffer for the filldir function to fill
1359 * @filldir: points to the filldir function to use
1360 *
1361 * Returns: errno
1362 */
1363
Steven Whitehousecd915492006-09-04 12:49:07 -04001364static int dir_e_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001365 filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001366{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001367 struct gfs2_inode *dip = GFS2_I(inode);
1368 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001369 u32 hsize, len = 0;
1370 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1371 u32 hash, index;
Al Virob44b84d2006-10-14 10:46:30 -04001372 __be64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001373 int copied = 0;
1374 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001375 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001376
Steven Whitehouse9a004502008-02-01 09:23:44 +00001377 hsize = 1 << dip->i_depth;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001378 if (hsize * sizeof(u64) != i_size_read(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001379 gfs2_consist_inode(dip);
1380 return -EIO;
1381 }
1382
1383 hash = gfs2_dir_offset2hash(*offset);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001384 index = hash >> (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001385
Josef Bacik16c5f062008-04-09 09:33:41 -04001386 lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001387 if (!lp)
1388 return -ENOMEM;
1389
1390 while (index < hsize) {
1391 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1392 ht_offset = index - lp_offset;
1393
1394 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001395 error = gfs2_dir_read_data(dip, (char *)lp,
Al Virob44b84d2006-10-14 10:46:30 -04001396 ht_offset * sizeof(__be64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001397 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001398 if (error != sdp->sd_hash_bsize) {
1399 if (error >= 0)
1400 error = -EIO;
1401 goto out;
1402 }
1403 ht_offset_cur = ht_offset;
1404 }
1405
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001406 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1407 &copied, &depth,
1408 be64_to_cpu(lp[lp_offset]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001409 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001410 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001411
Steven Whitehouse9a004502008-02-01 09:23:44 +00001412 len = 1 << (dip->i_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001413 index = (index & ~(len - 1)) + len;
1414 }
1415
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001416out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001417 kfree(lp);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001418 if (error > 0)
1419 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001420 return error;
1421}
1422
Steven Whitehousecd915492006-09-04 12:49:07 -04001423int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001424 filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001425{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001426 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001427 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001428 struct dirent_gather g;
1429 const struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001430 struct buffer_head *dibh;
1431 int copied = 0;
1432 int error;
1433
Steven Whitehousead6203f2008-11-03 13:59:19 +00001434 if (!dip->i_entries)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001435 return 0;
1436
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001437 if (dip->i_diskflags & GFS2_DIF_EXHASH)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001438 return dir_e_read(inode, offset, opaque, filldir);
1439
David Teiglandb3b94fa2006-01-16 16:50:04 +00001440 if (!gfs2_is_stuffed(dip)) {
1441 gfs2_consist_inode(dip);
1442 return -EIO;
1443 }
1444
David Teiglandb3b94fa2006-01-16 16:50:04 +00001445 error = gfs2_meta_inode_buffer(dip, &dibh);
1446 if (error)
1447 return error;
1448
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001449 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001450 /* 96 is max number of dirents which can be stuffed into an inode */
Josef Bacik16c5f062008-04-09 09:33:41 -04001451 darr = kmalloc(96 * sizeof(struct gfs2_dirent *), GFP_NOFS);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001452 if (darr) {
1453 g.pdent = darr;
1454 g.offset = 0;
1455 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1456 gfs2_dirent_gather, NULL, &g);
1457 if (IS_ERR(dent)) {
1458 error = PTR_ERR(dent);
1459 goto out;
1460 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001461 if (dip->i_entries != g.offset) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001462 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
Steven Whitehousead6203f2008-11-03 13:59:19 +00001463 "ip->i_entries (%u) != g.offset (%u)\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001464 (unsigned long long)dip->i_no_addr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001465 dip->i_entries,
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001466 g.offset);
1467 error = -EIO;
1468 goto out;
1469 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001470 error = do_filldir_main(dip, offset, opaque, filldir, darr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001471 dip->i_entries, &copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001472out:
1473 kfree(darr);
1474 }
1475
David Teiglandb3b94fa2006-01-16 16:50:04 +00001476 if (error > 0)
1477 error = 0;
1478
1479 brelse(dibh);
1480
1481 return error;
1482}
1483
David Teiglandb3b94fa2006-01-16 16:50:04 +00001484/**
1485 * gfs2_dir_search - Search a directory
1486 * @dip: The GFS2 inode
1487 * @filename:
1488 * @inode:
1489 *
1490 * This routine searches a directory for a file or another directory.
1491 * Assumes a glock is held on dip.
1492 *
1493 * Returns: errno
1494 */
1495
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001496struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001497{
Steven Whitehousec7526662006-03-20 12:30:04 -05001498 struct buffer_head *bh;
1499 struct gfs2_dirent *dent;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001500 struct inode *inode;
1501
1502 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1503 if (dent) {
1504 if (IS_ERR(dent))
David Howellse231c2e2008-02-07 00:15:26 -08001505 return ERR_CAST(dent);
Wendy Chengbb9bcf02007-06-27 17:07:08 -04001506 inode = gfs2_inode_lookup(dir->i_sb,
1507 be16_to_cpu(dent->de_type),
1508 be64_to_cpu(dent->de_inum.no_addr),
Bob Peterson1a0eae82010-04-14 11:58:16 -04001509 be64_to_cpu(dent->de_inum.no_formal_ino));
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001510 brelse(bh);
1511 return inode;
1512 }
1513 return ERR_PTR(-ENOENT);
1514}
1515
1516int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1517 const struct gfs2_inode *ip)
1518{
1519 struct buffer_head *bh;
1520 struct gfs2_dirent *dent;
1521 int ret = -ENOENT;
Steven Whitehousec7526662006-03-20 12:30:04 -05001522
1523 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1524 if (dent) {
1525 if (IS_ERR(dent))
1526 return PTR_ERR(dent);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001527 if (ip) {
1528 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1529 goto out;
1530 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1531 ip->i_no_formal_ino)
1532 goto out;
1533 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1534 be16_to_cpu(dent->de_type))) {
1535 gfs2_consist_inode(GFS2_I(dir));
1536 ret = -EIO;
1537 goto out;
1538 }
1539 }
1540 ret = 0;
1541out:
Steven Whitehousec7526662006-03-20 12:30:04 -05001542 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001543 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001544 return ret;
Steven Whitehousec7526662006-03-20 12:30:04 -05001545}
1546
1547static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1548{
1549 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001550 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001551 struct gfs2_leaf *leaf, *oleaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001552 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001553 u32 index;
1554 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001555
Steven Whitehouse9a004502008-02-01 09:23:44 +00001556 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001557 error = get_first_leaf(ip, index, &obh);
1558 if (error)
1559 return error;
1560 do {
1561 oleaf = (struct gfs2_leaf *)obh->b_data;
1562 bn = be64_to_cpu(oleaf->lf_next);
1563 if (!bn)
1564 break;
1565 brelse(obh);
1566 error = get_leaf(ip, bn, &obh);
1567 if (error)
1568 return error;
1569 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001570
Steven Whitehousec7526662006-03-20 12:30:04 -05001571 gfs2_trans_add_bh(ip->i_gl, obh, 1);
1572
1573 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1574 if (!leaf) {
1575 brelse(obh);
1576 return -ENOSPC;
1577 }
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001578 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001579 brelse(bh);
1580 brelse(obh);
1581
1582 error = gfs2_meta_inode_buffer(ip, &bh);
1583 if (error)
1584 return error;
1585 gfs2_trans_add_bh(ip->i_gl, bh, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001586 gfs2_add_inode_blocks(&ip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001587 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001588 brelse(bh);
1589 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001590}
1591
1592/**
1593 * gfs2_dir_add - Add new filename into directory
1594 * @dip: The GFS2 inode
1595 * @filename: The new name
1596 * @inode: The inode number of the entry
1597 * @type: The type of the entry
1598 *
1599 * Returns: 0 on success, error code on failure
1600 */
1601
Steven Whitehousec7526662006-03-20 12:30:04 -05001602int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001603 const struct gfs2_inode *nip, unsigned type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001604{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001605 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001606 struct buffer_head *bh;
1607 struct gfs2_dirent *dent;
1608 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001609 int error;
1610
Steven Whitehousec7526662006-03-20 12:30:04 -05001611 while(1) {
1612 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1613 &bh);
1614 if (dent) {
1615 if (IS_ERR(dent))
1616 return PTR_ERR(dent);
1617 dent = gfs2_init_dirent(inode, dent, name, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001618 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001619 dent->de_type = cpu_to_be16(type);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001620 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001621 leaf = (struct gfs2_leaf *)bh->b_data;
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001622 be16_add_cpu(&leaf->lf_entries, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -05001623 }
1624 brelse(bh);
1625 error = gfs2_meta_inode_buffer(ip, &bh);
1626 if (error)
1627 break;
1628 gfs2_trans_add_bh(ip->i_gl, bh, 1);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001629 ip->i_entries++;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001630 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001631 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001632 brelse(bh);
1633 error = 0;
1634 break;
1635 }
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001636 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001637 error = dir_make_exhash(inode);
1638 if (error)
1639 break;
1640 continue;
1641 }
1642 error = dir_split_leaf(inode, name);
1643 if (error == 0)
1644 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001645 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001646 break;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001647 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001648 error = dir_double_exhash(ip);
1649 if (error)
1650 break;
1651 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001652 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001653 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001654 if (error == 0)
1655 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001656 }
1657 error = dir_new_leaf(inode, name);
1658 if (!error)
1659 continue;
1660 error = -ENOSPC;
1661 break;
1662 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001663 return error;
1664}
1665
Steven Whitehousec7526662006-03-20 12:30:04 -05001666
David Teiglandb3b94fa2006-01-16 16:50:04 +00001667/**
1668 * gfs2_dir_del - Delete a directory entry
1669 * @dip: The GFS2 inode
1670 * @filename: The filename
1671 *
1672 * Returns: 0 on success, error code on failure
1673 */
1674
Steven Whitehousec7526662006-03-20 12:30:04 -05001675int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001676{
Steven Whitehousec7526662006-03-20 12:30:04 -05001677 struct gfs2_dirent *dent, *prev = NULL;
1678 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001679 int error;
1680
Steven Whitehousec7526662006-03-20 12:30:04 -05001681 /* Returns _either_ the entry (if its first in block) or the
1682 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001683 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001684 if (!dent) {
1685 gfs2_consist_inode(dip);
1686 return -EIO;
1687 }
1688 if (IS_ERR(dent)) {
1689 gfs2_consist_inode(dip);
1690 return PTR_ERR(dent);
1691 }
1692 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001693 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001694 prev = dent;
1695 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1696 }
1697
1698 dirent_del(dip, bh, prev, dent);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001699 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001700 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1701 u16 entries = be16_to_cpu(leaf->lf_entries);
1702 if (!entries)
1703 gfs2_consist_inode(dip);
1704 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehousec7526662006-03-20 12:30:04 -05001705 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001706 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001707
1708 error = gfs2_meta_inode_buffer(dip, &bh);
1709 if (error)
1710 return error;
1711
Steven Whitehousead6203f2008-11-03 13:59:19 +00001712 if (!dip->i_entries)
Steven Whitehousec7526662006-03-20 12:30:04 -05001713 gfs2_consist_inode(dip);
1714 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001715 dip->i_entries--;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001716 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001717 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001718 brelse(bh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001719 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001720
1721 return error;
1722}
1723
David Teiglandb3b94fa2006-01-16 16:50:04 +00001724/**
1725 * gfs2_dir_mvino - Change inode number of directory entry
1726 * @dip: The GFS2 inode
1727 * @filename:
1728 * @new_inode:
1729 *
1730 * This routine changes the inode number of a directory entry. It's used
1731 * by rename to change ".." when a directory is moved.
1732 * Assumes a glock is held on dvp.
1733 *
1734 * Returns: errno
1735 */
1736
Steven Whitehousec7526662006-03-20 12:30:04 -05001737int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001738 const struct gfs2_inode *nip, unsigned int new_type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001739{
Steven Whitehousec7526662006-03-20 12:30:04 -05001740 struct buffer_head *bh;
1741 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001742 int error;
1743
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001744 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001745 if (!dent) {
1746 gfs2_consist_inode(dip);
1747 return -EIO;
1748 }
1749 if (IS_ERR(dent))
1750 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001751
Steven Whitehousec7526662006-03-20 12:30:04 -05001752 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001753 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001754 dent->de_type = cpu_to_be16(new_type);
1755
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001756 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001757 brelse(bh);
1758 error = gfs2_meta_inode_buffer(dip, &bh);
1759 if (error)
1760 return error;
1761 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1762 }
1763
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001764 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001765 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001766 brelse(bh);
1767 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001768}
1769
1770/**
1771 * foreach_leaf - call a function for each leaf in a directory
1772 * @dip: the directory
1773 * @lc: the function to call for each each
1774 * @data: private data to pass to it
1775 *
1776 * Returns: errno
1777 */
1778
1779static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1780{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001781 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001782 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001783 struct gfs2_leaf *leaf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001784 u32 hsize, len;
1785 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1786 u32 index = 0;
Al Virob44b84d2006-10-14 10:46:30 -04001787 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -04001788 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001789 int error = 0;
1790
Steven Whitehouse9a004502008-02-01 09:23:44 +00001791 hsize = 1 << dip->i_depth;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001792 if (hsize * sizeof(u64) != i_size_read(&dip->i_inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001793 gfs2_consist_inode(dip);
1794 return -EIO;
1795 }
1796
Josef Bacik16c5f062008-04-09 09:33:41 -04001797 lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001798 if (!lp)
1799 return -ENOMEM;
1800
1801 while (index < hsize) {
1802 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1803 ht_offset = index - lp_offset;
1804
1805 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001806 error = gfs2_dir_read_data(dip, (char *)lp,
Al Virob44b84d2006-10-14 10:46:30 -04001807 ht_offset * sizeof(__be64),
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001808 sdp->sd_hash_bsize, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001809 if (error != sdp->sd_hash_bsize) {
1810 if (error >= 0)
1811 error = -EIO;
1812 goto out;
1813 }
1814 ht_offset_cur = ht_offset;
1815 }
1816
1817 leaf_no = be64_to_cpu(lp[lp_offset]);
1818 if (leaf_no) {
1819 error = get_leaf(dip, leaf_no, &bh);
1820 if (error)
1821 goto out;
Steven Whitehousec7526662006-03-20 12:30:04 -05001822 leaf = (struct gfs2_leaf *)bh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001823 len = 1 << (dip->i_depth - be16_to_cpu(leaf->lf_depth));
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001824 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001825
1826 error = lc(dip, index, len, leaf_no, data);
1827 if (error)
1828 goto out;
1829
1830 index = (index & ~(len - 1)) + len;
1831 } 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
1852 * @data: not used
1853 *
1854 * Returns: errno
1855 */
1856
Steven Whitehousecd915492006-09-04 12:49:07 -04001857static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
1858 u64 leaf_no, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001859{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001860 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001861 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001862 struct gfs2_rgrp_list rlist;
1863 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001864 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001865 unsigned int rg_blocks = 0, l_blocks = 0;
1866 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001867 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001868 int error;
1869
1870 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1871
Josef Bacik16c5f062008-04-09 09:33:41 -04001872 ht = kzalloc(size, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001873 if (!ht)
1874 return -ENOMEM;
1875
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001876 if (!gfs2_alloc_get(dip)) {
1877 error = -ENOMEM;
1878 goto out;
1879 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001880
1881 error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1882 if (error)
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001883 goto out_put;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001884
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001885 error = gfs2_rindex_hold(sdp, &dip->i_alloc->al_ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001886 if (error)
1887 goto out_qs;
1888
1889 /* Count the number of leaves */
1890
Steven Whitehousec7526662006-03-20 12:30:04 -05001891 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001892 error = get_leaf(dip, blk, &bh);
1893 if (error)
1894 goto out_rlist;
Steven Whitehousec7526662006-03-20 12:30:04 -05001895 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1896 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001897 brelse(bh);
1898
1899 gfs2_rlist_add(sdp, &rlist, blk);
1900 l_blocks++;
1901 }
1902
Bob Petersonfe6c9912008-01-28 11:13:02 -06001903 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001904
1905 for (x = 0; x < rlist.rl_rgrps; x++) {
1906 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001907 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001908 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001909 }
1910
1911 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1912 if (error)
1913 goto out_rlist;
1914
1915 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001916 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001917 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1918 if (error)
1919 goto out_rg_gunlock;
1920
Steven Whitehousec7526662006-03-20 12:30:04 -05001921 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001922 error = get_leaf(dip, blk, &bh);
1923 if (error)
1924 goto out_end_trans;
Steven Whitehousec7526662006-03-20 12:30:04 -05001925 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1926 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001927 brelse(bh);
1928
1929 gfs2_free_meta(dip, blk, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001930 gfs2_add_inode_blocks(&dip->i_inode, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001931 }
1932
Steven Whitehousecd915492006-09-04 12:49:07 -04001933 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001934 if (error != size) {
1935 if (error >= 0)
1936 error = -EIO;
1937 goto out_end_trans;
1938 }
1939
1940 error = gfs2_meta_inode_buffer(dip, &dibh);
1941 if (error)
1942 goto out_end_trans;
1943
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001944 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001945 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001946 brelse(dibh);
1947
Steven Whitehousea91ea692006-09-04 12:04:26 -04001948out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001949 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001950out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001951 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001952out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001953 gfs2_rlist_free(&rlist);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001954 gfs2_glock_dq_uninit(&dip->i_alloc->al_ri_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001955out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001956 gfs2_quota_unhold(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001957out_put:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001958 gfs2_alloc_put(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001959out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001960 kfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001961 return error;
1962}
1963
1964/**
1965 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1966 * @dip: the directory
1967 *
1968 * Dealloc all on-disk directory leaves to FREEMETA state
1969 * Change on-disk inode type to "regular file"
1970 *
1971 * Returns: errno
1972 */
1973
1974int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1975{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001976 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001977 struct buffer_head *bh;
1978 int error;
1979
1980 /* Dealloc on-disk leaves to FREEMETA state */
1981 error = foreach_leaf(dip, leaf_dealloc, NULL);
1982 if (error)
1983 return error;
1984
1985 /* Make this a regular file in case we crash.
1986 (We don't want to free these blocks a second time.) */
1987
1988 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1989 if (error)
1990 return error;
1991
1992 error = gfs2_meta_inode_buffer(dip, &bh);
1993 if (!error) {
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001994 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001995 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1996 cpu_to_be32(S_IFREG);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001997 brelse(bh);
1998 }
1999
2000 gfs2_trans_end(sdp);
2001
2002 return error;
2003}
2004
2005/**
2006 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
2007 * @ip: the file being written to
2008 * @filname: the filename that's going to be added
David Teiglandb3b94fa2006-01-16 16:50:04 +00002009 *
Steven Whitehousec7526662006-03-20 12:30:04 -05002010 * Returns: 1 if alloc required, 0 if not, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00002011 */
2012
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04002013int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002014{
Steven Whitehousec7526662006-03-20 12:30:04 -05002015 struct gfs2_dirent *dent;
2016 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002017
Steven Whitehousec7526662006-03-20 12:30:04 -05002018 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04002019 if (!dent) {
Steven Whitehousec7526662006-03-20 12:30:04 -05002020 return 1;
Steven Whitehouseed386502006-04-07 16:28:07 -04002021 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002022 if (IS_ERR(dent))
2023 return PTR_ERR(dent);
2024 brelse(bh);
2025 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002026}
2027