blob: b0353884dd7d116b49bd33ff383555d63353c44b [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
7 * of the GNU General Public License v.2.
8 */
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
81#if 1
82#define gfs2_disk_hash2offset(h) (((uint64_t)(h)) >> 1)
83#define gfs2_dir_offset2hash(p) ((uint32_t)(((uint64_t)(p)) << 1))
84#else
85#define gfs2_disk_hash2offset(h) (((uint64_t)(h)))
86#define gfs2_dir_offset2hash(p) ((uint32_t)(((uint64_t)(p))))
87#endif
88
89typedef int (*leaf_call_t) (struct gfs2_inode *dip,
90 uint32_t index, uint32_t len, uint64_t leaf_no,
91 void *data);
92
Steven Whitehouse61e085a2006-04-24 10:07:13 -040093
94int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, uint64_t block,
95 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000096{
97 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000098
Steven Whitehouse61e085a2006-04-24 10:07:13 -040099 bh = gfs2_meta_new(ip->i_gl, block);
100 gfs2_trans_add_bh(ip->i_gl, bh, 1);
101 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
102 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000103 *bhp = bh;
104 return 0;
105}
106
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400107static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, uint64_t block,
108 struct buffer_head **bhp)
109{
110 struct buffer_head *bh;
111 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000112
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400113 error = gfs2_meta_read(ip->i_gl, block, DIO_START | DIO_WAIT, &bh);
114 if (error)
115 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400116 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400117 brelse(bh);
118 return -EIO;
119 }
120 *bhp = bh;
121 return 0;
122}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000123
124static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
125 unsigned int offset, unsigned int size)
126
127{
128 struct buffer_head *dibh;
129 int error;
130
131 error = gfs2_meta_inode_buffer(ip, &dibh);
132 if (error)
133 return error;
134
135 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehousec7526662006-03-20 12:30:04 -0500136 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000137 if (ip->i_di.di_size < offset + size)
138 ip->i_di.di_size = offset + size;
139 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
140 gfs2_dinode_out(&ip->i_di, dibh->b_data);
141
142 brelse(dibh);
143
144 return size;
145}
146
147
148
149/**
150 * gfs2_dir_write_data - Write directory information to the inode
151 * @ip: The GFS2 inode
152 * @buf: The buffer containing information to be written
153 * @offset: The file offset to start writing at
154 * @size: The amount of data to write
155 *
156 * Returns: The number of bytes correctly written or error code
157 */
158static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
159 uint64_t offset, unsigned int size)
160{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400161 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000162 struct buffer_head *dibh;
163 uint64_t lblock, dblock;
164 uint32_t extlen = 0;
165 unsigned int o;
166 int copied = 0;
167 int error = 0;
168
169 if (!size)
170 return 0;
171
172 if (gfs2_is_stuffed(ip) &&
173 offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500174 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
175 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000176
177 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
178 return -EINVAL;
179
180 if (gfs2_is_stuffed(ip)) {
181 error = gfs2_unstuff_dinode(ip, NULL, NULL);
182 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500183 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000184 }
185
186 lblock = offset;
187 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
188
189 while (copied < size) {
190 unsigned int amount;
191 struct buffer_head *bh;
192 int new;
193
194 amount = size - copied;
195 if (amount > sdp->sd_sb.sb_bsize - o)
196 amount = sdp->sd_sb.sb_bsize - o;
197
198 if (!extlen) {
199 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400200 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400201 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000202 if (error)
203 goto fail;
204 error = -EIO;
205 if (gfs2_assert_withdraw(sdp, dblock))
206 goto fail;
207 }
208
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400209 if (amount == sdp->sd_jbsize || new)
210 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
211 else
212 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
213
Steven Whitehousee13940b2006-01-30 13:31:50 +0000214 if (error)
215 goto fail;
216
217 gfs2_trans_add_bh(ip->i_gl, bh, 1);
218 memcpy(bh->b_data + o, buf, amount);
219 brelse(bh);
220 if (error)
221 goto fail;
222
223 copied += amount;
224 lblock++;
225 dblock++;
226 extlen--;
227
228 o = sizeof(struct gfs2_meta_header);
229 }
230
231out:
232 error = gfs2_meta_inode_buffer(ip, &dibh);
233 if (error)
234 return error;
235
236 if (ip->i_di.di_size < offset + copied)
237 ip->i_di.di_size = offset + copied;
238 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
239
240 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
241 gfs2_dinode_out(&ip->i_di, dibh->b_data);
242 brelse(dibh);
243
244 return copied;
245fail:
246 if (copied)
247 goto out;
248 return error;
249}
250
251static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
Steven Whitehousec7526662006-03-20 12:30:04 -0500252 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000253{
254 struct buffer_head *dibh;
255 int error;
256
257 error = gfs2_meta_inode_buffer(ip, &dibh);
258 if (!error) {
259 offset += sizeof(struct gfs2_dinode);
260 memcpy(buf, dibh->b_data + offset, size);
261 brelse(dibh);
262 }
263
264 return (error) ? error : size;
265}
266
267
268/**
269 * gfs2_dir_read_data - Read a data from a directory inode
270 * @ip: The GFS2 Inode
271 * @buf: The buffer to place result into
272 * @offset: File offset to begin jdata_readng from
273 * @size: Amount of data to transfer
274 *
275 * Returns: The amount of data actually copied or the error
276 */
277static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf,
278 uint64_t offset, unsigned int size)
279{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400280 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000281 uint64_t lblock, dblock;
282 uint32_t extlen = 0;
283 unsigned int o;
284 int copied = 0;
285 int error = 0;
286
287 if (offset >= ip->i_di.di_size)
288 return 0;
289
290 if ((offset + size) > ip->i_di.di_size)
291 size = ip->i_di.di_size - offset;
292
293 if (!size)
294 return 0;
295
296 if (gfs2_is_stuffed(ip))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500297 return gfs2_dir_read_stuffed(ip, buf, (unsigned int)offset,
298 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000299
300 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
301 return -EINVAL;
302
303 lblock = offset;
304 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
305
306 while (copied < size) {
307 unsigned int amount;
308 struct buffer_head *bh;
309 int new;
310
311 amount = size - copied;
312 if (amount > sdp->sd_sb.sb_bsize - o)
313 amount = sdp->sd_sb.sb_bsize - o;
314
315 if (!extlen) {
316 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400317 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400318 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000319 if (error)
320 goto fail;
321 }
322
323 if (extlen > 1)
324 gfs2_meta_ra(ip->i_gl, dblock, extlen);
325
326 if (dblock) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400327 if (new)
328 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
329 else
330 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000331 if (error)
332 goto fail;
333 dblock++;
334 extlen--;
335 } else
336 bh = NULL;
337
338 memcpy(buf, bh->b_data + o, amount);
339 brelse(bh);
340 if (error)
341 goto fail;
342
343 copied += amount;
344 lblock++;
345
346 o = sizeof(struct gfs2_meta_header);
347 }
348
349 return copied;
350fail:
351 return (copied) ? copied : error;
352}
353
Steven Whitehousec7526662006-03-20 12:30:04 -0500354typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500355 const struct qstr *name,
356 void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357
Steven Whitehousec7526662006-03-20 12:30:04 -0500358static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
359 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360{
Steven Whitehousec7526662006-03-20 12:30:04 -0500361 if (dent->de_inum.no_addr != 0 &&
362 be32_to_cpu(dent->de_hash) == name->hash &&
363 be16_to_cpu(dent->de_name_len) == name->len &&
364 memcmp((char *)(dent+1), name->name, name->len) == 0)
365 return ret;
366 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367}
368
Steven Whitehousec7526662006-03-20 12:30:04 -0500369static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500370 const struct qstr *name,
371 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500372{
373 return __gfs2_dirent_find(dent, name, 1);
374}
375
376static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500377 const struct qstr *name,
378 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500379{
380 return __gfs2_dirent_find(dent, name, 2);
381}
382
383/*
384 * name->name holds ptr to start of block.
385 * name->len holds size of block.
386 */
387static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500388 const struct qstr *name,
389 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500390{
391 const char *start = name->name;
392 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
393 if (name->len == (end - start))
394 return 1;
395 return 0;
396}
397
398static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500399 const struct qstr *name,
400 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500401{
402 unsigned required = GFS2_DIRENT_SIZE(name->len);
403 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
404 unsigned totlen = be16_to_cpu(dent->de_rec_len);
405
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500406 if (!dent->de_inum.no_addr)
407 actual = GFS2_DIRENT_SIZE(0);
Steven Whitehousec7526662006-03-20 12:30:04 -0500408 if ((totlen - actual) >= required)
409 return 1;
410 return 0;
411}
412
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500413struct dirent_gather {
414 const struct gfs2_dirent **pdent;
415 unsigned offset;
416};
417
418static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
419 const struct qstr *name,
420 void *opaque)
421{
422 struct dirent_gather *g = opaque;
423 if (dent->de_inum.no_addr) {
424 g->pdent[g->offset++] = dent;
425 }
426 return 0;
427}
428
Steven Whitehousec7526662006-03-20 12:30:04 -0500429/*
430 * Other possible things to check:
431 * - Inode located within filesystem size (and on valid block)
432 * - Valid directory entry type
433 * Not sure how heavy-weight we want to make this... could also check
434 * hash is correct for example, but that would take a lot of extra time.
435 * For now the most important thing is to check that the various sizes
436 * are correct.
437 */
438static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
439 unsigned int size, unsigned int len, int first)
440{
441 const char *msg = "gfs2_dirent too small";
442 if (unlikely(size < sizeof(struct gfs2_dirent)))
443 goto error;
444 msg = "gfs2_dirent misaligned";
445 if (unlikely(offset & 0x7))
446 goto error;
447 msg = "gfs2_dirent points beyond end of block";
448 if (unlikely(offset + size > len))
449 goto error;
450 msg = "zero inode number";
451 if (unlikely(!first && !dent->de_inum.no_addr))
452 goto error;
453 msg = "name length is greater than space in dirent";
454 if (dent->de_inum.no_addr &&
455 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
456 size))
457 goto error;
458 return 0;
459error:
460 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
461 first ? "first in block" : "not first in block");
462 return -EIO;
463}
464
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500465static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500466{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500467 const struct gfs2_meta_header *h = buf;
468 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500469
470 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500471
Steven Whitehousee3167de2006-03-30 15:46:23 -0500472 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500473 case GFS2_METATYPE_LF:
474 offset = sizeof(struct gfs2_leaf);
475 break;
476 case GFS2_METATYPE_DI:
477 offset = sizeof(struct gfs2_dinode);
478 break;
479 default:
480 goto wrong_type;
481 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500482 return offset;
483wrong_type:
484 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500485 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500486 return -1;
487}
Steven Whitehousec7526662006-03-20 12:30:04 -0500488
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500489static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode,
490 void *buf,
491 unsigned int len, gfs2_dscan_t scan,
492 const struct qstr *name,
493 void *opaque)
494{
495 struct gfs2_dirent *dent, *prev;
496 unsigned offset;
497 unsigned size;
498 int ret = 0;
499
500 ret = gfs2_dirent_offset(buf);
501 if (ret < 0)
502 goto consist_inode;
503
504 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500505 prev = NULL;
506 dent = (struct gfs2_dirent *)(buf + offset);
507 size = be16_to_cpu(dent->de_rec_len);
508 if (gfs2_check_dirent(dent, offset, size, len, 1))
509 goto consist_inode;
510 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500511 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500512 if (ret)
513 break;
514 offset += size;
515 if (offset == len)
516 break;
517 prev = dent;
518 dent = (struct gfs2_dirent *)(buf + offset);
519 size = be16_to_cpu(dent->de_rec_len);
520 if (gfs2_check_dirent(dent, offset, size, len, 0))
521 goto consist_inode;
522 } while(1);
523
524 switch(ret) {
525 case 0:
526 return NULL;
527 case 1:
528 return dent;
529 case 2:
530 return prev ? prev : dent;
531 default:
532 BUG_ON(ret > 0);
533 return ERR_PTR(ret);
534 }
535
Steven Whitehousec7526662006-03-20 12:30:04 -0500536consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400537 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500538 return ERR_PTR(-EIO);
539}
540
541
David Teiglandb3b94fa2006-01-16 16:50:04 +0000542/**
543 * dirent_first - Return the first dirent
544 * @dip: the directory
545 * @bh: The buffer
546 * @dent: Pointer to list of dirents
547 *
548 * return first dirent whether bh points to leaf or stuffed dinode
549 *
550 * Returns: IS_LEAF, IS_DINODE, or -errno
551 */
552
553static int dirent_first(struct gfs2_inode *dip, struct buffer_head *bh,
554 struct gfs2_dirent **dent)
555{
556 struct gfs2_meta_header *h = (struct gfs2_meta_header *)bh->b_data;
557
Steven Whitehousee3167de2006-03-30 15:46:23 -0500558 if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400559 if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000560 return -EIO;
561 *dent = (struct gfs2_dirent *)(bh->b_data +
562 sizeof(struct gfs2_leaf));
563 return IS_LEAF;
564 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400565 if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566 return -EIO;
567 *dent = (struct gfs2_dirent *)(bh->b_data +
568 sizeof(struct gfs2_dinode));
569 return IS_DINODE;
570 }
571}
572
573/**
574 * dirent_next - Next dirent
575 * @dip: the directory
576 * @bh: The buffer
577 * @dent: Pointer to list of dirents
578 *
579 * Returns: 0 on success, error code otherwise
580 */
581
582static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
583 struct gfs2_dirent **dent)
584{
585 struct gfs2_dirent *tmp, *cur;
586 char *bh_end;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000587 uint16_t cur_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588
589 cur = *dent;
590 bh_end = bh->b_data + bh->b_size;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000591 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592
593 if ((char *)cur + cur_rec_len >= bh_end) {
594 if ((char *)cur + cur_rec_len > bh_end) {
595 gfs2_consist_inode(dip);
596 return -EIO;
597 }
598 return -ENOENT;
599 }
600
601 tmp = (struct gfs2_dirent *)((char *)cur + cur_rec_len);
602
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000603 if ((char *)tmp + be16_to_cpu(tmp->de_rec_len) > bh_end) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604 gfs2_consist_inode(dip);
605 return -EIO;
606 }
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000607
608 if (cur_rec_len == 0) {
609 gfs2_consist_inode(dip);
610 return -EIO;
611 }
612
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 /* Only the first dent could ever have de_inum.no_addr == 0 */
614 if (!tmp->de_inum.no_addr) {
615 gfs2_consist_inode(dip);
616 return -EIO;
617 }
618
619 *dent = tmp;
620
621 return 0;
622}
623
624/**
625 * dirent_del - Delete a dirent
626 * @dip: The GFS2 inode
627 * @bh: The buffer
628 * @prev: The previous dirent
629 * @cur: The current dirent
630 *
631 */
632
633static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
634 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
635{
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000636 uint16_t cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000637
638 if (!cur->de_inum.no_addr) {
639 gfs2_consist_inode(dip);
640 return;
641 }
642
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000643 gfs2_trans_add_bh(dip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000644
645 /* If there is no prev entry, this is the first entry in the block.
646 The de_rec_len is already as big as it needs to be. Just zero
647 out the inode number and return. */
648
649 if (!prev) {
650 cur->de_inum.no_addr = 0; /* No endianess worries */
651 return;
652 }
653
654 /* Combine this dentry with the previous one. */
655
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000656 prev_rec_len = be16_to_cpu(prev->de_rec_len);
657 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658
659 if ((char *)prev + prev_rec_len != (char *)cur)
660 gfs2_consist_inode(dip);
661 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
662 gfs2_consist_inode(dip);
663
664 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000665 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666}
667
Steven Whitehousec7526662006-03-20 12:30:04 -0500668/*
669 * Takes a dent from which to grab space as an argument. Returns the
670 * newly created dent.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671 */
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400672static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
673 struct gfs2_dirent *dent,
674 const struct qstr *name,
675 struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000676{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400677 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500678 struct gfs2_dirent *ndent;
679 unsigned offset = 0, totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000680
Steven Whitehousec7526662006-03-20 12:30:04 -0500681 if (dent->de_inum.no_addr)
682 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
683 totlen = be16_to_cpu(dent->de_rec_len);
684 BUG_ON(offset + name->len > totlen);
685 gfs2_trans_add_bh(ip->i_gl, bh, 1);
686 ndent = (struct gfs2_dirent *)((char *)dent + offset);
687 dent->de_rec_len = cpu_to_be16(offset);
688 gfs2_qstr2dirent(name, totlen - offset, ndent);
689 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000690}
691
Steven Whitehousec7526662006-03-20 12:30:04 -0500692static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
693 struct buffer_head *bh,
694 const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695{
696 struct gfs2_dirent *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500697 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
698 gfs2_dirent_find_space, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500699 if (!dent || IS_ERR(dent))
700 return dent;
701 return gfs2_init_dirent(inode, dent, name, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702}
703
704static int get_leaf(struct gfs2_inode *dip, uint64_t leaf_no,
705 struct buffer_head **bhp)
706{
707 int error;
708
709 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_START | DIO_WAIT, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400710 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
711 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400713 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000714
715 return error;
716}
717
718/**
719 * get_leaf_nr - Get a leaf number associated with the index
720 * @dip: The GFS2 inode
721 * @index:
722 * @leaf_out:
723 *
724 * Returns: 0 on success, error code otherwise
725 */
726
727static int get_leaf_nr(struct gfs2_inode *dip, uint32_t index,
728 uint64_t *leaf_out)
729{
730 uint64_t leaf_no;
731 int error;
732
Steven Whitehousee13940b2006-01-30 13:31:50 +0000733 error = gfs2_dir_read_data(dip, (char *)&leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 index * sizeof(uint64_t),
735 sizeof(uint64_t));
736 if (error != sizeof(uint64_t))
737 return (error < 0) ? error : -EIO;
738
739 *leaf_out = be64_to_cpu(leaf_no);
740
741 return 0;
742}
743
744static int get_first_leaf(struct gfs2_inode *dip, uint32_t index,
745 struct buffer_head **bh_out)
746{
747 uint64_t leaf_no;
748 int error;
749
750 error = get_leaf_nr(dip, index, &leaf_no);
751 if (!error)
752 error = get_leaf(dip, leaf_no, bh_out);
753
754 return error;
755}
756
Steven Whitehousec7526662006-03-20 12:30:04 -0500757static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
758 const struct qstr *name,
759 gfs2_dscan_t scan,
760 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761{
Steven Whitehousec7526662006-03-20 12:30:04 -0500762 struct buffer_head *bh;
763 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400764 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765 int error;
766
Steven Whitehousec7526662006-03-20 12:30:04 -0500767 if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
768 struct gfs2_leaf *leaf;
769 unsigned hsize = 1 << ip->i_di.di_depth;
770 unsigned index;
771 u64 ln;
772 if (hsize * sizeof(u64) != ip->i_di.di_size) {
773 gfs2_consist_inode(ip);
774 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400776
Steven Whitehousec7526662006-03-20 12:30:04 -0500777 index = name->hash >> (32 - ip->i_di.di_depth);
778 error = get_first_leaf(ip, index, &bh);
779 if (error)
780 return ERR_PTR(error);
781 do {
782 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500783 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500784 if (dent)
785 goto got_dent;
786 leaf = (struct gfs2_leaf *)bh->b_data;
787 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400788 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500789 if (!ln)
790 break;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400791
Steven Whitehousec7526662006-03-20 12:30:04 -0500792 error = get_leaf(ip, ln, &bh);
793 } while(!error);
794
795 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400798
Steven Whitehousec7526662006-03-20 12:30:04 -0500799 error = gfs2_meta_inode_buffer(ip, &bh);
800 if (error)
801 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500802 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500803got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400804 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400805 brelse(bh);
806 bh = NULL;
807 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500808 *pbh = bh;
809 return dent;
810}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811
Steven Whitehousec7526662006-03-20 12:30:04 -0500812static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
813{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400814 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500815 u64 bn = gfs2_alloc_meta(ip);
816 struct buffer_head *bh = gfs2_meta_new(ip->i_gl, bn);
817 struct gfs2_leaf *leaf;
818 struct gfs2_dirent *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500819 struct qstr name = { .name = "", .len = 0, .hash = 0 };
Steven Whitehousec7526662006-03-20 12:30:04 -0500820 if (!bh)
821 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400822
Steven Whitehousec7526662006-03-20 12:30:04 -0500823 gfs2_trans_add_bh(ip->i_gl, bh, 1);
824 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
825 leaf = (struct gfs2_leaf *)bh->b_data;
826 leaf->lf_depth = cpu_to_be16(depth);
827 leaf->lf_entries = cpu_to_be16(0);
828 leaf->lf_dirent_format = cpu_to_be16(GFS2_FORMAT_DE);
829 leaf->lf_next = cpu_to_be64(0);
830 memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
831 dent = (struct gfs2_dirent *)(leaf+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500832 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500833 *pbh = bh;
834 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000835}
836
837/**
838 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
839 * @dip: The GFS2 inode
840 *
841 * Returns: 0 on success, error code otherwise
842 */
843
Steven Whitehousec7526662006-03-20 12:30:04 -0500844static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400846 struct gfs2_inode *dip = GFS2_I(inode);
847 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000848 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500849 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850 struct buffer_head *bh, *dibh;
851 struct gfs2_leaf *leaf;
852 int y;
853 uint32_t x;
854 uint64_t *lp, bn;
855 int error;
856
857 error = gfs2_meta_inode_buffer(dip, &dibh);
858 if (error)
859 return error;
860
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 /* Turn over a new leaf */
862
Steven Whitehousec7526662006-03-20 12:30:04 -0500863 leaf = new_leaf(inode, &bh, 0);
864 if (!leaf)
865 return -ENOSPC;
866 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867
868 gfs2_assert(sdp, dip->i_di.di_entries < (1 << 16));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000869 leaf->lf_entries = cpu_to_be16(dip->i_di.di_entries);
870
871 /* Copy dirents */
872
873 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
874 sizeof(struct gfs2_dinode));
875
876 /* Find last entry */
877
878 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500879 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
880 sizeof(struct gfs2_leaf);
881 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400882 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500883 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500884 if (!dent) {
885 brelse(bh);
886 brelse(dibh);
887 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000888 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500889 if (IS_ERR(dent)) {
890 brelse(bh);
891 brelse(dibh);
892 return PTR_ERR(dent);
893 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000894
895 /* Adjust the last dirent's record length
896 (Remember that dent still points to the last entry.) */
897
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000898 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000900 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901
902 brelse(bh);
903
904 /* We're done with the new leaf block, now setup the new
905 hash table. */
906
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000907 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000908 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
909
910 lp = (uint64_t *)(dibh->b_data + sizeof(struct gfs2_dinode));
911
912 for (x = sdp->sd_hash_ptrs; x--; lp++)
913 *lp = cpu_to_be64(bn);
914
915 dip->i_di.di_size = sdp->sd_sb.sb_bsize / 2;
916 dip->i_di.di_blocks++;
917 dip->i_di.di_flags |= GFS2_DIF_EXHASH;
918 dip->i_di.di_payload_format = 0;
919
920 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
921 dip->i_di.di_depth = y;
922
923 gfs2_dinode_out(&dip->i_di, dibh->b_data);
924
925 brelse(dibh);
926
927 return 0;
928}
929
930/**
931 * dir_split_leaf - Split a leaf block into two
932 * @dip: The GFS2 inode
933 * @index:
934 * @leaf_no:
935 *
936 * Returns: 0 on success, error code on failure
937 */
938
Steven Whitehousec7526662006-03-20 12:30:04 -0500939static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400941 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 struct buffer_head *nbh, *obh, *dibh;
943 struct gfs2_leaf *nleaf, *oleaf;
944 struct gfs2_dirent *dent, *prev = NULL, *next = NULL, *new;
945 uint32_t start, len, half_len, divider;
Steven Whitehousec7526662006-03-20 12:30:04 -0500946 uint64_t bn, *lp, leaf_no;
947 uint32_t index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000948 int x, moved = 0;
949 int error;
950
Steven Whitehousec7526662006-03-20 12:30:04 -0500951 index = name->hash >> (32 - dip->i_di.di_depth);
952 error = get_leaf_nr(dip, index, &leaf_no);
953 if (error)
954 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955
956 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 error = get_leaf(dip, leaf_no, &obh);
958 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500959 return error;
960
961 oleaf = (struct gfs2_leaf *)obh->b_data;
962 if (dip->i_di.di_depth == be16_to_cpu(oleaf->lf_depth)) {
963 brelse(obh);
964 return 1; /* can't split */
965 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000966
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000967 gfs2_trans_add_bh(dip->i_gl, obh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968
Steven Whitehousec7526662006-03-20 12:30:04 -0500969 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
970 if (!nleaf) {
971 brelse(obh);
972 return -ENOSPC;
973 }
974 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000975
Steven Whitehousec7526662006-03-20 12:30:04 -0500976 /* Compute the start and len of leaf pointers in the hash table. */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 len = 1 << (dip->i_di.di_depth - be16_to_cpu(oleaf->lf_depth));
978 half_len = len >> 1;
979 if (!half_len) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500980 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 +0000981 gfs2_consist_inode(dip);
982 error = -EIO;
983 goto fail_brelse;
984 }
985
986 start = (index & ~(len - 1));
987
988 /* Change the pointers.
989 Don't bother distinguishing stuffed from non-stuffed.
990 This code is complicated enough already. */
Steven Whitehousec7526662006-03-20 12:30:04 -0500991 lp = kmalloc(half_len * sizeof(uint64_t), GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000993 for (x = 0; x < half_len; x++)
994 lp[x] = cpu_to_be64(bn);
995
Steven Whitehousee13940b2006-01-30 13:31:50 +0000996 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(uint64_t),
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500997 half_len * sizeof(uint64_t));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 if (error != half_len * sizeof(uint64_t)) {
999 if (error >= 0)
1000 error = -EIO;
1001 goto fail_lpfree;
1002 }
1003
1004 kfree(lp);
1005
1006 /* Compute the divider */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 divider = (start + half_len) << (32 - dip->i_di.di_depth);
1008
1009 /* Copy the entries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 dirent_first(dip, obh, &dent);
1011
1012 do {
1013 next = dent;
1014 if (dirent_next(dip, obh, &next))
1015 next = NULL;
1016
1017 if (dent->de_inum.no_addr &&
1018 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001019 struct qstr str;
1020 str.name = (char*)(dent+1);
1021 str.len = be16_to_cpu(dent->de_name_len);
1022 str.hash = be32_to_cpu(dent->de_hash);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001023 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001024 if (IS_ERR(new)) {
1025 error = PTR_ERR(new);
1026 break;
1027 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001028
1029 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030 new->de_type = dent->de_type; /* No endian worries */
Steven Whitehousec7526662006-03-20 12:30:04 -05001031 nleaf->lf_entries = cpu_to_be16(be16_to_cpu(nleaf->lf_entries)+1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032
1033 dirent_del(dip, obh, prev, dent);
1034
1035 if (!oleaf->lf_entries)
1036 gfs2_consist_inode(dip);
Steven Whitehousec7526662006-03-20 12:30:04 -05001037 oleaf->lf_entries = cpu_to_be16(be16_to_cpu(oleaf->lf_entries)-1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001038
1039 if (!prev)
1040 prev = dent;
1041
1042 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001043 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001045 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001046 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001047 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048
Steven Whitehousec7526662006-03-20 12:30:04 -05001049 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001050
1051 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001052 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001053 dip->i_di.di_blocks++;
1054 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1055 brelse(dibh);
1056 }
1057
1058 brelse(obh);
1059 brelse(nbh);
1060
1061 return error;
1062
Steven Whitehousee90deff2006-03-29 19:02:15 -05001063fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001064 kfree(lp);
1065
Steven Whitehousee90deff2006-03-29 19:02:15 -05001066fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001068 brelse(nbh);
1069 return error;
1070}
1071
1072/**
1073 * dir_double_exhash - Double size of ExHash table
1074 * @dip: The GFS2 dinode
1075 *
1076 * Returns: 0 on success, error code on failure
1077 */
1078
1079static int dir_double_exhash(struct gfs2_inode *dip)
1080{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001081 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082 struct buffer_head *dibh;
1083 uint32_t hsize;
1084 uint64_t *buf;
1085 uint64_t *from, *to;
1086 uint64_t block;
1087 int x;
1088 int error = 0;
1089
1090 hsize = 1 << dip->i_di.di_depth;
1091 if (hsize * sizeof(uint64_t) != dip->i_di.di_size) {
1092 gfs2_consist_inode(dip);
1093 return -EIO;
1094 }
1095
1096 /* Allocate both the "from" and "to" buffers in one big chunk */
1097
1098 buf = kcalloc(3, sdp->sd_hash_bsize, GFP_KERNEL | __GFP_NOFAIL);
1099
1100 for (block = dip->i_di.di_size >> sdp->sd_hash_bsize_shift; block--;) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001101 error = gfs2_dir_read_data(dip, (char *)buf,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001102 block * sdp->sd_hash_bsize,
1103 sdp->sd_hash_bsize);
1104 if (error != sdp->sd_hash_bsize) {
1105 if (error >= 0)
1106 error = -EIO;
1107 goto fail;
1108 }
1109
1110 from = buf;
1111 to = (uint64_t *)((char *)buf + sdp->sd_hash_bsize);
1112
1113 for (x = sdp->sd_hash_ptrs; x--; from++) {
1114 *to++ = *from; /* No endianess worries */
1115 *to++ = *from;
1116 }
1117
Steven Whitehousee13940b2006-01-30 13:31:50 +00001118 error = gfs2_dir_write_data(dip,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 (char *)buf + sdp->sd_hash_bsize,
1120 block * sdp->sd_sb.sb_bsize,
1121 sdp->sd_sb.sb_bsize);
1122 if (error != sdp->sd_sb.sb_bsize) {
1123 if (error >= 0)
1124 error = -EIO;
1125 goto fail;
1126 }
1127 }
1128
1129 kfree(buf);
1130
1131 error = gfs2_meta_inode_buffer(dip, &dibh);
1132 if (!gfs2_assert_withdraw(sdp, !error)) {
1133 dip->i_di.di_depth++;
1134 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1135 brelse(dibh);
1136 }
1137
1138 return error;
1139
1140 fail:
1141 kfree(buf);
1142
1143 return error;
1144}
1145
1146/**
1147 * compare_dents - compare directory entries by hash value
1148 * @a: first dent
1149 * @b: second dent
1150 *
1151 * When comparing the hash entries of @a to @b:
1152 * gt: returns 1
1153 * lt: returns -1
1154 * eq: returns 0
1155 */
1156
1157static int compare_dents(const void *a, const void *b)
1158{
1159 struct gfs2_dirent *dent_a, *dent_b;
1160 uint32_t hash_a, hash_b;
1161 int ret = 0;
1162
1163 dent_a = *(struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001164 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001165
1166 dent_b = *(struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001167 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001168
1169 if (hash_a > hash_b)
1170 ret = 1;
1171 else if (hash_a < hash_b)
1172 ret = -1;
1173 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001174 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1175 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001176
1177 if (len_a > len_b)
1178 ret = 1;
1179 else if (len_a < len_b)
1180 ret = -1;
1181 else
1182 ret = memcmp((char *)(dent_a + 1),
1183 (char *)(dent_b + 1),
1184 len_a);
1185 }
1186
1187 return ret;
1188}
1189
1190/**
1191 * do_filldir_main - read out directory entries
1192 * @dip: The GFS2 inode
1193 * @offset: The offset in the file to read from
1194 * @opaque: opaque data to pass to filldir
1195 * @filldir: The function to pass entries to
1196 * @darr: an array of struct gfs2_dirent pointers to read
1197 * @entries: the number of entries in darr
1198 * @copied: pointer to int that's non-zero if a entry has been copied out
1199 *
1200 * Jump through some hoops to make sure that if there are hash collsions,
1201 * they are read out at the beginning of a buffer. We want to minimize
1202 * the possibility that they will fall into different readdir buffers or
1203 * that someone will want to seek to that location.
1204 *
1205 * Returns: errno, >0 on exception from filldir
1206 */
1207
1208static int do_filldir_main(struct gfs2_inode *dip, uint64_t *offset,
1209 void *opaque, gfs2_filldir_t filldir,
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001210 const struct gfs2_dirent **darr, uint32_t entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 int *copied)
1212{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001213 const struct gfs2_dirent *dent, *dent_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001214 struct gfs2_inum inum;
1215 uint64_t off, off_next;
1216 unsigned int x, y;
1217 int run = 0;
1218 int error = 0;
1219
1220 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1221
1222 dent_next = darr[0];
1223 off_next = be32_to_cpu(dent_next->de_hash);
1224 off_next = gfs2_disk_hash2offset(off_next);
1225
1226 for (x = 0, y = 1; x < entries; x++, y++) {
1227 dent = dent_next;
1228 off = off_next;
1229
1230 if (y < entries) {
1231 dent_next = darr[y];
1232 off_next = be32_to_cpu(dent_next->de_hash);
1233 off_next = gfs2_disk_hash2offset(off_next);
1234
1235 if (off < *offset)
1236 continue;
1237 *offset = off;
1238
1239 if (off_next == off) {
1240 if (*copied && !run)
1241 return 1;
1242 run = 1;
1243 } else
1244 run = 0;
1245 } else {
1246 if (off < *offset)
1247 continue;
1248 *offset = off;
1249 }
1250
1251 gfs2_inum_in(&inum, (char *)&dent->de_inum);
1252
1253 error = filldir(opaque, (char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001254 be16_to_cpu(dent->de_name_len),
David Teiglandb3b94fa2006-01-16 16:50:04 +00001255 off, &inum,
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001256 be16_to_cpu(dent->de_type));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001257 if (error)
1258 return 1;
1259
1260 *copied = 1;
1261 }
1262
1263 /* Increment the *offset by one, so the next time we come into the
1264 do_filldir fxn, we get the next entry instead of the last one in the
1265 current leaf */
1266
1267 (*offset)++;
1268
1269 return 0;
1270}
1271
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001272static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque,
1273 gfs2_filldir_t filldir, int *copied,
1274 unsigned *depth, u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001276 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001277 struct buffer_head *bh;
1278 struct gfs2_leaf *lf;
1279 unsigned entries = 0;
1280 unsigned leaves = 0;
1281 const struct gfs2_dirent **darr, *dent;
1282 struct dirent_gather g;
1283 struct buffer_head **larr;
1284 int leaf = 0;
1285 int error, i;
1286 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001287
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001289 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001290 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001291 goto out;
1292 lf = (struct gfs2_leaf *)bh->b_data;
1293 if (leaves == 0)
1294 *depth = be16_to_cpu(lf->lf_depth);
1295 entries += be16_to_cpu(lf->lf_entries);
1296 leaves++;
1297 lfn = be64_to_cpu(lf->lf_next);
1298 brelse(bh);
1299 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001300
1301 if (!entries)
1302 return 0;
1303
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001304 error = -ENOMEM;
Steven Whitehousefe1bded2006-04-18 10:09:15 -04001305 larr = vmalloc((leaves + entries) * 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 Whitehouse71b86f52006-03-28 14:14:04 -05001316 goto out_kfree;
1317 lf = (struct gfs2_leaf *)bh->b_data;
1318 lfn = be64_to_cpu(lf->lf_next);
1319 if (lf->lf_entries) {
1320 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1321 gfs2_dirent_gather, NULL, &g);
1322 error = PTR_ERR(dent);
1323 if (IS_ERR(dent)) {
1324 goto out_kfree;
1325 }
1326 error = 0;
1327 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001328 } else {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001329 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001330 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001331 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001332
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001333 error = do_filldir_main(ip, offset, opaque, filldir, darr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001334 entries, copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001335out_kfree:
1336 for(i = 0; i < leaf; i++)
1337 brelse(larr[i]);
Steven Whitehousefe1bded2006-04-18 10:09:15 -04001338 vfree(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001339out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001340 return error;
1341}
1342
1343/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001344 * dir_e_read - Reads the entries from a directory into a filldir buffer
1345 * @dip: dinode pointer
1346 * @offset: the hash of the last entry read shifted to the right once
1347 * @opaque: buffer for the filldir function to fill
1348 * @filldir: points to the filldir function to use
1349 *
1350 * Returns: errno
1351 */
1352
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001353static int dir_e_read(struct inode *inode, uint64_t *offset, void *opaque,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001354 gfs2_filldir_t filldir)
1355{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001356 struct gfs2_inode *dip = GFS2_I(inode);
1357 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001358 uint32_t hsize, len = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001359 uint32_t ht_offset, lp_offset, ht_offset_cur = -1;
1360 uint32_t hash, index;
1361 uint64_t *lp;
1362 int copied = 0;
1363 int error = 0;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001364 unsigned depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001365
1366 hsize = 1 << dip->i_di.di_depth;
1367 if (hsize * sizeof(uint64_t) != dip->i_di.di_size) {
1368 gfs2_consist_inode(dip);
1369 return -EIO;
1370 }
1371
1372 hash = gfs2_dir_offset2hash(*offset);
1373 index = hash >> (32 - dip->i_di.di_depth);
1374
1375 lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1376 if (!lp)
1377 return -ENOMEM;
1378
1379 while (index < hsize) {
1380 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1381 ht_offset = index - lp_offset;
1382
1383 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001384 error = gfs2_dir_read_data(dip, (char *)lp,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001385 ht_offset * sizeof(uint64_t),
1386 sdp->sd_hash_bsize);
1387 if (error != sdp->sd_hash_bsize) {
1388 if (error >= 0)
1389 error = -EIO;
1390 goto out;
1391 }
1392 ht_offset_cur = ht_offset;
1393 }
1394
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001395 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1396 &copied, &depth,
1397 be64_to_cpu(lp[lp_offset]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001398 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001399 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001400
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001401 len = 1 << (dip->i_di.di_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001402 index = (index & ~(len - 1)) + len;
1403 }
1404
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001405out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001406 kfree(lp);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001407 if (error > 0)
1408 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001409 return error;
1410}
1411
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001412int gfs2_dir_read(struct inode *inode, uint64_t *offset, void *opaque,
1413 gfs2_filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001414{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001415 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001416 struct dirent_gather g;
1417 const struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001418 struct buffer_head *dibh;
1419 int copied = 0;
1420 int error;
1421
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001422 if (!dip->i_di.di_entries)
1423 return 0;
1424
1425 if (dip->i_di.di_flags & GFS2_DIF_EXHASH)
1426 return dir_e_read(inode, offset, opaque, filldir);
1427
David Teiglandb3b94fa2006-01-16 16:50:04 +00001428 if (!gfs2_is_stuffed(dip)) {
1429 gfs2_consist_inode(dip);
1430 return -EIO;
1431 }
1432
David Teiglandb3b94fa2006-01-16 16:50:04 +00001433 error = gfs2_meta_inode_buffer(dip, &dibh);
1434 if (error)
1435 return error;
1436
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001437 error = -ENOMEM;
1438 darr = kmalloc(dip->i_di.di_entries * sizeof(struct gfs2_dirent *),
1439 GFP_KERNEL);
1440 if (darr) {
1441 g.pdent = darr;
1442 g.offset = 0;
1443 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1444 gfs2_dirent_gather, NULL, &g);
1445 if (IS_ERR(dent)) {
1446 error = PTR_ERR(dent);
1447 goto out;
1448 }
1449 error = do_filldir_main(dip, offset, opaque, filldir, darr,
1450 dip->i_di.di_entries, &copied);
1451out:
1452 kfree(darr);
1453 }
1454
David Teiglandb3b94fa2006-01-16 16:50:04 +00001455 if (error > 0)
1456 error = 0;
1457
1458 brelse(dibh);
1459
1460 return error;
1461}
1462
David Teiglandb3b94fa2006-01-16 16:50:04 +00001463/**
1464 * gfs2_dir_search - Search a directory
1465 * @dip: The GFS2 inode
1466 * @filename:
1467 * @inode:
1468 *
1469 * This routine searches a directory for a file or another directory.
1470 * Assumes a glock is held on dip.
1471 *
1472 * Returns: errno
1473 */
1474
Steven Whitehousec7526662006-03-20 12:30:04 -05001475int gfs2_dir_search(struct inode *dir, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001476 struct gfs2_inum *inum, unsigned int *type)
1477{
Steven Whitehousec7526662006-03-20 12:30:04 -05001478 struct buffer_head *bh;
1479 struct gfs2_dirent *dent;
1480
1481 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1482 if (dent) {
1483 if (IS_ERR(dent))
1484 return PTR_ERR(dent);
1485 if (inum)
1486 gfs2_inum_in(inum, (char *)&dent->de_inum);
1487 if (type)
1488 *type = be16_to_cpu(dent->de_type);
1489 brelse(bh);
1490 return 0;
1491 }
1492 return -ENOENT;
1493}
1494
1495static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1496{
1497 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001498 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001499 struct gfs2_leaf *leaf, *oleaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001500 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001501 u32 index;
1502 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001503
Steven Whitehousec7526662006-03-20 12:30:04 -05001504 index = name->hash >> (32 - ip->i_di.di_depth);
1505 error = get_first_leaf(ip, index, &obh);
1506 if (error)
1507 return error;
1508 do {
1509 oleaf = (struct gfs2_leaf *)obh->b_data;
1510 bn = be64_to_cpu(oleaf->lf_next);
1511 if (!bn)
1512 break;
1513 brelse(obh);
1514 error = get_leaf(ip, bn, &obh);
1515 if (error)
1516 return error;
1517 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001518
Steven Whitehousec7526662006-03-20 12:30:04 -05001519 gfs2_trans_add_bh(ip->i_gl, obh, 1);
1520
1521 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1522 if (!leaf) {
1523 brelse(obh);
1524 return -ENOSPC;
1525 }
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001526 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001527 brelse(bh);
1528 brelse(obh);
1529
1530 error = gfs2_meta_inode_buffer(ip, &bh);
1531 if (error)
1532 return error;
1533 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1534 ip->i_di.di_blocks++;
1535 gfs2_dinode_out(&ip->i_di, bh->b_data);
1536 brelse(bh);
1537 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001538}
1539
1540/**
1541 * gfs2_dir_add - Add new filename into directory
1542 * @dip: The GFS2 inode
1543 * @filename: The new name
1544 * @inode: The inode number of the entry
1545 * @type: The type of the entry
1546 *
1547 * Returns: 0 on success, error code on failure
1548 */
1549
Steven Whitehousec7526662006-03-20 12:30:04 -05001550int gfs2_dir_add(struct inode *inode, const struct qstr *name,
1551 const struct gfs2_inum *inum, unsigned type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001552{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001553 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001554 struct buffer_head *bh;
1555 struct gfs2_dirent *dent;
1556 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001557 int error;
1558
Steven Whitehousec7526662006-03-20 12:30:04 -05001559 while(1) {
1560 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1561 &bh);
1562 if (dent) {
1563 if (IS_ERR(dent))
1564 return PTR_ERR(dent);
1565 dent = gfs2_init_dirent(inode, dent, name, bh);
1566 gfs2_inum_out(inum, (char *)&dent->de_inum);
1567 dent->de_type = cpu_to_be16(type);
1568 if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
1569 leaf = (struct gfs2_leaf *)bh->b_data;
1570 leaf->lf_entries = cpu_to_be16(be16_to_cpu(leaf->lf_entries) + 1);
1571 }
1572 brelse(bh);
1573 error = gfs2_meta_inode_buffer(ip, &bh);
1574 if (error)
1575 break;
1576 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1577 ip->i_di.di_entries++;
1578 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
1579 gfs2_dinode_out(&ip->i_di, bh->b_data);
1580 brelse(bh);
1581 error = 0;
1582 break;
1583 }
1584 if (!(ip->i_di.di_flags & GFS2_DIF_EXHASH)) {
1585 error = dir_make_exhash(inode);
1586 if (error)
1587 break;
1588 continue;
1589 }
1590 error = dir_split_leaf(inode, name);
1591 if (error == 0)
1592 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001593 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001594 break;
1595 if (ip->i_di.di_depth < GFS2_DIR_MAX_DEPTH) {
1596 error = dir_double_exhash(ip);
1597 if (error)
1598 break;
1599 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001600 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001601 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001602 if (error == 0)
1603 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001604 }
1605 error = dir_new_leaf(inode, name);
1606 if (!error)
1607 continue;
1608 error = -ENOSPC;
1609 break;
1610 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001611 return error;
1612}
1613
Steven Whitehousec7526662006-03-20 12:30:04 -05001614
David Teiglandb3b94fa2006-01-16 16:50:04 +00001615/**
1616 * gfs2_dir_del - Delete a directory entry
1617 * @dip: The GFS2 inode
1618 * @filename: The filename
1619 *
1620 * Returns: 0 on success, error code on failure
1621 */
1622
Steven Whitehousec7526662006-03-20 12:30:04 -05001623int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001624{
Steven Whitehousec7526662006-03-20 12:30:04 -05001625 struct gfs2_dirent *dent, *prev = NULL;
1626 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001627 int error;
1628
Steven Whitehousec7526662006-03-20 12:30:04 -05001629 /* Returns _either_ the entry (if its first in block) or the
1630 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001631 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001632 if (!dent) {
1633 gfs2_consist_inode(dip);
1634 return -EIO;
1635 }
1636 if (IS_ERR(dent)) {
1637 gfs2_consist_inode(dip);
1638 return PTR_ERR(dent);
1639 }
1640 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001641 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001642 prev = dent;
1643 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1644 }
1645
1646 dirent_del(dip, bh, prev, dent);
1647 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1648 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1649 u16 entries = be16_to_cpu(leaf->lf_entries);
1650 if (!entries)
1651 gfs2_consist_inode(dip);
1652 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehousec7526662006-03-20 12:30:04 -05001653 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001654 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001655
1656 error = gfs2_meta_inode_buffer(dip, &bh);
1657 if (error)
1658 return error;
1659
1660 if (!dip->i_di.di_entries)
1661 gfs2_consist_inode(dip);
1662 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1663 dip->i_di.di_entries--;
1664 dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1665 gfs2_dinode_out(&dip->i_di, bh->b_data);
1666 brelse(bh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001667 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001668
1669 return error;
1670}
1671
David Teiglandb3b94fa2006-01-16 16:50:04 +00001672/**
1673 * gfs2_dir_mvino - Change inode number of directory entry
1674 * @dip: The GFS2 inode
1675 * @filename:
1676 * @new_inode:
1677 *
1678 * This routine changes the inode number of a directory entry. It's used
1679 * by rename to change ".." when a directory is moved.
1680 * Assumes a glock is held on dvp.
1681 *
1682 * Returns: errno
1683 */
1684
Steven Whitehousec7526662006-03-20 12:30:04 -05001685int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001686 struct gfs2_inum *inum, unsigned int new_type)
1687{
Steven Whitehousec7526662006-03-20 12:30:04 -05001688 struct buffer_head *bh;
1689 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001690 int error;
1691
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001692 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001693 if (!dent) {
1694 gfs2_consist_inode(dip);
1695 return -EIO;
1696 }
1697 if (IS_ERR(dent))
1698 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001699
Steven Whitehousec7526662006-03-20 12:30:04 -05001700 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1701 gfs2_inum_out(inum, (char *)&dent->de_inum);
1702 dent->de_type = cpu_to_be16(new_type);
1703
1704 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1705 brelse(bh);
1706 error = gfs2_meta_inode_buffer(dip, &bh);
1707 if (error)
1708 return error;
1709 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1710 }
1711
1712 dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1713 gfs2_dinode_out(&dip->i_di, bh->b_data);
1714 brelse(bh);
1715 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001716}
1717
1718/**
1719 * foreach_leaf - call a function for each leaf in a directory
1720 * @dip: the directory
1721 * @lc: the function to call for each each
1722 * @data: private data to pass to it
1723 *
1724 * Returns: errno
1725 */
1726
1727static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1728{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001729 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001730 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001731 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001732 uint32_t hsize, len;
1733 uint32_t ht_offset, lp_offset, ht_offset_cur = -1;
1734 uint32_t index = 0;
1735 uint64_t *lp;
1736 uint64_t leaf_no;
1737 int error = 0;
1738
1739 hsize = 1 << dip->i_di.di_depth;
1740 if (hsize * sizeof(uint64_t) != dip->i_di.di_size) {
1741 gfs2_consist_inode(dip);
1742 return -EIO;
1743 }
1744
1745 lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1746 if (!lp)
1747 return -ENOMEM;
1748
1749 while (index < hsize) {
1750 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1751 ht_offset = index - lp_offset;
1752
1753 if (ht_offset_cur != ht_offset) {
Steven Whitehousee13940b2006-01-30 13:31:50 +00001754 error = gfs2_dir_read_data(dip, (char *)lp,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001755 ht_offset * sizeof(uint64_t),
1756 sdp->sd_hash_bsize);
1757 if (error != sdp->sd_hash_bsize) {
1758 if (error >= 0)
1759 error = -EIO;
1760 goto out;
1761 }
1762 ht_offset_cur = ht_offset;
1763 }
1764
1765 leaf_no = be64_to_cpu(lp[lp_offset]);
1766 if (leaf_no) {
1767 error = get_leaf(dip, leaf_no, &bh);
1768 if (error)
1769 goto out;
Steven Whitehousec7526662006-03-20 12:30:04 -05001770 leaf = (struct gfs2_leaf *)bh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001771 brelse(bh);
1772
Steven Whitehousec7526662006-03-20 12:30:04 -05001773 len = 1 << (dip->i_di.di_depth - be16_to_cpu(leaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001774
1775 error = lc(dip, index, len, leaf_no, data);
1776 if (error)
1777 goto out;
1778
1779 index = (index & ~(len - 1)) + len;
1780 } else
1781 index++;
1782 }
1783
1784 if (index != hsize) {
1785 gfs2_consist_inode(dip);
1786 error = -EIO;
1787 }
1788
1789 out:
1790 kfree(lp);
1791
1792 return error;
1793}
1794
1795/**
1796 * leaf_dealloc - Deallocate a directory leaf
1797 * @dip: the directory
1798 * @index: the hash table offset in the directory
1799 * @len: the number of pointers to this leaf
1800 * @leaf_no: the leaf number
1801 * @data: not used
1802 *
1803 * Returns: errno
1804 */
1805
1806static int leaf_dealloc(struct gfs2_inode *dip, uint32_t index, uint32_t len,
1807 uint64_t leaf_no, void *data)
1808{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001809 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001810 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001811 struct gfs2_rgrp_list rlist;
1812 struct buffer_head *bh, *dibh;
Steven Whitehousec7526662006-03-20 12:30:04 -05001813 uint64_t blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001814 unsigned int rg_blocks = 0, l_blocks = 0;
1815 char *ht;
1816 unsigned int x, size = len * sizeof(uint64_t);
1817 int error;
1818
1819 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1820
1821 ht = kzalloc(size, GFP_KERNEL);
1822 if (!ht)
1823 return -ENOMEM;
1824
1825 gfs2_alloc_get(dip);
1826
1827 error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1828 if (error)
1829 goto out;
1830
1831 error = gfs2_rindex_hold(sdp, &dip->i_alloc.al_ri_gh);
1832 if (error)
1833 goto out_qs;
1834
1835 /* Count the number of leaves */
1836
Steven Whitehousec7526662006-03-20 12:30:04 -05001837 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001838 error = get_leaf(dip, blk, &bh);
1839 if (error)
1840 goto out_rlist;
Steven Whitehousec7526662006-03-20 12:30:04 -05001841 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1842 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001843 brelse(bh);
1844
1845 gfs2_rlist_add(sdp, &rlist, blk);
1846 l_blocks++;
1847 }
1848
1849 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, 0);
1850
1851 for (x = 0; x < rlist.rl_rgrps; x++) {
1852 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001853 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001854 rg_blocks += rgd->rd_ri.ri_length;
1855 }
1856
1857 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1858 if (error)
1859 goto out_rlist;
1860
1861 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001862 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001863 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1864 if (error)
1865 goto out_rg_gunlock;
1866
Steven Whitehousec7526662006-03-20 12:30:04 -05001867 for (blk = leaf_no; blk; blk = nblk) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001868 error = get_leaf(dip, blk, &bh);
1869 if (error)
1870 goto out_end_trans;
Steven Whitehousec7526662006-03-20 12:30:04 -05001871 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1872 nblk = be64_to_cpu(tmp_leaf->lf_next);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001873 brelse(bh);
1874
1875 gfs2_free_meta(dip, blk, 1);
1876
1877 if (!dip->i_di.di_blocks)
1878 gfs2_consist_inode(dip);
1879 dip->i_di.di_blocks--;
1880 }
1881
Steven Whitehousee13940b2006-01-30 13:31:50 +00001882 error = gfs2_dir_write_data(dip, ht, index * sizeof(uint64_t), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001883 if (error != size) {
1884 if (error >= 0)
1885 error = -EIO;
1886 goto out_end_trans;
1887 }
1888
1889 error = gfs2_meta_inode_buffer(dip, &dibh);
1890 if (error)
1891 goto out_end_trans;
1892
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001893 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001894 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1895 brelse(dibh);
1896
1897 out_end_trans:
1898 gfs2_trans_end(sdp);
1899
1900 out_rg_gunlock:
1901 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
1902
1903 out_rlist:
1904 gfs2_rlist_free(&rlist);
1905 gfs2_glock_dq_uninit(&dip->i_alloc.al_ri_gh);
1906
1907 out_qs:
1908 gfs2_quota_unhold(dip);
1909
1910 out:
1911 gfs2_alloc_put(dip);
1912 kfree(ht);
1913
1914 return error;
1915}
1916
1917/**
1918 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1919 * @dip: the directory
1920 *
1921 * Dealloc all on-disk directory leaves to FREEMETA state
1922 * Change on-disk inode type to "regular file"
1923 *
1924 * Returns: errno
1925 */
1926
1927int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1928{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001929 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001930 struct buffer_head *bh;
1931 int error;
1932
1933 /* Dealloc on-disk leaves to FREEMETA state */
1934 error = foreach_leaf(dip, leaf_dealloc, NULL);
1935 if (error)
1936 return error;
1937
1938 /* Make this a regular file in case we crash.
1939 (We don't want to free these blocks a second time.) */
1940
1941 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1942 if (error)
1943 return error;
1944
1945 error = gfs2_meta_inode_buffer(dip, &bh);
1946 if (!error) {
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001947 gfs2_trans_add_bh(dip->i_gl, bh, 1);
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001948 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1949 cpu_to_be32(S_IFREG);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001950 brelse(bh);
1951 }
1952
1953 gfs2_trans_end(sdp);
1954
1955 return error;
1956}
1957
1958/**
1959 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
1960 * @ip: the file being written to
1961 * @filname: the filename that's going to be added
David Teiglandb3b94fa2006-01-16 16:50:04 +00001962 *
Steven Whitehousec7526662006-03-20 12:30:04 -05001963 * Returns: 1 if alloc required, 0 if not, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00001964 */
1965
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001966int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001967{
Steven Whitehousec7526662006-03-20 12:30:04 -05001968 struct gfs2_dirent *dent;
1969 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001970
Steven Whitehousec7526662006-03-20 12:30:04 -05001971 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04001972 if (!dent) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001973 return 1;
Steven Whitehouseed386502006-04-07 16:28:07 -04001974 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001975 if (IS_ERR(dent))
1976 return PTR_ERR(dent);
1977 brelse(bh);
1978 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001979}
1980