blob: d74a52bda540510af1f6552fd2dfa4397e0ea479 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10/*
Steven Whitehouse61e085a2006-04-24 10:07:13 -040011 * Implements Extendible Hashing as described in:
12 * "Extendible Hashing" by Fagin, et al in
13 * __ACM Trans. on Database Systems__, Sept 1979.
14 *
15 *
16 * Here's the layout of dirents which is essentially the same as that of ext2
17 * within a single block. The field de_name_len is the number of bytes
18 * actually required for the name (no null terminator). The field de_rec_len
19 * is the number of bytes allocated to the dirent. The offset of the next
20 * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is
21 * deleted, the preceding dirent inherits its allocated space, ie
22 * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained
23 * by adding de_rec_len to the current dirent, this essentially causes the
24 * deleted dirent to get jumped over when iterating through all the dirents.
25 *
26 * When deleting the first dirent in a block, there is no previous dirent so
27 * the field de_ino is set to zero to designate it as deleted. When allocating
28 * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the
29 * first dirent has (de_ino == 0) and de_rec_len is large enough, this first
30 * dirent is allocated. Otherwise it must go through all the 'used' dirents
31 * searching for one in which the amount of total space minus the amount of
32 * used space will provide enough space for the new dirent.
33 *
34 * There are two types of blocks in which dirents reside. In a stuffed dinode,
35 * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of
36 * the block. In leaves, they begin at offset sizeof(struct gfs2_leaf) from the
37 * beginning of the leaf block. The dirents reside in leaves when
38 *
39 * dip->i_di.di_flags & GFS2_DIF_EXHASH is true
40 *
41 * Otherwise, the dirents are "linear", within a single stuffed dinode block.
42 *
43 * When the dirents are in leaves, the actual contents of the directory file are
44 * used as an array of 64-bit block pointers pointing to the leaf blocks. The
45 * dirents are NOT in the directory file itself. There can be more than one
46 * block pointer in the array that points to the same leaf. In fact, when a
47 * directory is first converted from linear to exhash, all of the pointers
48 * point to the same leaf.
49 *
50 * When a leaf is completely full, the size of the hash table can be
51 * doubled unless it is already at the maximum size which is hard coded into
52 * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list,
53 * but never before the maximum hash table size has been reached.
54 */
David Teiglandb3b94fa2006-01-16 16:50:04 +000055
56#include <linux/sched.h>
57#include <linux/slab.h>
58#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000059#include <linux/buffer_head.h>
60#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050061#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050062#include <linux/crc32.h>
Steven Whitehousefe1bded2006-04-18 10:09:15 -040063#include <linux/vmalloc.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000064
65#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050066#include "lm_interface.h"
67#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000068#include "dir.h"
69#include "glock.h"
70#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000071#include "meta_io.h"
72#include "quota.h"
73#include "rgrp.h"
74#include "trans.h"
Steven Whitehousee13940b2006-01-30 13:31:50 +000075#include "bmap.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050076#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000077
78#define IS_LEAF 1 /* Hashed (leaf) directory */
79#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
80
Steven Whitehousecd915492006-09-04 12:49:07 -040081#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
82#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
David Teiglandb3b94fa2006-01-16 16:50:04 +000083
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040084typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len,
85 u64 leaf_no, void *data);
86typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
87 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000088
Steven Whitehouse61e085a2006-04-24 10:07:13 -040089
Steven Whitehousecd915492006-09-04 12:49:07 -040090int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040091 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000092{
93 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000094
Steven Whitehouse61e085a2006-04-24 10:07:13 -040095 bh = gfs2_meta_new(ip->i_gl, block);
96 gfs2_trans_add_bh(ip->i_gl, bh, 1);
97 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
98 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +000099 *bhp = bh;
100 return 0;
101}
102
Steven Whitehousecd915492006-09-04 12:49:07 -0400103static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400104 struct buffer_head **bhp)
105{
106 struct buffer_head *bh;
107 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000108
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400109 error = gfs2_meta_read(ip->i_gl, block, DIO_START | DIO_WAIT, &bh);
110 if (error)
111 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400112 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400113 brelse(bh);
114 return -EIO;
115 }
116 *bhp = bh;
117 return 0;
118}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000119
120static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
121 unsigned int offset, unsigned int size)
122
123{
124 struct buffer_head *dibh;
125 int error;
126
127 error = gfs2_meta_inode_buffer(ip, &dibh);
128 if (error)
129 return error;
130
131 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500132 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000133 if (ip->i_di.di_size < offset + size)
134 ip->i_di.di_size = offset + size;
135 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
136 gfs2_dinode_out(&ip->i_di, dibh->b_data);
137
138 brelse(dibh);
139
140 return size;
141}
142
143
144
145/**
146 * gfs2_dir_write_data - Write directory information to the inode
147 * @ip: The GFS2 inode
148 * @buf: The buffer containing information to be written
149 * @offset: The file offset to start writing at
150 * @size: The amount of data to write
151 *
152 * Returns: The number of bytes correctly written or error code
153 */
154static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400155 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000156{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400157 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000158 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400159 u64 lblock, dblock;
160 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000161 unsigned int o;
162 int copied = 0;
163 int error = 0;
164
165 if (!size)
166 return 0;
167
168 if (gfs2_is_stuffed(ip) &&
169 offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500170 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
171 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000172
173 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
174 return -EINVAL;
175
176 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400177 error = gfs2_unstuff_dinode(ip, NULL);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000178 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500179 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000180 }
181
182 lblock = offset;
183 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
184
185 while (copied < size) {
186 unsigned int amount;
187 struct buffer_head *bh;
188 int new;
189
190 amount = size - copied;
191 if (amount > sdp->sd_sb.sb_bsize - o)
192 amount = sdp->sd_sb.sb_bsize - o;
193
194 if (!extlen) {
195 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400196 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400197 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000198 if (error)
199 goto fail;
200 error = -EIO;
201 if (gfs2_assert_withdraw(sdp, dblock))
202 goto fail;
203 }
204
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400205 if (amount == sdp->sd_jbsize || new)
206 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
207 else
208 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
209
Steven Whitehousee13940b2006-01-30 13:31:50 +0000210 if (error)
211 goto fail;
212
213 gfs2_trans_add_bh(ip->i_gl, bh, 1);
214 memcpy(bh->b_data + o, buf, amount);
215 brelse(bh);
216 if (error)
217 goto fail;
218
Steven Whitehouse899bb262006-08-01 15:28:57 -0400219 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000220 copied += amount;
221 lblock++;
222 dblock++;
223 extlen--;
224
225 o = sizeof(struct gfs2_meta_header);
226 }
227
228out:
229 error = gfs2_meta_inode_buffer(ip, &dibh);
230 if (error)
231 return error;
232
233 if (ip->i_di.di_size < offset + copied)
234 ip->i_di.di_size = offset + copied;
235 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
236
237 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
238 gfs2_dinode_out(&ip->i_di, dibh->b_data);
239 brelse(dibh);
240
241 return copied;
242fail:
243 if (copied)
244 goto out;
245 return error;
246}
247
248static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
Steven Whitehousec7526662006-03-20 12:30:04 -0500249 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000250{
251 struct buffer_head *dibh;
252 int error;
253
254 error = gfs2_meta_inode_buffer(ip, &dibh);
255 if (!error) {
256 offset += sizeof(struct gfs2_dinode);
257 memcpy(buf, dibh->b_data + offset, size);
258 brelse(dibh);
259 }
260
261 return (error) ? error : size;
262}
263
264
265/**
266 * gfs2_dir_read_data - Read a data from a directory inode
267 * @ip: The GFS2 Inode
268 * @buf: The buffer to place result into
269 * @offset: File offset to begin jdata_readng from
270 * @size: Amount of data to transfer
271 *
272 * Returns: The amount of data actually copied or the error
273 */
274static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400275 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000276{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400277 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400278 u64 lblock, dblock;
279 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000280 unsigned int o;
281 int copied = 0;
282 int error = 0;
283
284 if (offset >= ip->i_di.di_size)
285 return 0;
286
287 if ((offset + size) > ip->i_di.di_size)
288 size = ip->i_di.di_size - offset;
289
290 if (!size)
291 return 0;
292
293 if (gfs2_is_stuffed(ip))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500294 return gfs2_dir_read_stuffed(ip, buf, (unsigned int)offset,
295 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000296
297 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
298 return -EINVAL;
299
300 lblock = offset;
301 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
302
303 while (copied < size) {
304 unsigned int amount;
305 struct buffer_head *bh;
306 int new;
307
308 amount = size - copied;
309 if (amount > sdp->sd_sb.sb_bsize - o)
310 amount = sdp->sd_sb.sb_bsize - o;
311
312 if (!extlen) {
313 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400314 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400315 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000316 if (error)
317 goto fail;
318 }
319
320 if (extlen > 1)
321 gfs2_meta_ra(ip->i_gl, dblock, extlen);
322
323 if (dblock) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400324 if (new)
325 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
326 else
327 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000328 if (error)
329 goto fail;
330 dblock++;
331 extlen--;
332 } else
333 bh = NULL;
334
335 memcpy(buf, bh->b_data + o, amount);
336 brelse(bh);
337 if (error)
338 goto fail;
339
Steven Whitehouse899bb262006-08-01 15:28:57 -0400340 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000341 copied += amount;
342 lblock++;
343
344 o = sizeof(struct gfs2_meta_header);
345 }
346
347 return copied;
348fail:
349 return (copied) ? copied : error;
350}
351
Steven Whitehousec7526662006-03-20 12:30:04 -0500352static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
353 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000354{
Steven Whitehousec7526662006-03-20 12:30:04 -0500355 if (dent->de_inum.no_addr != 0 &&
356 be32_to_cpu(dent->de_hash) == name->hash &&
357 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400358 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500359 return ret;
360 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000361}
362
Steven Whitehousec7526662006-03-20 12:30:04 -0500363static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500364 const struct qstr *name,
365 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500366{
367 return __gfs2_dirent_find(dent, name, 1);
368}
369
370static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500371 const struct qstr *name,
372 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500373{
374 return __gfs2_dirent_find(dent, name, 2);
375}
376
377/*
378 * name->name holds ptr to start of block.
379 * name->len holds size of block.
380 */
381static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500382 const struct qstr *name,
383 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500384{
385 const char *start = name->name;
386 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
387 if (name->len == (end - start))
388 return 1;
389 return 0;
390}
391
392static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500393 const struct qstr *name,
394 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500395{
396 unsigned required = GFS2_DIRENT_SIZE(name->len);
397 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
398 unsigned totlen = be16_to_cpu(dent->de_rec_len);
399
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500400 if (!dent->de_inum.no_addr)
401 actual = GFS2_DIRENT_SIZE(0);
Steven Whitehousec7526662006-03-20 12:30:04 -0500402 if ((totlen - actual) >= required)
403 return 1;
404 return 0;
405}
406
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500407struct dirent_gather {
408 const struct gfs2_dirent **pdent;
409 unsigned offset;
410};
411
412static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
413 const struct qstr *name,
414 void *opaque)
415{
416 struct dirent_gather *g = opaque;
417 if (dent->de_inum.no_addr) {
418 g->pdent[g->offset++] = dent;
419 }
420 return 0;
421}
422
Steven Whitehousec7526662006-03-20 12:30:04 -0500423/*
424 * Other possible things to check:
425 * - Inode located within filesystem size (and on valid block)
426 * - Valid directory entry type
427 * Not sure how heavy-weight we want to make this... could also check
428 * hash is correct for example, but that would take a lot of extra time.
429 * For now the most important thing is to check that the various sizes
430 * are correct.
431 */
432static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
433 unsigned int size, unsigned int len, int first)
434{
435 const char *msg = "gfs2_dirent too small";
436 if (unlikely(size < sizeof(struct gfs2_dirent)))
437 goto error;
438 msg = "gfs2_dirent misaligned";
439 if (unlikely(offset & 0x7))
440 goto error;
441 msg = "gfs2_dirent points beyond end of block";
442 if (unlikely(offset + size > len))
443 goto error;
444 msg = "zero inode number";
445 if (unlikely(!first && !dent->de_inum.no_addr))
446 goto error;
447 msg = "name length is greater than space in dirent";
448 if (dent->de_inum.no_addr &&
449 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
450 size))
451 goto error;
452 return 0;
453error:
454 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
455 first ? "first in block" : "not first in block");
456 return -EIO;
457}
458
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500459static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500460{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500461 const struct gfs2_meta_header *h = buf;
462 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500463
464 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500465
Steven Whitehousee3167de2006-03-30 15:46:23 -0500466 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500467 case GFS2_METATYPE_LF:
468 offset = sizeof(struct gfs2_leaf);
469 break;
470 case GFS2_METATYPE_DI:
471 offset = sizeof(struct gfs2_dinode);
472 break;
473 default:
474 goto wrong_type;
475 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500476 return offset;
477wrong_type:
478 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500479 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500480 return -1;
481}
Steven Whitehousec7526662006-03-20 12:30:04 -0500482
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400483static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500484 unsigned int len, gfs2_dscan_t scan,
485 const struct qstr *name,
486 void *opaque)
487{
488 struct gfs2_dirent *dent, *prev;
489 unsigned offset;
490 unsigned size;
491 int ret = 0;
492
493 ret = gfs2_dirent_offset(buf);
494 if (ret < 0)
495 goto consist_inode;
496
497 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500498 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400499 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500500 size = be16_to_cpu(dent->de_rec_len);
501 if (gfs2_check_dirent(dent, offset, size, len, 1))
502 goto consist_inode;
503 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500504 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500505 if (ret)
506 break;
507 offset += size;
508 if (offset == len)
509 break;
510 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400511 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500512 size = be16_to_cpu(dent->de_rec_len);
513 if (gfs2_check_dirent(dent, offset, size, len, 0))
514 goto consist_inode;
515 } while(1);
516
517 switch(ret) {
518 case 0:
519 return NULL;
520 case 1:
521 return dent;
522 case 2:
523 return prev ? prev : dent;
524 default:
525 BUG_ON(ret > 0);
526 return ERR_PTR(ret);
527 }
528
Steven Whitehousec7526662006-03-20 12:30:04 -0500529consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400530 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500531 return ERR_PTR(-EIO);
532}
533
534
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535/**
536 * dirent_first - Return the first dirent
537 * @dip: the directory
538 * @bh: The buffer
539 * @dent: Pointer to list of dirents
540 *
541 * return first dirent whether bh points to leaf or stuffed dinode
542 *
543 * Returns: IS_LEAF, IS_DINODE, or -errno
544 */
545
546static int dirent_first(struct gfs2_inode *dip, struct buffer_head *bh,
547 struct gfs2_dirent **dent)
548{
549 struct gfs2_meta_header *h = (struct gfs2_meta_header *)bh->b_data;
550
Steven Whitehousee3167de2006-03-30 15:46:23 -0500551 if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400552 if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000553 return -EIO;
554 *dent = (struct gfs2_dirent *)(bh->b_data +
555 sizeof(struct gfs2_leaf));
556 return IS_LEAF;
557 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400558 if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 return -EIO;
560 *dent = (struct gfs2_dirent *)(bh->b_data +
561 sizeof(struct gfs2_dinode));
562 return IS_DINODE;
563 }
564}
565
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400566static int dirent_check_reclen(struct gfs2_inode *dip,
567 const struct gfs2_dirent *d, const void *end_p)
568{
569 const void *ptr = d;
570 u16 rec_len = be16_to_cpu(d->de_rec_len);
571
572 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
573 goto broken;
574 ptr += rec_len;
575 if (ptr < end_p)
576 return rec_len;
577 if (ptr == end_p)
578 return -ENOENT;
579broken:
580 gfs2_consist_inode(dip);
581 return -EIO;
582}
583
David Teiglandb3b94fa2006-01-16 16:50:04 +0000584/**
585 * dirent_next - Next dirent
586 * @dip: the directory
587 * @bh: The buffer
588 * @dent: Pointer to list of dirents
589 *
590 * Returns: 0 on success, error code otherwise
591 */
592
593static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
594 struct gfs2_dirent **dent)
595{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400596 struct gfs2_dirent *cur = *dent, *tmp;
597 char *bh_end = bh->b_data + bh->b_size;
598 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400600 ret = dirent_check_reclen(dip, cur, bh_end);
601 if (ret < 0)
602 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400604 tmp = (void *)cur + ret;
605 ret = dirent_check_reclen(dip, tmp, bh_end);
606 if (ret == -EIO)
607 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000608
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609 /* Only the first dent could ever have de_inum.no_addr == 0 */
610 if (!tmp->de_inum.no_addr) {
611 gfs2_consist_inode(dip);
612 return -EIO;
613 }
614
615 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000616 return 0;
617}
618
619/**
620 * dirent_del - Delete a dirent
621 * @dip: The GFS2 inode
622 * @bh: The buffer
623 * @prev: The previous dirent
624 * @cur: The current dirent
625 *
626 */
627
628static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
629 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
630{
Steven Whitehousecd915492006-09-04 12:49:07 -0400631 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632
633 if (!cur->de_inum.no_addr) {
634 gfs2_consist_inode(dip);
635 return;
636 }
637
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000638 gfs2_trans_add_bh(dip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639
640 /* If there is no prev entry, this is the first entry in the block.
641 The de_rec_len is already as big as it needs to be. Just zero
642 out the inode number and return. */
643
644 if (!prev) {
645 cur->de_inum.no_addr = 0; /* No endianess worries */
646 return;
647 }
648
649 /* Combine this dentry with the previous one. */
650
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000651 prev_rec_len = be16_to_cpu(prev->de_rec_len);
652 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000653
654 if ((char *)prev + prev_rec_len != (char *)cur)
655 gfs2_consist_inode(dip);
656 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
657 gfs2_consist_inode(dip);
658
659 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000660 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661}
662
Steven Whitehousec7526662006-03-20 12:30:04 -0500663/*
664 * Takes a dent from which to grab space as an argument. Returns the
665 * newly created dent.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666 */
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400667static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
668 struct gfs2_dirent *dent,
669 const struct qstr *name,
670 struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400672 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500673 struct gfs2_dirent *ndent;
674 unsigned offset = 0, totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675
Steven Whitehousec7526662006-03-20 12:30:04 -0500676 if (dent->de_inum.no_addr)
677 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
678 totlen = be16_to_cpu(dent->de_rec_len);
679 BUG_ON(offset + name->len > totlen);
680 gfs2_trans_add_bh(ip->i_gl, bh, 1);
681 ndent = (struct gfs2_dirent *)((char *)dent + offset);
682 dent->de_rec_len = cpu_to_be16(offset);
683 gfs2_qstr2dirent(name, totlen - offset, ndent);
684 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000685}
686
Steven Whitehousec7526662006-03-20 12:30:04 -0500687static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
688 struct buffer_head *bh,
689 const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000690{
691 struct gfs2_dirent *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500692 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
693 gfs2_dirent_find_space, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500694 if (!dent || IS_ERR(dent))
695 return dent;
696 return gfs2_init_dirent(inode, dent, name, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000697}
698
Steven Whitehousecd915492006-09-04 12:49:07 -0400699static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000700 struct buffer_head **bhp)
701{
702 int error;
703
704 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_START | DIO_WAIT, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400705 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
706 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400708 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000709
710 return error;
711}
712
713/**
714 * get_leaf_nr - Get a leaf number associated with the index
715 * @dip: The GFS2 inode
716 * @index:
717 * @leaf_out:
718 *
719 * Returns: 0 on success, error code otherwise
720 */
721
Steven Whitehousecd915492006-09-04 12:49:07 -0400722static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
723 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724{
Steven Whitehousecd915492006-09-04 12:49:07 -0400725 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000726 int error;
727
Steven Whitehousee13940b2006-01-30 13:31:50 +0000728 error = gfs2_dir_read_data(dip, (char *)&leaf_no,
Steven Whitehousecd915492006-09-04 12:49:07 -0400729 index * sizeof(u64),
730 sizeof(u64));
731 if (error != sizeof(u64))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732 return (error < 0) ? error : -EIO;
733
734 *leaf_out = be64_to_cpu(leaf_no);
735
736 return 0;
737}
738
Steven Whitehousecd915492006-09-04 12:49:07 -0400739static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000740 struct buffer_head **bh_out)
741{
Steven Whitehousecd915492006-09-04 12:49:07 -0400742 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000743 int error;
744
745 error = get_leaf_nr(dip, index, &leaf_no);
746 if (!error)
747 error = get_leaf(dip, leaf_no, bh_out);
748
749 return error;
750}
751
Steven Whitehousec7526662006-03-20 12:30:04 -0500752static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
753 const struct qstr *name,
754 gfs2_dscan_t scan,
755 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756{
Steven Whitehousec7526662006-03-20 12:30:04 -0500757 struct buffer_head *bh;
758 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400759 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 int error;
761
Steven Whitehousec7526662006-03-20 12:30:04 -0500762 if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
763 struct gfs2_leaf *leaf;
764 unsigned hsize = 1 << ip->i_di.di_depth;
765 unsigned index;
766 u64 ln;
767 if (hsize * sizeof(u64) != ip->i_di.di_size) {
768 gfs2_consist_inode(ip);
769 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000770 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400771
Steven Whitehousec7526662006-03-20 12:30:04 -0500772 index = name->hash >> (32 - ip->i_di.di_depth);
773 error = get_first_leaf(ip, index, &bh);
774 if (error)
775 return ERR_PTR(error);
776 do {
777 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500778 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500779 if (dent)
780 goto got_dent;
781 leaf = (struct gfs2_leaf *)bh->b_data;
782 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400783 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500784 if (!ln)
785 break;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400786
Steven Whitehousec7526662006-03-20 12:30:04 -0500787 error = get_leaf(ip, ln, &bh);
788 } while(!error);
789
790 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400793
Steven Whitehousec7526662006-03-20 12:30:04 -0500794 error = gfs2_meta_inode_buffer(ip, &bh);
795 if (error)
796 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500797 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500798got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400799 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400800 brelse(bh);
801 bh = NULL;
802 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500803 *pbh = bh;
804 return dent;
805}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806
Steven Whitehousec7526662006-03-20 12:30:04 -0500807static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
808{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400809 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500810 u64 bn = gfs2_alloc_meta(ip);
811 struct buffer_head *bh = gfs2_meta_new(ip->i_gl, bn);
812 struct gfs2_leaf *leaf;
813 struct gfs2_dirent *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500814 struct qstr name = { .name = "", .len = 0, .hash = 0 };
Steven Whitehousec7526662006-03-20 12:30:04 -0500815 if (!bh)
816 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400817
Steven Whitehousec7526662006-03-20 12:30:04 -0500818 gfs2_trans_add_bh(ip->i_gl, bh, 1);
819 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
820 leaf = (struct gfs2_leaf *)bh->b_data;
821 leaf->lf_depth = cpu_to_be16(depth);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400822 leaf->lf_entries = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500823 leaf->lf_dirent_format = cpu_to_be16(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400824 leaf->lf_next = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500825 memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
826 dent = (struct gfs2_dirent *)(leaf+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500827 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500828 *pbh = bh;
829 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830}
831
832/**
833 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
834 * @dip: The GFS2 inode
835 *
836 * Returns: 0 on success, error code otherwise
837 */
838
Steven Whitehousec7526662006-03-20 12:30:04 -0500839static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400841 struct gfs2_inode *dip = GFS2_I(inode);
842 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000843 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500844 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845 struct buffer_head *bh, *dibh;
846 struct gfs2_leaf *leaf;
847 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400848 u32 x;
849 u64 *lp, bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850 int error;
851
852 error = gfs2_meta_inode_buffer(dip, &dibh);
853 if (error)
854 return error;
855
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 /* Turn over a new leaf */
857
Steven Whitehousec7526662006-03-20 12:30:04 -0500858 leaf = new_leaf(inode, &bh, 0);
859 if (!leaf)
860 return -ENOSPC;
861 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000862
863 gfs2_assert(sdp, dip->i_di.di_entries < (1 << 16));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000864 leaf->lf_entries = cpu_to_be16(dip->i_di.di_entries);
865
866 /* Copy dirents */
867
868 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
869 sizeof(struct gfs2_dinode));
870
871 /* Find last entry */
872
873 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500874 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
875 sizeof(struct gfs2_leaf);
876 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400877 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500878 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500879 if (!dent) {
880 brelse(bh);
881 brelse(dibh);
882 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000883 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500884 if (IS_ERR(dent)) {
885 brelse(bh);
886 brelse(dibh);
887 return PTR_ERR(dent);
888 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889
890 /* Adjust the last dirent's record length
891 (Remember that dent still points to the last entry.) */
892
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000893 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000894 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000895 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896
897 brelse(bh);
898
899 /* We're done with the new leaf block, now setup the new
900 hash table. */
901
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000902 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000903 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
904
Steven Whitehousecd915492006-09-04 12:49:07 -0400905 lp = (u64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906
907 for (x = sdp->sd_hash_ptrs; x--; lp++)
908 *lp = cpu_to_be64(bn);
909
910 dip->i_di.di_size = sdp->sd_sb.sb_bsize / 2;
911 dip->i_di.di_blocks++;
912 dip->i_di.di_flags |= GFS2_DIF_EXHASH;
913 dip->i_di.di_payload_format = 0;
914
915 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
916 dip->i_di.di_depth = y;
917
918 gfs2_dinode_out(&dip->i_di, dibh->b_data);
919
920 brelse(dibh);
921
922 return 0;
923}
924
925/**
926 * dir_split_leaf - Split a leaf block into two
927 * @dip: The GFS2 inode
928 * @index:
929 * @leaf_no:
930 *
931 * Returns: 0 on success, error code on failure
932 */
933
Steven Whitehousec7526662006-03-20 12:30:04 -0500934static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400936 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937 struct buffer_head *nbh, *obh, *dibh;
938 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -0400939 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -0400940 u32 start, len, half_len, divider;
941 u64 bn, *lp, leaf_no;
942 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943 int x, moved = 0;
944 int error;
945
Steven Whitehousec7526662006-03-20 12:30:04 -0500946 index = name->hash >> (32 - dip->i_di.di_depth);
947 error = get_leaf_nr(dip, index, &leaf_no);
948 if (error)
949 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000950
951 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952 error = get_leaf(dip, leaf_no, &obh);
953 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500954 return error;
955
956 oleaf = (struct gfs2_leaf *)obh->b_data;
957 if (dip->i_di.di_depth == be16_to_cpu(oleaf->lf_depth)) {
958 brelse(obh);
959 return 1; /* can't split */
960 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000962 gfs2_trans_add_bh(dip->i_gl, obh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000963
Steven Whitehousec7526662006-03-20 12:30:04 -0500964 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
965 if (!nleaf) {
966 brelse(obh);
967 return -ENOSPC;
968 }
969 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970
Steven Whitehousec7526662006-03-20 12:30:04 -0500971 /* Compute the start and len of leaf pointers in the hash table. */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972 len = 1 << (dip->i_di.di_depth - be16_to_cpu(oleaf->lf_depth));
973 half_len = len >> 1;
974 if (!half_len) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500975 printk(KERN_WARNING "di_depth %u lf_depth %u index %u\n", dip->i_di.di_depth, be16_to_cpu(oleaf->lf_depth), index);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 gfs2_consist_inode(dip);
977 error = -EIO;
978 goto fail_brelse;
979 }
980
981 start = (index & ~(len - 1));
982
983 /* Change the pointers.
984 Don't bother distinguishing stuffed from non-stuffed.
985 This code is complicated enough already. */
Steven Whitehousecd915492006-09-04 12:49:07 -0400986 lp = kmalloc(half_len * sizeof(u64), GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000988 for (x = 0; x < half_len; x++)
989 lp[x] = cpu_to_be64(bn);
990
Steven Whitehousecd915492006-09-04 12:49:07 -0400991 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
992 half_len * sizeof(u64));
993 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000994 if (error >= 0)
995 error = -EIO;
996 goto fail_lpfree;
997 }
998
999 kfree(lp);
1000
1001 /* Compute the divider */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001002 divider = (start + half_len) << (32 - dip->i_di.di_depth);
1003
1004 /* Copy the entries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 dirent_first(dip, obh, &dent);
1006
1007 do {
1008 next = dent;
1009 if (dirent_next(dip, obh, &next))
1010 next = NULL;
1011
1012 if (dent->de_inum.no_addr &&
1013 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001014 struct qstr str;
1015 str.name = (char*)(dent+1);
1016 str.len = be16_to_cpu(dent->de_name_len);
1017 str.hash = be32_to_cpu(dent->de_hash);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001018 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001019 if (IS_ERR(new)) {
1020 error = PTR_ERR(new);
1021 break;
1022 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023
1024 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025 new->de_type = dent->de_type; /* No endian worries */
Steven Whitehousec7526662006-03-20 12:30:04 -05001026 nleaf->lf_entries = cpu_to_be16(be16_to_cpu(nleaf->lf_entries)+1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027
1028 dirent_del(dip, obh, prev, dent);
1029
1030 if (!oleaf->lf_entries)
1031 gfs2_consist_inode(dip);
Steven Whitehousec7526662006-03-20 12:30:04 -05001032 oleaf->lf_entries = cpu_to_be16(be16_to_cpu(oleaf->lf_entries)-1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033
1034 if (!prev)
1035 prev = dent;
1036
1037 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001038 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001040 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001042 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001043
Steven Whitehousec7526662006-03-20 12:30:04 -05001044 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045
1046 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001047 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 dip->i_di.di_blocks++;
1049 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1050 brelse(dibh);
1051 }
1052
1053 brelse(obh);
1054 brelse(nbh);
1055
1056 return error;
1057
Steven Whitehousee90deff2006-03-29 19:02:15 -05001058fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001059 kfree(lp);
1060
Steven Whitehousee90deff2006-03-29 19:02:15 -05001061fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001063 brelse(nbh);
1064 return error;
1065}
1066
1067/**
1068 * dir_double_exhash - Double size of ExHash table
1069 * @dip: The GFS2 dinode
1070 *
1071 * Returns: 0 on success, error code on failure
1072 */
1073
1074static int dir_double_exhash(struct gfs2_inode *dip)
1075{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001076 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001077 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001078 u32 hsize;
1079 u64 *buf;
1080 u64 *from, *to;
1081 u64 block;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082 int x;
1083 int error = 0;
1084
1085 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001086 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001087 gfs2_consist_inode(dip);
1088 return -EIO;
1089 }
1090
1091 /* Allocate both the "from" and "to" buffers in one big chunk */
1092
1093 buf = kcalloc(3, sdp->sd_hash_bsize, GFP_KERNEL | __GFP_NOFAIL);
1094
1095 for (block = dip->i_di.di_size >> sdp->sd_hash_bsize_shift; block--;) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001096 error = gfs2_dir_read_data(dip, (char *)buf,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001097 block * sdp->sd_hash_bsize,
1098 sdp->sd_hash_bsize);
1099 if (error != sdp->sd_hash_bsize) {
1100 if (error >= 0)
1101 error = -EIO;
1102 goto fail;
1103 }
1104
1105 from = buf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001106 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107
1108 for (x = sdp->sd_hash_ptrs; x--; from++) {
1109 *to++ = *from; /* No endianess worries */
1110 *to++ = *from;
1111 }
1112
Steven Whitehousee13940b2006-01-30 13:31:50 +00001113 error = gfs2_dir_write_data(dip,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001114 (char *)buf + sdp->sd_hash_bsize,
1115 block * sdp->sd_sb.sb_bsize,
1116 sdp->sd_sb.sb_bsize);
1117 if (error != sdp->sd_sb.sb_bsize) {
1118 if (error >= 0)
1119 error = -EIO;
1120 goto fail;
1121 }
1122 }
1123
1124 kfree(buf);
1125
1126 error = gfs2_meta_inode_buffer(dip, &dibh);
1127 if (!gfs2_assert_withdraw(sdp, !error)) {
1128 dip->i_di.di_depth++;
1129 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1130 brelse(dibh);
1131 }
1132
1133 return error;
1134
Steven Whitehousea91ea692006-09-04 12:04:26 -04001135fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001136 kfree(buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001137 return error;
1138}
1139
1140/**
1141 * compare_dents - compare directory entries by hash value
1142 * @a: first dent
1143 * @b: second dent
1144 *
1145 * When comparing the hash entries of @a to @b:
1146 * gt: returns 1
1147 * lt: returns -1
1148 * eq: returns 0
1149 */
1150
1151static int compare_dents(const void *a, const void *b)
1152{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001153 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001154 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155 int ret = 0;
1156
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001157 dent_a = *(const struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001158 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001159
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001160 dent_b = *(const struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001161 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001162
1163 if (hash_a > hash_b)
1164 ret = 1;
1165 else if (hash_a < hash_b)
1166 ret = -1;
1167 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001168 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1169 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170
1171 if (len_a > len_b)
1172 ret = 1;
1173 else if (len_a < len_b)
1174 ret = -1;
1175 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001176 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177 }
1178
1179 return ret;
1180}
1181
1182/**
1183 * do_filldir_main - read out directory entries
1184 * @dip: The GFS2 inode
1185 * @offset: The offset in the file to read from
1186 * @opaque: opaque data to pass to filldir
1187 * @filldir: The function to pass entries to
1188 * @darr: an array of struct gfs2_dirent pointers to read
1189 * @entries: the number of entries in darr
1190 * @copied: pointer to int that's non-zero if a entry has been copied out
1191 *
1192 * Jump through some hoops to make sure that if there are hash collsions,
1193 * they are read out at the beginning of a buffer. We want to minimize
1194 * the possibility that they will fall into different readdir buffers or
1195 * that someone will want to seek to that location.
1196 *
1197 * Returns: errno, >0 on exception from filldir
1198 */
1199
Steven Whitehousecd915492006-09-04 12:49:07 -04001200static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001201 void *opaque, gfs2_filldir_t filldir,
Steven Whitehousecd915492006-09-04 12:49:07 -04001202 const struct gfs2_dirent **darr, u32 entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001203 int *copied)
1204{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001205 const struct gfs2_dirent *dent, *dent_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 struct gfs2_inum inum;
Steven Whitehousecd915492006-09-04 12:49:07 -04001207 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001208 unsigned int x, y;
1209 int run = 0;
1210 int error = 0;
1211
1212 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1213
1214 dent_next = darr[0];
1215 off_next = be32_to_cpu(dent_next->de_hash);
1216 off_next = gfs2_disk_hash2offset(off_next);
1217
1218 for (x = 0, y = 1; x < entries; x++, y++) {
1219 dent = dent_next;
1220 off = off_next;
1221
1222 if (y < entries) {
1223 dent_next = darr[y];
1224 off_next = be32_to_cpu(dent_next->de_hash);
1225 off_next = gfs2_disk_hash2offset(off_next);
1226
1227 if (off < *offset)
1228 continue;
1229 *offset = off;
1230
1231 if (off_next == off) {
1232 if (*copied && !run)
1233 return 1;
1234 run = 1;
1235 } else
1236 run = 0;
1237 } else {
1238 if (off < *offset)
1239 continue;
1240 *offset = off;
1241 }
1242
1243 gfs2_inum_in(&inum, (char *)&dent->de_inum);
1244
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001245 error = filldir(opaque, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001246 be16_to_cpu(dent->de_name_len),
David Teiglandb3b94fa2006-01-16 16:50:04 +00001247 off, &inum,
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001248 be16_to_cpu(dent->de_type));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249 if (error)
1250 return 1;
1251
1252 *copied = 1;
1253 }
1254
1255 /* Increment the *offset by one, so the next time we come into the
1256 do_filldir fxn, we get the next entry instead of the last one in the
1257 current leaf */
1258
1259 (*offset)++;
1260
1261 return 0;
1262}
1263
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001264static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque,
1265 gfs2_filldir_t filldir, int *copied,
1266 unsigned *depth, u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001267{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001268 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001269 struct buffer_head *bh;
1270 struct gfs2_leaf *lf;
1271 unsigned entries = 0;
1272 unsigned leaves = 0;
1273 const struct gfs2_dirent **darr, *dent;
1274 struct dirent_gather g;
1275 struct buffer_head **larr;
1276 int leaf = 0;
1277 int error, i;
1278 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001279
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001281 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001282 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001283 goto out;
1284 lf = (struct gfs2_leaf *)bh->b_data;
1285 if (leaves == 0)
1286 *depth = be16_to_cpu(lf->lf_depth);
1287 entries += be16_to_cpu(lf->lf_entries);
1288 leaves++;
1289 lfn = be64_to_cpu(lf->lf_next);
1290 brelse(bh);
1291 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001292
1293 if (!entries)
1294 return 0;
1295
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001296 error = -ENOMEM;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001297 larr = vmalloc((leaves + entries) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001298 if (!larr)
1299 goto out;
1300 darr = (const struct gfs2_dirent **)(larr + leaves);
1301 g.pdent = darr;
1302 g.offset = 0;
1303 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001304
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001305 do {
1306 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001307 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001308 goto out_kfree;
1309 lf = (struct gfs2_leaf *)bh->b_data;
1310 lfn = be64_to_cpu(lf->lf_next);
1311 if (lf->lf_entries) {
1312 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1313 gfs2_dirent_gather, NULL, &g);
1314 error = PTR_ERR(dent);
1315 if (IS_ERR(dent)) {
1316 goto out_kfree;
1317 }
1318 error = 0;
1319 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001320 } else {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001321 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001322 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001323 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001324
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001325 error = do_filldir_main(ip, offset, opaque, filldir, darr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001326 entries, copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001327out_kfree:
1328 for(i = 0; i < leaf; i++)
1329 brelse(larr[i]);
Steven Whitehousefe1bded2006-04-18 10:09:15 -04001330 vfree(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001331out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001332 return error;
1333}
1334
1335/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001336 * dir_e_read - Reads the entries from a directory into a filldir buffer
1337 * @dip: dinode pointer
1338 * @offset: the hash of the last entry read shifted to the right once
1339 * @opaque: buffer for the filldir function to fill
1340 * @filldir: points to the filldir function to use
1341 *
1342 * Returns: errno
1343 */
1344
Steven Whitehousecd915492006-09-04 12:49:07 -04001345static int dir_e_read(struct inode *inode, u64 *offset, void *opaque,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001346 gfs2_filldir_t filldir)
1347{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001348 struct gfs2_inode *dip = GFS2_I(inode);
1349 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001350 u32 hsize, len = 0;
1351 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1352 u32 hash, index;
1353 u64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001354 int copied = 0;
1355 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001356 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001357
1358 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001359 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001360 gfs2_consist_inode(dip);
1361 return -EIO;
1362 }
1363
1364 hash = gfs2_dir_offset2hash(*offset);
1365 index = hash >> (32 - dip->i_di.di_depth);
1366
1367 lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1368 if (!lp)
1369 return -ENOMEM;
1370
1371 while (index < hsize) {
1372 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1373 ht_offset = index - lp_offset;
1374
1375 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001376 error = gfs2_dir_read_data(dip, (char *)lp,
Steven Whitehousecd915492006-09-04 12:49:07 -04001377 ht_offset * sizeof(u64),
David Teiglandb3b94fa2006-01-16 16:50:04 +00001378 sdp->sd_hash_bsize);
1379 if (error != sdp->sd_hash_bsize) {
1380 if (error >= 0)
1381 error = -EIO;
1382 goto out;
1383 }
1384 ht_offset_cur = ht_offset;
1385 }
1386
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001387 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1388 &copied, &depth,
1389 be64_to_cpu(lp[lp_offset]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001390 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001391 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001392
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001393 len = 1 << (dip->i_di.di_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001394 index = (index & ~(len - 1)) + len;
1395 }
1396
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001397out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001398 kfree(lp);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001399 if (error > 0)
1400 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001401 return error;
1402}
1403
Steven Whitehousecd915492006-09-04 12:49:07 -04001404int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque,
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001405 gfs2_filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001406{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001407 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001408 struct dirent_gather g;
1409 const struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001410 struct buffer_head *dibh;
1411 int copied = 0;
1412 int error;
1413
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001414 if (!dip->i_di.di_entries)
1415 return 0;
1416
1417 if (dip->i_di.di_flags & GFS2_DIF_EXHASH)
1418 return dir_e_read(inode, offset, opaque, filldir);
1419
David Teiglandb3b94fa2006-01-16 16:50:04 +00001420 if (!gfs2_is_stuffed(dip)) {
1421 gfs2_consist_inode(dip);
1422 return -EIO;
1423 }
1424
David Teiglandb3b94fa2006-01-16 16:50:04 +00001425 error = gfs2_meta_inode_buffer(dip, &dibh);
1426 if (error)
1427 return error;
1428
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001429 error = -ENOMEM;
1430 darr = kmalloc(dip->i_di.di_entries * sizeof(struct gfs2_dirent *),
1431 GFP_KERNEL);
1432 if (darr) {
1433 g.pdent = darr;
1434 g.offset = 0;
1435 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1436 gfs2_dirent_gather, NULL, &g);
1437 if (IS_ERR(dent)) {
1438 error = PTR_ERR(dent);
1439 goto out;
1440 }
1441 error = do_filldir_main(dip, offset, opaque, filldir, darr,
1442 dip->i_di.di_entries, &copied);
1443out:
1444 kfree(darr);
1445 }
1446
David Teiglandb3b94fa2006-01-16 16:50:04 +00001447 if (error > 0)
1448 error = 0;
1449
1450 brelse(dibh);
1451
1452 return error;
1453}
1454
David Teiglandb3b94fa2006-01-16 16:50:04 +00001455/**
1456 * gfs2_dir_search - Search a directory
1457 * @dip: The GFS2 inode
1458 * @filename:
1459 * @inode:
1460 *
1461 * This routine searches a directory for a file or another directory.
1462 * Assumes a glock is held on dip.
1463 *
1464 * Returns: errno
1465 */
1466
Steven Whitehousec7526662006-03-20 12:30:04 -05001467int gfs2_dir_search(struct inode *dir, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001468 struct gfs2_inum *inum, unsigned int *type)
1469{
Steven Whitehousec7526662006-03-20 12:30:04 -05001470 struct buffer_head *bh;
1471 struct gfs2_dirent *dent;
1472
1473 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1474 if (dent) {
1475 if (IS_ERR(dent))
1476 return PTR_ERR(dent);
1477 if (inum)
1478 gfs2_inum_in(inum, (char *)&dent->de_inum);
1479 if (type)
1480 *type = be16_to_cpu(dent->de_type);
1481 brelse(bh);
1482 return 0;
1483 }
1484 return -ENOENT;
1485}
1486
1487static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1488{
1489 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001490 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001491 struct gfs2_leaf *leaf, *oleaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001492 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001493 u32 index;
1494 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001495
Steven Whitehousec7526662006-03-20 12:30:04 -05001496 index = name->hash >> (32 - ip->i_di.di_depth);
1497 error = get_first_leaf(ip, index, &obh);
1498 if (error)
1499 return error;
1500 do {
1501 oleaf = (struct gfs2_leaf *)obh->b_data;
1502 bn = be64_to_cpu(oleaf->lf_next);
1503 if (!bn)
1504 break;
1505 brelse(obh);
1506 error = get_leaf(ip, bn, &obh);
1507 if (error)
1508 return error;
1509 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001510
Steven Whitehousec7526662006-03-20 12:30:04 -05001511 gfs2_trans_add_bh(ip->i_gl, obh, 1);
1512
1513 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1514 if (!leaf) {
1515 brelse(obh);
1516 return -ENOSPC;
1517 }
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001518 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001519 brelse(bh);
1520 brelse(obh);
1521
1522 error = gfs2_meta_inode_buffer(ip, &bh);
1523 if (error)
1524 return error;
1525 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1526 ip->i_di.di_blocks++;
1527 gfs2_dinode_out(&ip->i_di, bh->b_data);
1528 brelse(bh);
1529 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001530}
1531
1532/**
1533 * gfs2_dir_add - Add new filename into directory
1534 * @dip: The GFS2 inode
1535 * @filename: The new name
1536 * @inode: The inode number of the entry
1537 * @type: The type of the entry
1538 *
1539 * Returns: 0 on success, error code on failure
1540 */
1541
Steven Whitehousec7526662006-03-20 12:30:04 -05001542int gfs2_dir_add(struct inode *inode, const struct qstr *name,
1543 const struct gfs2_inum *inum, unsigned type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001544{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001545 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001546 struct buffer_head *bh;
1547 struct gfs2_dirent *dent;
1548 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001549 int error;
1550
Steven Whitehousec7526662006-03-20 12:30:04 -05001551 while(1) {
1552 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1553 &bh);
1554 if (dent) {
1555 if (IS_ERR(dent))
1556 return PTR_ERR(dent);
1557 dent = gfs2_init_dirent(inode, dent, name, bh);
1558 gfs2_inum_out(inum, (char *)&dent->de_inum);
1559 dent->de_type = cpu_to_be16(type);
1560 if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
1561 leaf = (struct gfs2_leaf *)bh->b_data;
1562 leaf->lf_entries = cpu_to_be16(be16_to_cpu(leaf->lf_entries) + 1);
1563 }
1564 brelse(bh);
1565 error = gfs2_meta_inode_buffer(ip, &bh);
1566 if (error)
1567 break;
1568 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1569 ip->i_di.di_entries++;
1570 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
1571 gfs2_dinode_out(&ip->i_di, bh->b_data);
1572 brelse(bh);
1573 error = 0;
1574 break;
1575 }
1576 if (!(ip->i_di.di_flags & GFS2_DIF_EXHASH)) {
1577 error = dir_make_exhash(inode);
1578 if (error)
1579 break;
1580 continue;
1581 }
1582 error = dir_split_leaf(inode, name);
1583 if (error == 0)
1584 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001585 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001586 break;
1587 if (ip->i_di.di_depth < GFS2_DIR_MAX_DEPTH) {
1588 error = dir_double_exhash(ip);
1589 if (error)
1590 break;
1591 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001592 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001593 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001594 if (error == 0)
1595 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001596 }
1597 error = dir_new_leaf(inode, name);
1598 if (!error)
1599 continue;
1600 error = -ENOSPC;
1601 break;
1602 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001603 return error;
1604}
1605
Steven Whitehousec7526662006-03-20 12:30:04 -05001606
David Teiglandb3b94fa2006-01-16 16:50:04 +00001607/**
1608 * gfs2_dir_del - Delete a directory entry
1609 * @dip: The GFS2 inode
1610 * @filename: The filename
1611 *
1612 * Returns: 0 on success, error code on failure
1613 */
1614
Steven Whitehousec7526662006-03-20 12:30:04 -05001615int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001616{
Steven Whitehousec7526662006-03-20 12:30:04 -05001617 struct gfs2_dirent *dent, *prev = NULL;
1618 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001619 int error;
1620
Steven Whitehousec7526662006-03-20 12:30:04 -05001621 /* Returns _either_ the entry (if its first in block) or the
1622 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001623 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001624 if (!dent) {
1625 gfs2_consist_inode(dip);
1626 return -EIO;
1627 }
1628 if (IS_ERR(dent)) {
1629 gfs2_consist_inode(dip);
1630 return PTR_ERR(dent);
1631 }
1632 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001633 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001634 prev = dent;
1635 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1636 }
1637
1638 dirent_del(dip, bh, prev, dent);
1639 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1640 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1641 u16 entries = be16_to_cpu(leaf->lf_entries);
1642 if (!entries)
1643 gfs2_consist_inode(dip);
1644 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehousec7526662006-03-20 12:30:04 -05001645 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001646 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001647
1648 error = gfs2_meta_inode_buffer(dip, &bh);
1649 if (error)
1650 return error;
1651
1652 if (!dip->i_di.di_entries)
1653 gfs2_consist_inode(dip);
1654 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1655 dip->i_di.di_entries--;
1656 dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1657 gfs2_dinode_out(&dip->i_di, bh->b_data);
1658 brelse(bh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001659 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001660
1661 return error;
1662}
1663
David Teiglandb3b94fa2006-01-16 16:50:04 +00001664/**
1665 * gfs2_dir_mvino - Change inode number of directory entry
1666 * @dip: The GFS2 inode
1667 * @filename:
1668 * @new_inode:
1669 *
1670 * This routine changes the inode number of a directory entry. It's used
1671 * by rename to change ".." when a directory is moved.
1672 * Assumes a glock is held on dvp.
1673 *
1674 * Returns: errno
1675 */
1676
Steven Whitehousec7526662006-03-20 12:30:04 -05001677int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001678 struct gfs2_inum *inum, unsigned int new_type)
1679{
Steven Whitehousec7526662006-03-20 12:30:04 -05001680 struct buffer_head *bh;
1681 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001682 int error;
1683
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001684 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &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 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001691
Steven Whitehousec7526662006-03-20 12:30:04 -05001692 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1693 gfs2_inum_out(inum, (char *)&dent->de_inum);
1694 dent->de_type = cpu_to_be16(new_type);
1695
1696 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1697 brelse(bh);
1698 error = gfs2_meta_inode_buffer(dip, &bh);
1699 if (error)
1700 return error;
1701 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1702 }
1703
1704 dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1705 gfs2_dinode_out(&dip->i_di, bh->b_data);
1706 brelse(bh);
1707 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001708}
1709
1710/**
1711 * foreach_leaf - call a function for each leaf in a directory
1712 * @dip: the directory
1713 * @lc: the function to call for each each
1714 * @data: private data to pass to it
1715 *
1716 * Returns: errno
1717 */
1718
1719static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1720{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001721 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001722 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001723 struct gfs2_leaf *leaf;
Steven Whitehousecd915492006-09-04 12:49:07 -04001724 u32 hsize, len;
1725 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1726 u32 index = 0;
1727 u64 *lp;
1728 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001729 int error = 0;
1730
1731 hsize = 1 << dip->i_di.di_depth;
Steven Whitehousecd915492006-09-04 12:49:07 -04001732 if (hsize * sizeof(u64) != dip->i_di.di_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001733 gfs2_consist_inode(dip);
1734 return -EIO;
1735 }
1736
1737 lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1738 if (!lp)
1739 return -ENOMEM;
1740
1741 while (index < hsize) {
1742 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1743 ht_offset = index - lp_offset;
1744
1745 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001746 error = gfs2_dir_read_data(dip, (char *)lp,
Steven Whitehousecd915492006-09-04 12:49:07 -04001747 ht_offset * sizeof(u64),
David Teiglandb3b94fa2006-01-16 16:50:04 +00001748 sdp->sd_hash_bsize);
1749 if (error != sdp->sd_hash_bsize) {
1750 if (error >= 0)
1751 error = -EIO;
1752 goto out;
1753 }
1754 ht_offset_cur = ht_offset;
1755 }
1756
1757 leaf_no = be64_to_cpu(lp[lp_offset]);
1758 if (leaf_no) {
1759 error = get_leaf(dip, leaf_no, &bh);
1760 if (error)
1761 goto out;
Steven Whitehousec7526662006-03-20 12:30:04 -05001762 leaf = (struct gfs2_leaf *)bh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -05001763 len = 1 << (dip->i_di.di_depth - be16_to_cpu(leaf->lf_depth));
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001764 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001765
1766 error = lc(dip, index, len, leaf_no, data);
1767 if (error)
1768 goto out;
1769
1770 index = (index & ~(len - 1)) + len;
1771 } else
1772 index++;
1773 }
1774
1775 if (index != hsize) {
1776 gfs2_consist_inode(dip);
1777 error = -EIO;
1778 }
1779
Steven Whitehouse634ee0b2006-07-17 09:32:37 -04001780out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001781 kfree(lp);
1782
1783 return error;
1784}
1785
1786/**
1787 * leaf_dealloc - Deallocate a directory leaf
1788 * @dip: the directory
1789 * @index: the hash table offset in the directory
1790 * @len: the number of pointers to this leaf
1791 * @leaf_no: the leaf number
1792 * @data: not used
1793 *
1794 * Returns: errno
1795 */
1796
Steven Whitehousecd915492006-09-04 12:49:07 -04001797static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
1798 u64 leaf_no, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001799{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001800 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001801 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001802 struct gfs2_rgrp_list rlist;
1803 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001804 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001805 unsigned int rg_blocks = 0, l_blocks = 0;
1806 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001807 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001808 int error;
1809
1810 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1811
1812 ht = kzalloc(size, GFP_KERNEL);
1813 if (!ht)
1814 return -ENOMEM;
1815
1816 gfs2_alloc_get(dip);
1817
1818 error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1819 if (error)
1820 goto out;
1821
1822 error = gfs2_rindex_hold(sdp, &dip->i_alloc.al_ri_gh);
1823 if (error)
1824 goto out_qs;
1825
1826 /* Count the number of leaves */
1827
Steven Whitehousec7526662006-03-20 12:30:04 -05001828 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001829 error = get_leaf(dip, blk, &bh);
1830 if (error)
1831 goto out_rlist;
Steven Whitehousec7526662006-03-20 12:30:04 -05001832 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1833 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001834 brelse(bh);
1835
1836 gfs2_rlist_add(sdp, &rlist, blk);
1837 l_blocks++;
1838 }
1839
1840 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, 0);
1841
1842 for (x = 0; x < rlist.rl_rgrps; x++) {
1843 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001844 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001845 rg_blocks += rgd->rd_ri.ri_length;
1846 }
1847
1848 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1849 if (error)
1850 goto out_rlist;
1851
1852 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001853 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001854 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1855 if (error)
1856 goto out_rg_gunlock;
1857
Steven Whitehousec7526662006-03-20 12:30:04 -05001858 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001859 error = get_leaf(dip, blk, &bh);
1860 if (error)
1861 goto out_end_trans;
Steven Whitehousec7526662006-03-20 12:30:04 -05001862 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1863 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001864 brelse(bh);
1865
1866 gfs2_free_meta(dip, blk, 1);
1867
1868 if (!dip->i_di.di_blocks)
1869 gfs2_consist_inode(dip);
1870 dip->i_di.di_blocks--;
1871 }
1872
Steven Whitehousecd915492006-09-04 12:49:07 -04001873 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001874 if (error != size) {
1875 if (error >= 0)
1876 error = -EIO;
1877 goto out_end_trans;
1878 }
1879
1880 error = gfs2_meta_inode_buffer(dip, &dibh);
1881 if (error)
1882 goto out_end_trans;
1883
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001884 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001885 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1886 brelse(dibh);
1887
Steven Whitehousea91ea692006-09-04 12:04:26 -04001888out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001889 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001890out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001891 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001892out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001893 gfs2_rlist_free(&rlist);
1894 gfs2_glock_dq_uninit(&dip->i_alloc.al_ri_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001895out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001896 gfs2_quota_unhold(dip);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001897out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001898 gfs2_alloc_put(dip);
1899 kfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001900 return error;
1901}
1902
1903/**
1904 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1905 * @dip: the directory
1906 *
1907 * Dealloc all on-disk directory leaves to FREEMETA state
1908 * Change on-disk inode type to "regular file"
1909 *
1910 * Returns: errno
1911 */
1912
1913int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1914{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001915 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001916 struct buffer_head *bh;
1917 int error;
1918
1919 /* Dealloc on-disk leaves to FREEMETA state */
1920 error = foreach_leaf(dip, leaf_dealloc, NULL);
1921 if (error)
1922 return error;
1923
1924 /* Make this a regular file in case we crash.
1925 (We don't want to free these blocks a second time.) */
1926
1927 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1928 if (error)
1929 return error;
1930
1931 error = gfs2_meta_inode_buffer(dip, &bh);
1932 if (!error) {
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001933 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001934 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1935 cpu_to_be32(S_IFREG);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001936 brelse(bh);
1937 }
1938
1939 gfs2_trans_end(sdp);
1940
1941 return error;
1942}
1943
1944/**
1945 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
1946 * @ip: the file being written to
1947 * @filname: the filename that's going to be added
David Teiglandb3b94fa2006-01-16 16:50:04 +00001948 *
Steven Whitehousec7526662006-03-20 12:30:04 -05001949 * Returns: 1 if alloc required, 0 if not, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00001950 */
1951
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001952int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001953{
Steven Whitehousec7526662006-03-20 12:30:04 -05001954 struct gfs2_dirent *dent;
1955 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001956
Steven Whitehousec7526662006-03-20 12:30:04 -05001957 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04001958 if (!dent) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001959 return 1;
Steven Whitehouseed386502006-04-07 16:28:07 -04001960 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001961 if (IS_ERR(dent))
1962 return PTR_ERR(dent);
1963 brelse(bh);
1964 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001965}
1966