blob: fa32655449c800eef7768f97ae11e54fc75a6dfb [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10/*
Steven Whitehouse61e085a2006-04-24 10:07:13 -040011 * Implements Extendible Hashing as described in:
12 * "Extendible Hashing" by Fagin, et al in
13 * __ACM Trans. on Database Systems__, Sept 1979.
14 *
15 *
16 * Here's the layout of dirents which is essentially the same as that of ext2
17 * within a single block. The field de_name_len is the number of bytes
18 * actually required for the name (no null terminator). The field de_rec_len
19 * is the number of bytes allocated to the dirent. The offset of the next
20 * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is
21 * deleted, the preceding dirent inherits its allocated space, ie
22 * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained
23 * by adding de_rec_len to the current dirent, this essentially causes the
24 * deleted dirent to get jumped over when iterating through all the dirents.
25 *
26 * When deleting the first dirent in a block, there is no previous dirent so
27 * the field de_ino is set to zero to designate it as deleted. When allocating
28 * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the
29 * first dirent has (de_ino == 0) and de_rec_len is large enough, this first
30 * dirent is allocated. Otherwise it must go through all the 'used' dirents
31 * searching for one in which the amount of total space minus the amount of
32 * used space will provide enough space for the new dirent.
33 *
34 * There are two types of blocks in which dirents reside. In a stuffed dinode,
35 * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of
36 * the block. In leaves, they begin at offset sizeof(struct gfs2_leaf) from the
37 * beginning of the leaf block. The dirents reside in leaves when
38 *
Steven Whitehouse383f01f2008-11-04 10:05:22 +000039 * dip->i_diskflags & GFS2_DIF_EXHASH is true
Steven Whitehouse61e085a2006-04-24 10:07:13 -040040 *
41 * Otherwise, the dirents are "linear", within a single stuffed dinode block.
42 *
43 * When the dirents are in leaves, the actual contents of the directory file are
44 * used as an array of 64-bit block pointers pointing to the leaf blocks. The
45 * dirents are NOT in the directory file itself. There can be more than one
46 * block pointer in the array that points to the same leaf. In fact, when a
47 * directory is first converted from linear to exhash, all of the pointers
48 * point to the same leaf.
49 *
50 * When a leaf is completely full, the size of the hash table can be
51 * doubled unless it is already at the maximum size which is hard coded into
52 * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list,
53 * but never before the maximum hash table size has been reached.
54 */
David Teiglandb3b94fa2006-01-16 16:50:04 +000055
David Teiglandb3b94fa2006-01-16 16:50:04 +000056#include <linux/slab.h>
57#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000058#include <linux/buffer_head.h>
59#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050060#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050061#include <linux/crc32.h>
Steven Whitehousefe1bded2006-04-18 10:09:15 -040062#include <linux/vmalloc.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000063
64#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050065#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000066#include "dir.h"
67#include "glock.h"
68#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000069#include "meta_io.h"
70#include "quota.h"
71#include "rgrp.h"
72#include "trans.h"
Steven Whitehousee13940b2006-01-30 13:31:50 +000073#include "bmap.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050074#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000075
76#define IS_LEAF 1 /* Hashed (leaf) directory */
77#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
78
Bob Petersondfe4d342011-10-27 12:16:06 -040079#define MAX_RA_BLOCKS 32 /* max read-ahead blocks */
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 Whitehouse8d123582010-09-17 12:30:23 +010084struct qstr gfs2_qdot __read_mostly;
85struct qstr gfs2_qdotdot __read_mostly;
86
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040087typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
88 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000089
Steven 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);
Steven Whitehouse350a9b02012-12-14 12:36:02 +000096 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -040097 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 Whitehouse7276b3b2006-09-21 17:05:23 -0400109 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400110 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)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000122{
123 struct buffer_head *dibh;
124 int error;
125
126 error = gfs2_meta_inode_buffer(ip, &dibh);
127 if (error)
128 return error;
129
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000130 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500131 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100132 if (ip->i_inode.i_size < offset + size)
133 i_size_write(&ip->i_inode, offset + size);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100134 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500135 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000136
137 brelse(dibh);
138
139 return size;
140}
141
142
143
144/**
145 * gfs2_dir_write_data - Write directory information to the inode
146 * @ip: The GFS2 inode
147 * @buf: The buffer containing information to be written
148 * @offset: The file offset to start writing at
149 * @size: The amount of data to write
150 *
151 * Returns: The number of bytes correctly written or error code
152 */
153static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400154 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000155{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400156 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000157 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400158 u64 lblock, dblock;
159 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000160 unsigned int o;
161 int copied = 0;
162 int error = 0;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000163 int new = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000164
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;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000188
189 amount = size - copied;
190 if (amount > sdp->sd_sb.sb_bsize - o)
191 amount = sdp->sd_sb.sb_bsize - o;
192
193 if (!extlen) {
194 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400195 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400196 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000197 if (error)
198 goto fail;
199 error = -EIO;
200 if (gfs2_assert_withdraw(sdp, dblock))
201 goto fail;
202 }
203
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400204 if (amount == sdp->sd_jbsize || new)
205 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
206 else
207 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
208
Steven Whitehousee13940b2006-01-30 13:31:50 +0000209 if (error)
210 goto fail;
211
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000212 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000213 memcpy(bh->b_data + o, buf, amount);
214 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000215
Steven Whitehouse899bb262006-08-01 15:28:57 -0400216 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000217 copied += amount;
218 lblock++;
219 dblock++;
220 extlen--;
221
222 o = sizeof(struct gfs2_meta_header);
223 }
224
225out:
226 error = gfs2_meta_inode_buffer(ip, &dibh);
227 if (error)
228 return error;
229
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100230 if (ip->i_inode.i_size < offset + copied)
231 i_size_write(&ip->i_inode, offset + copied);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100232 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000233
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000234 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500235 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000236 brelse(dibh);
237
238 return copied;
239fail:
240 if (copied)
241 goto out;
242 return error;
243}
244
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100245static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, __be64 *buf,
246 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000247{
248 struct buffer_head *dibh;
249 int error;
250
251 error = gfs2_meta_inode_buffer(ip, &dibh);
252 if (!error) {
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100253 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000254 brelse(dibh);
255 }
256
257 return (error) ? error : size;
258}
259
260
261/**
262 * gfs2_dir_read_data - Read a data from a directory inode
263 * @ip: The GFS2 Inode
264 * @buf: The buffer to place result into
Steven Whitehousee13940b2006-01-30 13:31:50 +0000265 * @size: Amount of data to transfer
266 *
267 * Returns: The amount of data actually copied or the error
268 */
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100269static int gfs2_dir_read_data(struct gfs2_inode *ip, __be64 *buf,
270 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000271{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400272 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400273 u64 lblock, dblock;
274 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000275 unsigned int o;
276 int copied = 0;
277 int error = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000278
279 if (gfs2_is_stuffed(ip))
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100280 return gfs2_dir_read_stuffed(ip, buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000281
282 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
283 return -EINVAL;
284
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100285 lblock = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000286 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
287
288 while (copied < size) {
289 unsigned int amount;
290 struct buffer_head *bh;
291 int new;
292
293 amount = size - copied;
294 if (amount > sdp->sd_sb.sb_bsize - o)
295 amount = sdp->sd_sb.sb_bsize - o;
296
297 if (!extlen) {
298 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400299 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400300 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400301 if (error || !dblock)
302 goto fail;
303 BUG_ON(extlen < 1);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400304 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200305 } else {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400306 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000307 if (error)
308 goto fail;
309 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400310 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
311 if (error) {
312 brelse(bh);
313 goto fail;
314 }
315 dblock++;
316 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000317 memcpy(buf, bh->b_data + o, amount);
318 brelse(bh);
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100319 buf += (amount/sizeof(__be64));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000320 copied += amount;
321 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000322 o = sizeof(struct gfs2_meta_header);
323 }
324
325 return copied;
326fail:
327 return (copied) ? copied : error;
328}
329
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100330/**
331 * gfs2_dir_get_hash_table - Get pointer to the dir hash table
332 * @ip: The inode in question
333 *
334 * Returns: The hash table or an error
335 */
336
337static __be64 *gfs2_dir_get_hash_table(struct gfs2_inode *ip)
338{
339 struct inode *inode = &ip->i_inode;
340 int ret;
341 u32 hsize;
342 __be64 *hc;
343
344 BUG_ON(!(ip->i_diskflags & GFS2_DIF_EXHASH));
345
346 hc = ip->i_hash_cache;
347 if (hc)
348 return hc;
349
350 hsize = 1 << ip->i_depth;
351 hsize *= sizeof(__be64);
352 if (hsize != i_size_read(&ip->i_inode)) {
353 gfs2_consist_inode(ip);
354 return ERR_PTR(-EIO);
355 }
356
Bob Petersone8830d82013-05-30 09:48:56 -0400357 hc = kmalloc(hsize, GFP_NOFS | __GFP_NOWARN);
358 if (hc == NULL)
359 hc = __vmalloc(hsize, GFP_NOFS, PAGE_KERNEL);
360
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100361 if (hc == NULL)
362 return ERR_PTR(-ENOMEM);
363
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100364 ret = gfs2_dir_read_data(ip, hc, hsize);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100365 if (ret < 0) {
Bob Petersone8830d82013-05-30 09:48:56 -0400366 if (is_vmalloc_addr(hc))
367 vfree(hc);
368 else
369 kfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100370 return ERR_PTR(ret);
371 }
372
373 spin_lock(&inode->i_lock);
Bob Petersone8830d82013-05-30 09:48:56 -0400374 if (ip->i_hash_cache) {
375 if (is_vmalloc_addr(hc))
376 vfree(hc);
377 else
378 kfree(hc);
379 } else {
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100380 ip->i_hash_cache = hc;
Bob Petersone8830d82013-05-30 09:48:56 -0400381 }
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100382 spin_unlock(&inode->i_lock);
383
384 return ip->i_hash_cache;
385}
386
387/**
388 * gfs2_dir_hash_inval - Invalidate dir hash
389 * @ip: The directory inode
390 *
391 * Must be called with an exclusive glock, or during glock invalidation.
392 */
393void gfs2_dir_hash_inval(struct gfs2_inode *ip)
394{
395 __be64 *hc = ip->i_hash_cache;
396 ip->i_hash_cache = NULL;
Bob Petersone8830d82013-05-30 09:48:56 -0400397 if (is_vmalloc_addr(hc))
398 vfree(hc);
399 else
400 kfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100401}
402
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500403static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
404{
405 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
406}
407
Steven Whitehousec7526662006-03-20 12:30:04 -0500408static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
409 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500411 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500412 be32_to_cpu(dent->de_hash) == name->hash &&
413 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400414 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500415 return ret;
416 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417}
418
Steven Whitehousec7526662006-03-20 12:30:04 -0500419static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500420 const struct qstr *name,
421 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500422{
423 return __gfs2_dirent_find(dent, name, 1);
424}
425
426static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500427 const struct qstr *name,
428 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500429{
430 return __gfs2_dirent_find(dent, name, 2);
431}
432
433/*
434 * name->name holds ptr to start of block.
435 * name->len holds size of block.
436 */
437static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500438 const struct qstr *name,
439 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500440{
441 const char *start = name->name;
442 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
443 if (name->len == (end - start))
444 return 1;
445 return 0;
446}
447
448static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500449 const struct qstr *name,
450 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500451{
452 unsigned required = GFS2_DIRENT_SIZE(name->len);
453 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
454 unsigned totlen = be16_to_cpu(dent->de_rec_len);
455
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500456 if (gfs2_dirent_sentinel(dent))
Bob Peterson728a7562010-07-14 18:12:26 -0400457 actual = 0;
Jan Engelhardtc53921242006-09-05 14:30:40 +0200458 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500459 return 1;
460 return 0;
461}
462
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500463struct dirent_gather {
464 const struct gfs2_dirent **pdent;
465 unsigned offset;
466};
467
468static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
469 const struct qstr *name,
470 void *opaque)
471{
472 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500473 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500474 g->pdent[g->offset++] = dent;
475 }
476 return 0;
477}
478
Steven Whitehousec7526662006-03-20 12:30:04 -0500479/*
480 * Other possible things to check:
481 * - Inode located within filesystem size (and on valid block)
482 * - Valid directory entry type
483 * Not sure how heavy-weight we want to make this... could also check
484 * hash is correct for example, but that would take a lot of extra time.
485 * For now the most important thing is to check that the various sizes
486 * are correct.
487 */
488static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
489 unsigned int size, unsigned int len, int first)
490{
491 const char *msg = "gfs2_dirent too small";
492 if (unlikely(size < sizeof(struct gfs2_dirent)))
493 goto error;
494 msg = "gfs2_dirent misaligned";
495 if (unlikely(offset & 0x7))
496 goto error;
497 msg = "gfs2_dirent points beyond end of block";
498 if (unlikely(offset + size > len))
499 goto error;
500 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500501 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500502 goto error;
503 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500504 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500505 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
506 size))
507 goto error;
508 return 0;
509error:
510 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
511 first ? "first in block" : "not first in block");
512 return -EIO;
513}
514
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500515static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500516{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500517 const struct gfs2_meta_header *h = buf;
518 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500519
520 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500521
Steven Whitehousee3167de2006-03-30 15:46:23 -0500522 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500523 case GFS2_METATYPE_LF:
524 offset = sizeof(struct gfs2_leaf);
525 break;
526 case GFS2_METATYPE_DI:
527 offset = sizeof(struct gfs2_dinode);
528 break;
529 default:
530 goto wrong_type;
531 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500532 return offset;
533wrong_type:
534 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
Steven Whitehousee3167de2006-03-30 15:46:23 -0500535 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500536 return -1;
537}
Steven Whitehousec7526662006-03-20 12:30:04 -0500538
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400539static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500540 unsigned int len, gfs2_dscan_t scan,
541 const struct qstr *name,
542 void *opaque)
543{
544 struct gfs2_dirent *dent, *prev;
545 unsigned offset;
546 unsigned size;
547 int ret = 0;
548
549 ret = gfs2_dirent_offset(buf);
550 if (ret < 0)
551 goto consist_inode;
552
553 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500554 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400555 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500556 size = be16_to_cpu(dent->de_rec_len);
557 if (gfs2_check_dirent(dent, offset, size, len, 1))
558 goto consist_inode;
559 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500560 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500561 if (ret)
562 break;
563 offset += size;
564 if (offset == len)
565 break;
566 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400567 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500568 size = be16_to_cpu(dent->de_rec_len);
569 if (gfs2_check_dirent(dent, offset, size, len, 0))
570 goto consist_inode;
571 } while(1);
572
573 switch(ret) {
574 case 0:
575 return NULL;
576 case 1:
577 return dent;
578 case 2:
579 return prev ? prev : dent;
580 default:
581 BUG_ON(ret > 0);
582 return ERR_PTR(ret);
583 }
584
Steven Whitehousec7526662006-03-20 12:30:04 -0500585consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400586 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500587 return ERR_PTR(-EIO);
588}
589
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400590static int dirent_check_reclen(struct gfs2_inode *dip,
591 const struct gfs2_dirent *d, const void *end_p)
592{
593 const void *ptr = d;
594 u16 rec_len = be16_to_cpu(d->de_rec_len);
595
596 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
597 goto broken;
598 ptr += rec_len;
599 if (ptr < end_p)
600 return rec_len;
601 if (ptr == end_p)
602 return -ENOENT;
603broken:
604 gfs2_consist_inode(dip);
605 return -EIO;
606}
607
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608/**
609 * dirent_next - Next dirent
610 * @dip: the directory
611 * @bh: The buffer
612 * @dent: Pointer to list of dirents
613 *
614 * Returns: 0 on success, error code otherwise
615 */
616
617static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
618 struct gfs2_dirent **dent)
619{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400620 struct gfs2_dirent *cur = *dent, *tmp;
621 char *bh_end = bh->b_data + bh->b_size;
622 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000623
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400624 ret = dirent_check_reclen(dip, cur, bh_end);
625 if (ret < 0)
626 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400628 tmp = (void *)cur + ret;
629 ret = dirent_check_reclen(dip, tmp, bh_end);
630 if (ret == -EIO)
631 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000632
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500634 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000635 gfs2_consist_inode(dip);
636 return -EIO;
637 }
638
639 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640 return 0;
641}
642
643/**
644 * dirent_del - Delete a dirent
645 * @dip: The GFS2 inode
646 * @bh: The buffer
647 * @prev: The previous dirent
648 * @cur: The current dirent
649 *
650 */
651
652static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
653 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
654{
Steven Whitehousecd915492006-09-04 12:49:07 -0400655 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500657 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658 gfs2_consist_inode(dip);
659 return;
660 }
661
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000662 gfs2_trans_add_meta(dip->i_gl, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000663
664 /* If there is no prev entry, this is the first entry in the block.
665 The de_rec_len is already as big as it needs to be. Just zero
666 out the inode number and return. */
667
668 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500669 cur->de_inum.no_addr = 0;
670 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671 return;
672 }
673
674 /* Combine this dentry with the previous one. */
675
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000676 prev_rec_len = be16_to_cpu(prev->de_rec_len);
677 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000678
679 if ((char *)prev + prev_rec_len != (char *)cur)
680 gfs2_consist_inode(dip);
681 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
682 gfs2_consist_inode(dip);
683
684 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000685 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000686}
687
Steven Whitehousec7526662006-03-20 12:30:04 -0500688/*
689 * Takes a dent from which to grab space as an argument. Returns the
690 * newly created dent.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691 */
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400692static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
693 struct gfs2_dirent *dent,
694 const struct qstr *name,
695 struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000696{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400697 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500698 struct gfs2_dirent *ndent;
699 unsigned offset = 0, totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000700
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500701 if (!gfs2_dirent_sentinel(dent))
Steven Whitehousec7526662006-03-20 12:30:04 -0500702 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
703 totlen = be16_to_cpu(dent->de_rec_len);
704 BUG_ON(offset + name->len > totlen);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000705 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500706 ndent = (struct gfs2_dirent *)((char *)dent + offset);
707 dent->de_rec_len = cpu_to_be16(offset);
708 gfs2_qstr2dirent(name, totlen - offset, ndent);
709 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000710}
711
Steven Whitehousec7526662006-03-20 12:30:04 -0500712static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
713 struct buffer_head *bh,
714 const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715{
716 struct gfs2_dirent *dent;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400717 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500718 gfs2_dirent_find_space, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500719 if (!dent || IS_ERR(dent))
720 return dent;
721 return gfs2_init_dirent(inode, dent, name, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722}
723
Steven Whitehousecd915492006-09-04 12:49:07 -0400724static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 struct buffer_head **bhp)
726{
727 int error;
728
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400729 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400730 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
731 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400733 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734
735 return error;
736}
737
738/**
739 * get_leaf_nr - Get a leaf number associated with the index
740 * @dip: The GFS2 inode
741 * @index:
742 * @leaf_out:
743 *
744 * Returns: 0 on success, error code otherwise
745 */
746
Steven Whitehousecd915492006-09-04 12:49:07 -0400747static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
748 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000749{
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100750 __be64 *hash;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100752 hash = gfs2_dir_get_hash_table(dip);
753 if (IS_ERR(hash))
754 return PTR_ERR(hash);
755 *leaf_out = be64_to_cpu(*(hash + index));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 return 0;
757}
758
Steven Whitehousecd915492006-09-04 12:49:07 -0400759static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 struct buffer_head **bh_out)
761{
Steven Whitehousecd915492006-09-04 12:49:07 -0400762 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 int error;
764
765 error = get_leaf_nr(dip, index, &leaf_no);
766 if (!error)
767 error = get_leaf(dip, leaf_no, bh_out);
768
769 return error;
770}
771
Steven Whitehousec7526662006-03-20 12:30:04 -0500772static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
773 const struct qstr *name,
774 gfs2_dscan_t scan,
775 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000776{
Steven Whitehousec7526662006-03-20 12:30:04 -0500777 struct buffer_head *bh;
778 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400779 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 int error;
781
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000782 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500783 struct gfs2_leaf *leaf;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000784 unsigned hsize = 1 << ip->i_depth;
Steven Whitehousec7526662006-03-20 12:30:04 -0500785 unsigned index;
786 u64 ln;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100787 if (hsize * sizeof(u64) != i_size_read(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500788 gfs2_consist_inode(ip);
789 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400791
Steven Whitehouse9a004502008-02-01 09:23:44 +0000792 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500793 error = get_first_leaf(ip, index, &bh);
794 if (error)
795 return ERR_PTR(error);
796 do {
797 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500798 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500799 if (dent)
800 goto got_dent;
801 leaf = (struct gfs2_leaf *)bh->b_data;
802 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400803 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500804 if (!ln)
805 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400806
Steven Whitehousec7526662006-03-20 12:30:04 -0500807 error = get_leaf(ip, ln, &bh);
808 } while(!error);
809
810 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400813
Steven Whitehousec7526662006-03-20 12:30:04 -0500814 error = gfs2_meta_inode_buffer(ip, &bh);
815 if (error)
816 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500817 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500818got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400819 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400820 brelse(bh);
821 bh = NULL;
822 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500823 *pbh = bh;
824 return dent;
825}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826
Steven Whitehousec7526662006-03-20 12:30:04 -0500827static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
828{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400829 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000830 unsigned int n = 1;
Steven Whitehouse09010972009-05-20 10:48:47 +0100831 u64 bn;
832 int error;
833 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -0500834 struct gfs2_leaf *leaf;
835 struct gfs2_dirent *dent;
Linus Torvalds26fe5752012-05-10 13:14:12 -0700836 struct qstr name = { .name = "" };
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +0000837 struct timespec tv = CURRENT_TIME;
Steven Whitehouse09010972009-05-20 10:48:47 +0100838
Bob Peterson6e87ed02011-11-18 10:58:32 -0500839 error = gfs2_alloc_blocks(ip, &bn, &n, 0, NULL);
Steven Whitehouse09010972009-05-20 10:48:47 +0100840 if (error)
841 return NULL;
842 bh = gfs2_meta_new(ip->i_gl, bn);
Steven Whitehousec7526662006-03-20 12:30:04 -0500843 if (!bh)
844 return NULL;
Steven Whitehouse09010972009-05-20 10:48:47 +0100845
Steven Whitehouse5731be52008-02-01 13:16:55 +0000846 gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, 1);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000847 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500848 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
849 leaf = (struct gfs2_leaf *)bh->b_data;
850 leaf->lf_depth = cpu_to_be16(depth);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400851 leaf->lf_entries = 0;
Al Viroa2d7d022006-10-14 16:49:30 +0100852 leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400853 leaf->lf_next = 0;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +0000854 leaf->lf_inode = cpu_to_be64(ip->i_no_addr);
855 leaf->lf_dist = cpu_to_be32(1);
856 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
857 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
858 memset(leaf->lf_reserved2, 0, sizeof(leaf->lf_reserved2));
Steven Whitehousec7526662006-03-20 12:30:04 -0500859 dent = (struct gfs2_dirent *)(leaf+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500860 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500861 *pbh = bh;
862 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000863}
864
865/**
866 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
867 * @dip: The GFS2 inode
868 *
869 * Returns: 0 on success, error code otherwise
870 */
871
Steven Whitehousec7526662006-03-20 12:30:04 -0500872static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400874 struct gfs2_inode *dip = GFS2_I(inode);
875 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000876 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500877 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000878 struct buffer_head *bh, *dibh;
879 struct gfs2_leaf *leaf;
880 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400881 u32 x;
Al Virob44b84d2006-10-14 10:46:30 -0400882 __be64 *lp;
883 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 int error;
885
886 error = gfs2_meta_inode_buffer(dip, &dibh);
887 if (error)
888 return error;
889
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890 /* Turn over a new leaf */
891
Steven Whitehousec7526662006-03-20 12:30:04 -0500892 leaf = new_leaf(inode, &bh, 0);
893 if (!leaf)
894 return -ENOSPC;
895 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896
Steven Whitehousead6203f2008-11-03 13:59:19 +0000897 gfs2_assert(sdp, dip->i_entries < (1 << 16));
898 leaf->lf_entries = cpu_to_be16(dip->i_entries);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899
900 /* Copy dirents */
901
902 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
903 sizeof(struct gfs2_dinode));
904
905 /* Find last entry */
906
907 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500908 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
909 sizeof(struct gfs2_leaf);
910 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400911 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500912 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500913 if (!dent) {
914 brelse(bh);
915 brelse(dibh);
916 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000917 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500918 if (IS_ERR(dent)) {
919 brelse(bh);
920 brelse(dibh);
921 return PTR_ERR(dent);
922 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000923
924 /* Adjust the last dirent's record length
925 (Remember that dent still points to the last entry.) */
926
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000927 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000929 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000930
931 brelse(bh);
932
933 /* We're done with the new leaf block, now setup the new
934 hash table. */
935
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000936 gfs2_trans_add_meta(dip->i_gl, dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
938
Al Virob44b84d2006-10-14 10:46:30 -0400939 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940
941 for (x = sdp->sd_hash_ptrs; x--; lp++)
942 *lp = cpu_to_be64(bn);
943
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100944 i_size_write(inode, sdp->sd_sb.sb_bsize / 2);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000945 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000946 dip->i_diskflags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947
948 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000949 dip->i_depth = y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000950
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500951 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952
953 brelse(dibh);
954
955 return 0;
956}
957
958/**
959 * dir_split_leaf - Split a leaf block into two
960 * @dip: The GFS2 inode
961 * @index:
962 * @leaf_no:
963 *
964 * Returns: 0 on success, error code on failure
965 */
966
Steven Whitehousec7526662006-03-20 12:30:04 -0500967static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400969 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 struct buffer_head *nbh, *obh, *dibh;
971 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -0400972 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -0400973 u32 start, len, half_len, divider;
Al Virob44b84d2006-10-14 10:46:30 -0400974 u64 bn, leaf_no;
975 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -0400976 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 int x, moved = 0;
978 int error;
979
Steven Whitehouse9a004502008-02-01 09:23:44 +0000980 index = name->hash >> (32 - dip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500981 error = get_leaf_nr(dip, index, &leaf_no);
982 if (error)
983 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984
985 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986 error = get_leaf(dip, leaf_no, &obh);
987 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -0500988 return error;
989
990 oleaf = (struct gfs2_leaf *)obh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000991 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
Steven Whitehousee90deff2006-03-29 19:02:15 -0500992 brelse(obh);
993 return 1; /* can't split */
994 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000996 gfs2_trans_add_meta(dip->i_gl, obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997
Steven Whitehousec7526662006-03-20 12:30:04 -0500998 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
999 if (!nleaf) {
1000 brelse(obh);
1001 return -ENOSPC;
1002 }
1003 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004
Steven Whitehousec7526662006-03-20 12:30:04 -05001005 /* Compute the start and len of leaf pointers in the hash table. */
Steven Whitehouse9a004502008-02-01 09:23:44 +00001006 len = 1 << (dip->i_depth - be16_to_cpu(oleaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 half_len = len >> 1;
1008 if (!half_len) {
Steven Whitehouse9a004502008-02-01 09:23:44 +00001009 printk(KERN_WARNING "i_depth %u lf_depth %u index %u\n", dip->i_depth, be16_to_cpu(oleaf->lf_depth), index);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 gfs2_consist_inode(dip);
1011 error = -EIO;
1012 goto fail_brelse;
1013 }
1014
1015 start = (index & ~(len - 1));
1016
1017 /* Change the pointers.
1018 Don't bother distinguishing stuffed from non-stuffed.
1019 This code is complicated enough already. */
David Rientjes4244b522010-07-20 19:45:03 -07001020 lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS);
1021 if (!lp) {
1022 error = -ENOMEM;
1023 goto fail_brelse;
1024 }
1025
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027 for (x = 0; x < half_len; x++)
1028 lp[x] = cpu_to_be64(bn);
1029
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001030 gfs2_dir_hash_inval(dip);
1031
Steven Whitehousecd915492006-09-04 12:49:07 -04001032 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
1033 half_len * sizeof(u64));
1034 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035 if (error >= 0)
1036 error = -EIO;
1037 goto fail_lpfree;
1038 }
1039
1040 kfree(lp);
1041
1042 /* Compute the divider */
Steven Whitehouse9a004502008-02-01 09:23:44 +00001043 divider = (start + half_len) << (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044
1045 /* Copy the entries */
Steven Whitehouse15793432009-11-06 11:06:37 +00001046 dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047
1048 do {
1049 next = dent;
1050 if (dirent_next(dip, obh, &next))
1051 next = NULL;
1052
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -05001053 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001055 struct qstr str;
1056 str.name = (char*)(dent+1);
1057 str.len = be16_to_cpu(dent->de_name_len);
1058 str.hash = be32_to_cpu(dent->de_hash);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001059 new = gfs2_dirent_alloc(inode, nbh, &str);
Steven Whitehousec7526662006-03-20 12:30:04 -05001060 if (IS_ERR(new)) {
1061 error = PTR_ERR(new);
1062 break;
1063 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001064
1065 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066 new->de_type = dent->de_type; /* No endian worries */
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001067 be16_add_cpu(&nleaf->lf_entries, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001068
1069 dirent_del(dip, obh, prev, dent);
1070
1071 if (!oleaf->lf_entries)
1072 gfs2_consist_inode(dip);
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001073 be16_add_cpu(&oleaf->lf_entries, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001074
1075 if (!prev)
1076 prev = dent;
1077
1078 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001079 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001081 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001083 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084
Steven Whitehousec7526662006-03-20 12:30:04 -05001085 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086
1087 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001088 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001089 gfs2_trans_add_meta(dip->i_gl, dibh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001090 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001091 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092 brelse(dibh);
1093 }
1094
1095 brelse(obh);
1096 brelse(nbh);
1097
1098 return error;
1099
Steven Whitehousee90deff2006-03-29 19:02:15 -05001100fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101 kfree(lp);
1102
Steven Whitehousee90deff2006-03-29 19:02:15 -05001103fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001104 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105 brelse(nbh);
1106 return error;
1107}
1108
1109/**
1110 * dir_double_exhash - Double size of ExHash table
1111 * @dip: The GFS2 dinode
1112 *
1113 * Returns: 0 on success, error code on failure
1114 */
1115
1116static int dir_double_exhash(struct gfs2_inode *dip)
1117{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001118 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001119 u32 hsize;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001120 u32 hsize_bytes;
1121 __be64 *hc;
1122 __be64 *hc2, *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123 int x;
1124 int error = 0;
1125
Steven Whitehouse9a004502008-02-01 09:23:44 +00001126 hsize = 1 << dip->i_depth;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001127 hsize_bytes = hsize * sizeof(__be64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001128
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001129 hc = gfs2_dir_get_hash_table(dip);
1130 if (IS_ERR(hc))
1131 return PTR_ERR(hc);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001132
Bob Peterson512cbf02013-06-14 08:39:18 -04001133 hc2 = kmalloc(hsize_bytes * 2, GFP_NOFS | __GFP_NOWARN);
Bob Petersone8830d82013-05-30 09:48:56 -04001134 if (hc2 == NULL)
1135 hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS, PAGE_KERNEL);
1136
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001137 if (!hc2)
David Rientjes4244b522010-07-20 19:45:03 -07001138 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139
Bob Peterson512cbf02013-06-14 08:39:18 -04001140 h = hc2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001142 if (error)
1143 goto out_kfree;
1144
1145 for (x = 0; x < hsize; x++) {
1146 *h++ = *hc;
1147 *h++ = *hc;
1148 hc++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001149 }
1150
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001151 error = gfs2_dir_write_data(dip, (char *)hc2, 0, hsize_bytes * 2);
1152 if (error != (hsize_bytes * 2))
1153 goto fail;
1154
1155 gfs2_dir_hash_inval(dip);
1156 dip->i_hash_cache = hc2;
1157 dip->i_depth++;
1158 gfs2_dinode_out(dip, dibh->b_data);
1159 brelse(dibh);
1160 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161
Steven Whitehousea91ea692006-09-04 12:04:26 -04001162fail:
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001163 /* Replace original hash table & size */
1164 gfs2_dir_write_data(dip, (char *)hc, 0, hsize_bytes);
1165 i_size_write(&dip->i_inode, hsize_bytes);
1166 gfs2_dinode_out(dip, dibh->b_data);
1167 brelse(dibh);
1168out_kfree:
Bob Petersone8830d82013-05-30 09:48:56 -04001169 if (is_vmalloc_addr(hc2))
1170 vfree(hc2);
1171 else
1172 kfree(hc2);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001173 return error;
1174}
1175
1176/**
1177 * compare_dents - compare directory entries by hash value
1178 * @a: first dent
1179 * @b: second dent
1180 *
1181 * When comparing the hash entries of @a to @b:
1182 * gt: returns 1
1183 * lt: returns -1
1184 * eq: returns 0
1185 */
1186
1187static int compare_dents(const void *a, const void *b)
1188{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001189 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001190 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001191 int ret = 0;
1192
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001193 dent_a = *(const struct gfs2_dirent **)a;
Steven Whitehousec7526662006-03-20 12:30:04 -05001194 hash_a = be32_to_cpu(dent_a->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001195
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001196 dent_b = *(const struct gfs2_dirent **)b;
Steven Whitehousec7526662006-03-20 12:30:04 -05001197 hash_b = be32_to_cpu(dent_b->de_hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001198
1199 if (hash_a > hash_b)
1200 ret = 1;
1201 else if (hash_a < hash_b)
1202 ret = -1;
1203 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001204 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1205 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206
1207 if (len_a > len_b)
1208 ret = 1;
1209 else if (len_a < len_b)
1210 ret = -1;
1211 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001212 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213 }
1214
1215 return ret;
1216}
1217
1218/**
1219 * do_filldir_main - read out directory entries
1220 * @dip: The GFS2 inode
Al Virod81a8ef2013-05-16 14:14:48 -04001221 * @ctx: what to feed the entries to
David Teiglandb3b94fa2006-01-16 16:50:04 +00001222 * @darr: an array of struct gfs2_dirent pointers to read
1223 * @entries: the number of entries in darr
1224 * @copied: pointer to int that's non-zero if a entry has been copied out
1225 *
1226 * Jump through some hoops to make sure that if there are hash collsions,
1227 * they are read out at the beginning of a buffer. We want to minimize
1228 * the possibility that they will fall into different readdir buffers or
1229 * that someone will want to seek to that location.
1230 *
Al Virod81a8ef2013-05-16 14:14:48 -04001231 * Returns: errno, >0 if the actor tells you to stop
David Teiglandb3b94fa2006-01-16 16:50:04 +00001232 */
1233
Al Virod81a8ef2013-05-16 14:14:48 -04001234static int do_filldir_main(struct gfs2_inode *dip, struct dir_context *ctx,
Steven Whitehousecd915492006-09-04 12:49:07 -04001235 const struct gfs2_dirent **darr, u32 entries,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236 int *copied)
1237{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001238 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001239 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240 unsigned int x, y;
1241 int run = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001242
1243 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1244
1245 dent_next = darr[0];
1246 off_next = be32_to_cpu(dent_next->de_hash);
1247 off_next = gfs2_disk_hash2offset(off_next);
1248
1249 for (x = 0, y = 1; x < entries; x++, y++) {
1250 dent = dent_next;
1251 off = off_next;
1252
1253 if (y < entries) {
1254 dent_next = darr[y];
1255 off_next = be32_to_cpu(dent_next->de_hash);
1256 off_next = gfs2_disk_hash2offset(off_next);
1257
Al Virod81a8ef2013-05-16 14:14:48 -04001258 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001260 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261
1262 if (off_next == off) {
1263 if (*copied && !run)
1264 return 1;
1265 run = 1;
1266 } else
1267 run = 0;
1268 } else {
Al Virod81a8ef2013-05-16 14:14:48 -04001269 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001270 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001271 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001272 }
1273
Al Virod81a8ef2013-05-16 14:14:48 -04001274 if (!dir_emit(ctx, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001275 be16_to_cpu(dent->de_name_len),
Al Virod81a8ef2013-05-16 14:14:48 -04001276 be64_to_cpu(dent->de_inum.no_addr),
1277 be16_to_cpu(dent->de_type)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278 return 1;
1279
1280 *copied = 1;
1281 }
1282
Al Virod81a8ef2013-05-16 14:14:48 -04001283 /* Increment the ctx->pos by one, so the next time we come into the
David Teiglandb3b94fa2006-01-16 16:50:04 +00001284 do_filldir fxn, we get the next entry instead of the last one in the
1285 current leaf */
1286
Al Virod81a8ef2013-05-16 14:14:48 -04001287 ctx->pos++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288
1289 return 0;
1290}
1291
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001292static void *gfs2_alloc_sort_buffer(unsigned size)
1293{
1294 void *ptr = NULL;
1295
1296 if (size < KMALLOC_MAX_SIZE)
1297 ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN);
1298 if (!ptr)
1299 ptr = __vmalloc(size, GFP_NOFS, PAGE_KERNEL);
1300 return ptr;
1301}
1302
1303static void gfs2_free_sort_buffer(void *ptr)
1304{
1305 if (is_vmalloc_addr(ptr))
1306 vfree(ptr);
1307 else
1308 kfree(ptr);
1309}
1310
Al Virod81a8ef2013-05-16 14:14:48 -04001311static int gfs2_dir_read_leaf(struct inode *inode, struct dir_context *ctx,
1312 int *copied, unsigned *depth,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001313 u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001314{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001315 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001316 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001317 struct buffer_head *bh;
1318 struct gfs2_leaf *lf;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001319 unsigned entries = 0, entries2 = 0;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001320 unsigned leaves = 0;
1321 const struct gfs2_dirent **darr, *dent;
1322 struct dirent_gather g;
1323 struct buffer_head **larr;
1324 int leaf = 0;
1325 int error, i;
1326 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001327
David Teiglandb3b94fa2006-01-16 16:50:04 +00001328 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001329 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001330 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001331 goto out;
1332 lf = (struct gfs2_leaf *)bh->b_data;
1333 if (leaves == 0)
1334 *depth = be16_to_cpu(lf->lf_depth);
1335 entries += be16_to_cpu(lf->lf_entries);
1336 leaves++;
1337 lfn = be64_to_cpu(lf->lf_next);
1338 brelse(bh);
1339 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001340
1341 if (!entries)
1342 return 0;
1343
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001344 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001345 /*
1346 * The extra 99 entries are not normally used, but are a buffer
1347 * zone in case the number of entries in the leaf is corrupt.
1348 * 99 is the maximum number of entries that can fit in a single
1349 * leaf block.
1350 */
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001351 larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001352 if (!larr)
1353 goto out;
1354 darr = (const struct gfs2_dirent **)(larr + leaves);
1355 g.pdent = darr;
1356 g.offset = 0;
1357 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001358
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001359 do {
1360 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001361 if (error)
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001362 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001363 lf = (struct gfs2_leaf *)bh->b_data;
1364 lfn = be64_to_cpu(lf->lf_next);
1365 if (lf->lf_entries) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001366 entries2 += be16_to_cpu(lf->lf_entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001367 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1368 gfs2_dirent_gather, NULL, &g);
1369 error = PTR_ERR(dent);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001370 if (IS_ERR(dent))
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001371 goto out_free;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001372 if (entries2 != g.offset) {
akpm@linux-foundation.orgf391a4e2007-04-25 21:08:02 -07001373 fs_warn(sdp, "Number of entries corrupt in dir "
1374 "leaf %llu, entries2 (%u) != "
1375 "g.offset (%u)\n",
1376 (unsigned long long)bh->b_blocknr,
1377 entries2, g.offset);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001378
1379 error = -EIO;
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001380 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001381 }
1382 error = 0;
1383 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001384 } else {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001385 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001386 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001387 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001388
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001389 BUG_ON(entries2 != entries);
Al Virod81a8ef2013-05-16 14:14:48 -04001390 error = do_filldir_main(ip, ctx, darr, entries, copied);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001391out_free:
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001392 for(i = 0; i < leaf; i++)
1393 brelse(larr[i]);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001394 gfs2_free_sort_buffer(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001395out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001396 return error;
1397}
1398
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001399/**
1400 * gfs2_dir_readahead - Issue read-ahead requests for leaf blocks.
Bob Petersondfe4d342011-10-27 12:16:06 -04001401 *
1402 * Note: we can't calculate each index like dir_e_read can because we don't
1403 * have the leaf, and therefore we don't have the depth, and therefore we
1404 * don't have the length. So we have to just read enough ahead to make up
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001405 * for the loss of information.
1406 */
Bob Petersondfe4d342011-10-27 12:16:06 -04001407static void gfs2_dir_readahead(struct inode *inode, unsigned hsize, u32 index,
1408 struct file_ra_state *f_ra)
1409{
1410 struct gfs2_inode *ip = GFS2_I(inode);
1411 struct gfs2_glock *gl = ip->i_gl;
1412 struct buffer_head *bh;
1413 u64 blocknr = 0, last;
1414 unsigned count;
1415
1416 /* First check if we've already read-ahead for the whole range. */
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001417 if (index + MAX_RA_BLOCKS < f_ra->start)
Bob Petersondfe4d342011-10-27 12:16:06 -04001418 return;
1419
1420 f_ra->start = max((pgoff_t)index, f_ra->start);
1421 for (count = 0; count < MAX_RA_BLOCKS; count++) {
1422 if (f_ra->start >= hsize) /* if exceeded the hash table */
1423 break;
1424
1425 last = blocknr;
1426 blocknr = be64_to_cpu(ip->i_hash_cache[f_ra->start]);
1427 f_ra->start++;
1428 if (blocknr == last)
1429 continue;
1430
1431 bh = gfs2_getbuf(gl, blocknr, 1);
1432 if (trylock_buffer(bh)) {
1433 if (buffer_uptodate(bh)) {
1434 unlock_buffer(bh);
1435 brelse(bh);
1436 continue;
1437 }
1438 bh->b_end_io = end_buffer_read_sync;
1439 submit_bh(READA | REQ_META, bh);
1440 continue;
1441 }
1442 brelse(bh);
1443 }
1444}
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001445
David Teiglandb3b94fa2006-01-16 16:50:04 +00001446/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001447 * dir_e_read - Reads the entries from a directory into a filldir buffer
1448 * @dip: dinode pointer
Al Virod81a8ef2013-05-16 14:14:48 -04001449 * @ctx: actor to feed the entries to
David Teiglandb3b94fa2006-01-16 16:50:04 +00001450 *
1451 * Returns: errno
1452 */
1453
Al Virod81a8ef2013-05-16 14:14:48 -04001454static int dir_e_read(struct inode *inode, struct dir_context *ctx,
1455 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001456{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001457 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001458 u32 hsize, len = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -04001459 u32 hash, index;
Al Virob44b84d2006-10-14 10:46:30 -04001460 __be64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001461 int copied = 0;
1462 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001463 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001464
Steven Whitehouse9a004502008-02-01 09:23:44 +00001465 hsize = 1 << dip->i_depth;
Al Virod81a8ef2013-05-16 14:14:48 -04001466 hash = gfs2_dir_offset2hash(ctx->pos);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001467 index = hash >> (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001468
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001469 if (dip->i_hash_cache == NULL)
Bob Petersondfe4d342011-10-27 12:16:06 -04001470 f_ra->start = 0;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001471 lp = gfs2_dir_get_hash_table(dip);
1472 if (IS_ERR(lp))
1473 return PTR_ERR(lp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001474
Bob Petersondfe4d342011-10-27 12:16:06 -04001475 gfs2_dir_readahead(inode, hsize, index, f_ra);
1476
David Teiglandb3b94fa2006-01-16 16:50:04 +00001477 while (index < hsize) {
Al Virod81a8ef2013-05-16 14:14:48 -04001478 error = gfs2_dir_read_leaf(inode, ctx,
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001479 &copied, &depth,
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001480 be64_to_cpu(lp[index]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001481 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001482 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001483
Steven Whitehouse9a004502008-02-01 09:23:44 +00001484 len = 1 << (dip->i_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001485 index = (index & ~(len - 1)) + len;
1486 }
1487
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001488 if (error > 0)
1489 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001490 return error;
1491}
1492
Al Virod81a8ef2013-05-16 14:14:48 -04001493int gfs2_dir_read(struct inode *inode, struct dir_context *ctx,
1494 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001495{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001496 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001497 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001498 struct dirent_gather g;
1499 const struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001500 struct buffer_head *dibh;
1501 int copied = 0;
1502 int error;
1503
Steven Whitehousead6203f2008-11-03 13:59:19 +00001504 if (!dip->i_entries)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001505 return 0;
1506
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001507 if (dip->i_diskflags & GFS2_DIF_EXHASH)
Al Virod81a8ef2013-05-16 14:14:48 -04001508 return dir_e_read(inode, ctx, f_ra);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001509
David Teiglandb3b94fa2006-01-16 16:50:04 +00001510 if (!gfs2_is_stuffed(dip)) {
1511 gfs2_consist_inode(dip);
1512 return -EIO;
1513 }
1514
David Teiglandb3b94fa2006-01-16 16:50:04 +00001515 error = gfs2_meta_inode_buffer(dip, &dibh);
1516 if (error)
1517 return error;
1518
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001519 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001520 /* 96 is max number of dirents which can be stuffed into an inode */
Josef Bacik16c5f062008-04-09 09:33:41 -04001521 darr = kmalloc(96 * sizeof(struct gfs2_dirent *), GFP_NOFS);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001522 if (darr) {
1523 g.pdent = darr;
1524 g.offset = 0;
1525 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1526 gfs2_dirent_gather, NULL, &g);
1527 if (IS_ERR(dent)) {
1528 error = PTR_ERR(dent);
1529 goto out;
1530 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001531 if (dip->i_entries != g.offset) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001532 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
Steven Whitehousead6203f2008-11-03 13:59:19 +00001533 "ip->i_entries (%u) != g.offset (%u)\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001534 (unsigned long long)dip->i_no_addr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001535 dip->i_entries,
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001536 g.offset);
1537 error = -EIO;
1538 goto out;
1539 }
Al Virod81a8ef2013-05-16 14:14:48 -04001540 error = do_filldir_main(dip, ctx, darr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001541 dip->i_entries, &copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001542out:
1543 kfree(darr);
1544 }
1545
David Teiglandb3b94fa2006-01-16 16:50:04 +00001546 if (error > 0)
1547 error = 0;
1548
1549 brelse(dibh);
1550
1551 return error;
1552}
1553
David Teiglandb3b94fa2006-01-16 16:50:04 +00001554/**
1555 * gfs2_dir_search - Search a directory
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001556 * @dip: The GFS2 dir inode
1557 * @name: The name we are looking up
1558 * @fail_on_exist: Fail if the name exists rather than looking it up
David Teiglandb3b94fa2006-01-16 16:50:04 +00001559 *
1560 * This routine searches a directory for a file or another directory.
1561 * Assumes a glock is held on dip.
1562 *
1563 * Returns: errno
1564 */
1565
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001566struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name,
1567 bool fail_on_exist)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001568{
Steven Whitehousec7526662006-03-20 12:30:04 -05001569 struct buffer_head *bh;
1570 struct gfs2_dirent *dent;
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001571 u64 addr, formal_ino;
1572 u16 dtype;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001573
1574 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1575 if (dent) {
1576 if (IS_ERR(dent))
David Howellse231c2e2008-02-07 00:15:26 -08001577 return ERR_CAST(dent);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001578 dtype = be16_to_cpu(dent->de_type);
1579 addr = be64_to_cpu(dent->de_inum.no_addr);
1580 formal_ino = be64_to_cpu(dent->de_inum.no_formal_ino);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001581 brelse(bh);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001582 if (fail_on_exist)
1583 return ERR_PTR(-EEXIST);
1584 return gfs2_inode_lookup(dir->i_sb, dtype, addr, formal_ino, 0);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001585 }
1586 return ERR_PTR(-ENOENT);
1587}
1588
1589int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1590 const struct gfs2_inode *ip)
1591{
1592 struct buffer_head *bh;
1593 struct gfs2_dirent *dent;
1594 int ret = -ENOENT;
Steven Whitehousec7526662006-03-20 12:30:04 -05001595
1596 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1597 if (dent) {
1598 if (IS_ERR(dent))
1599 return PTR_ERR(dent);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001600 if (ip) {
1601 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1602 goto out;
1603 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1604 ip->i_no_formal_ino)
1605 goto out;
1606 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1607 be16_to_cpu(dent->de_type))) {
1608 gfs2_consist_inode(GFS2_I(dir));
1609 ret = -EIO;
1610 goto out;
1611 }
1612 }
1613 ret = 0;
1614out:
Steven Whitehousec7526662006-03-20 12:30:04 -05001615 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001616 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001617 return ret;
Steven Whitehousec7526662006-03-20 12:30:04 -05001618}
1619
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001620/**
1621 * dir_new_leaf - Add a new leaf onto hash chain
1622 * @inode: The directory
1623 * @name: The name we are adding
1624 *
1625 * This adds a new dir leaf onto an existing leaf when there is not
1626 * enough space to add a new dir entry. This is a last resort after
1627 * we've expanded the hash table to max size and also split existing
1628 * leaf blocks, so it will only occur for very large directories.
1629 *
1630 * The dist parameter is set to 1 for leaf blocks directly attached
1631 * to the hash table, 2 for one layer of indirection, 3 for two layers
1632 * etc. We are thus able to tell the difference between an old leaf
1633 * with dist set to zero (i.e. "don't know") and a new one where we
1634 * set this information for debug/fsck purposes.
1635 *
1636 * Returns: 0 on success, or -ve on error
1637 */
1638
Steven Whitehousec7526662006-03-20 12:30:04 -05001639static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1640{
1641 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001642 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001643 struct gfs2_leaf *leaf, *oleaf;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001644 u32 dist = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001645 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001646 u32 index;
1647 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001648
Steven Whitehouse9a004502008-02-01 09:23:44 +00001649 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001650 error = get_first_leaf(ip, index, &obh);
1651 if (error)
1652 return error;
1653 do {
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001654 dist++;
Steven Whitehousec7526662006-03-20 12:30:04 -05001655 oleaf = (struct gfs2_leaf *)obh->b_data;
1656 bn = be64_to_cpu(oleaf->lf_next);
1657 if (!bn)
1658 break;
1659 brelse(obh);
1660 error = get_leaf(ip, bn, &obh);
1661 if (error)
1662 return error;
1663 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001664
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001665 gfs2_trans_add_meta(ip->i_gl, obh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001666
1667 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1668 if (!leaf) {
1669 brelse(obh);
1670 return -ENOSPC;
1671 }
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001672 leaf->lf_dist = cpu_to_be32(dist);
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001673 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001674 brelse(bh);
1675 brelse(obh);
1676
1677 error = gfs2_meta_inode_buffer(ip, &bh);
1678 if (error)
1679 return error;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001680 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001681 gfs2_add_inode_blocks(&ip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001682 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001683 brelse(bh);
1684 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001685}
1686
1687/**
1688 * gfs2_dir_add - Add new filename into directory
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001689 * @inode: The directory inode
1690 * @name: The new name
1691 * @nip: The GFS2 inode to be linked in to the directory
1692 * @da: The directory addition info
1693 *
1694 * If the call to gfs2_diradd_alloc_required resulted in there being
1695 * no need to allocate any new directory blocks, then it will contain
1696 * a pointer to the directory entry and the bh in which it resides. We
1697 * can use that without having to repeat the search. If there was no
1698 * free space, then we must now create more space.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001699 *
1700 * Returns: 0 on success, error code on failure
1701 */
1702
Steven Whitehousec7526662006-03-20 12:30:04 -05001703int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001704 const struct gfs2_inode *nip, struct gfs2_diradd *da)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001705{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001706 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001707 struct buffer_head *bh = da->bh;
1708 struct gfs2_dirent *dent = da->dent;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001709 struct timespec tv;
Steven Whitehousec7526662006-03-20 12:30:04 -05001710 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001711 int error;
1712
Steven Whitehousec7526662006-03-20 12:30:04 -05001713 while(1) {
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001714 if (da->bh == NULL) {
1715 dent = gfs2_dirent_search(inode, name,
1716 gfs2_dirent_find_space, &bh);
1717 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001718 if (dent) {
1719 if (IS_ERR(dent))
1720 return PTR_ERR(dent);
1721 dent = gfs2_init_dirent(inode, dent, name, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001722 gfs2_inum_out(nip, dent);
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001723 dent->de_type = cpu_to_be16(IF2DT(nip->i_inode.i_mode));
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001724 tv = CURRENT_TIME;
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001725 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001726 leaf = (struct gfs2_leaf *)bh->b_data;
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001727 be16_add_cpu(&leaf->lf_entries, 1);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001728 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1729 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001730 }
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001731 da->dent = NULL;
1732 da->bh = NULL;
Steven Whitehousec7526662006-03-20 12:30:04 -05001733 brelse(bh);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001734 ip->i_entries++;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001735 ip->i_inode.i_mtime = ip->i_inode.i_ctime = tv;
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001736 if (S_ISDIR(nip->i_inode.i_mode))
1737 inc_nlink(&ip->i_inode);
Bob Peterson343cd8f2012-11-12 13:04:54 -05001738 mark_inode_dirty(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001739 error = 0;
1740 break;
1741 }
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001742 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001743 error = dir_make_exhash(inode);
1744 if (error)
1745 break;
1746 continue;
1747 }
1748 error = dir_split_leaf(inode, name);
1749 if (error == 0)
1750 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001751 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001752 break;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001753 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001754 error = dir_double_exhash(ip);
1755 if (error)
1756 break;
1757 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001758 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001759 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001760 if (error == 0)
1761 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001762 }
1763 error = dir_new_leaf(inode, name);
1764 if (!error)
1765 continue;
1766 error = -ENOSPC;
1767 break;
1768 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001769 return error;
1770}
1771
Steven Whitehousec7526662006-03-20 12:30:04 -05001772
David Teiglandb3b94fa2006-01-16 16:50:04 +00001773/**
1774 * gfs2_dir_del - Delete a directory entry
1775 * @dip: The GFS2 inode
1776 * @filename: The filename
1777 *
1778 * Returns: 0 on success, error code on failure
1779 */
1780
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001781int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001782{
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001783 const struct qstr *name = &dentry->d_name;
Steven Whitehousec7526662006-03-20 12:30:04 -05001784 struct gfs2_dirent *dent, *prev = NULL;
1785 struct buffer_head *bh;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001786 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001787
Steven Whitehousec7526662006-03-20 12:30:04 -05001788 /* Returns _either_ the entry (if its first in block) or the
1789 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001790 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001791 if (!dent) {
1792 gfs2_consist_inode(dip);
1793 return -EIO;
1794 }
1795 if (IS_ERR(dent)) {
1796 gfs2_consist_inode(dip);
1797 return PTR_ERR(dent);
1798 }
1799 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001800 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001801 prev = dent;
1802 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1803 }
1804
1805 dirent_del(dip, bh, prev, dent);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001806 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001807 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1808 u16 entries = be16_to_cpu(leaf->lf_entries);
1809 if (!entries)
1810 gfs2_consist_inode(dip);
1811 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001812 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1813 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001814 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001815 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001816
Steven Whitehousead6203f2008-11-03 13:59:19 +00001817 if (!dip->i_entries)
Steven Whitehousec7526662006-03-20 12:30:04 -05001818 gfs2_consist_inode(dip);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001819 dip->i_entries--;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001820 dip->i_inode.i_mtime = dip->i_inode.i_ctime = tv;
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001821 if (S_ISDIR(dentry->d_inode->i_mode))
1822 drop_nlink(&dip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001823 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001824
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001825 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001826}
1827
David Teiglandb3b94fa2006-01-16 16:50:04 +00001828/**
1829 * gfs2_dir_mvino - Change inode number of directory entry
1830 * @dip: The GFS2 inode
1831 * @filename:
1832 * @new_inode:
1833 *
1834 * This routine changes the inode number of a directory entry. It's used
1835 * by rename to change ".." when a directory is moved.
1836 * Assumes a glock is held on dvp.
1837 *
1838 * Returns: errno
1839 */
1840
Steven Whitehousec7526662006-03-20 12:30:04 -05001841int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001842 const struct gfs2_inode *nip, unsigned int new_type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001843{
Steven Whitehousec7526662006-03-20 12:30:04 -05001844 struct buffer_head *bh;
1845 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001846 int error;
1847
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001848 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001849 if (!dent) {
1850 gfs2_consist_inode(dip);
1851 return -EIO;
1852 }
1853 if (IS_ERR(dent))
1854 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001855
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001856 gfs2_trans_add_meta(dip->i_gl, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001857 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001858 dent->de_type = cpu_to_be16(new_type);
1859
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001860 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001861 brelse(bh);
1862 error = gfs2_meta_inode_buffer(dip, &bh);
1863 if (error)
1864 return error;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001865 gfs2_trans_add_meta(dip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001866 }
1867
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001868 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001869 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001870 brelse(bh);
1871 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001872}
1873
1874/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001875 * leaf_dealloc - Deallocate a directory leaf
1876 * @dip: the directory
1877 * @index: the hash table offset in the directory
1878 * @len: the number of pointers to this leaf
1879 * @leaf_no: the leaf number
Bob Petersonec038c82011-03-22 13:55:23 -04001880 * @leaf_bh: buffer_head for the starting leaf
Bob Petersond24a7a42011-03-22 13:54:03 -04001881 * last_dealloc: 1 if this is the final dealloc for the leaf, else 0
David Teiglandb3b94fa2006-01-16 16:50:04 +00001882 *
1883 * Returns: errno
1884 */
1885
Steven Whitehousecd915492006-09-04 12:49:07 -04001886static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
Bob Petersonec038c82011-03-22 13:55:23 -04001887 u64 leaf_no, struct buffer_head *leaf_bh,
1888 int last_dealloc)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001889{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001890 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001891 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001892 struct gfs2_rgrp_list rlist;
1893 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001894 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001895 unsigned int rg_blocks = 0, l_blocks = 0;
1896 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001897 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001898 int error;
1899
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001900 error = gfs2_rindex_update(sdp);
1901 if (error)
1902 return error;
1903
David Teiglandb3b94fa2006-01-16 16:50:04 +00001904 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1905
Joe Perches8be04b92013-06-19 12:15:53 -07001906 ht = kzalloc(size, GFP_NOFS | __GFP_NOWARN);
Bob Petersone8830d82013-05-30 09:48:56 -04001907 if (ht == NULL)
1908 ht = vzalloc(size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001909 if (!ht)
1910 return -ENOMEM;
1911
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001912 error = gfs2_quota_hold(dip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001913 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04001914 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001915
David Teiglandb3b94fa2006-01-16 16:50:04 +00001916 /* Count the number of leaves */
Bob Petersonec038c82011-03-22 13:55:23 -04001917 bh = leaf_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001918
Steven Whitehousec7526662006-03-20 12:30:04 -05001919 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04001920 if (blk != leaf_no) {
1921 error = get_leaf(dip, blk, &bh);
1922 if (error)
1923 goto out_rlist;
1924 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001925 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1926 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04001927 if (blk != leaf_no)
1928 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001929
Steven Whitehouse70b0c362011-09-02 16:08:09 +01001930 gfs2_rlist_add(dip, &rlist, blk);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001931 l_blocks++;
1932 }
1933
Bob Petersonfe6c9912008-01-28 11:13:02 -06001934 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001935
1936 for (x = 0; x < rlist.rl_rgrps; x++) {
1937 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001938 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001939 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001940 }
1941
1942 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1943 if (error)
1944 goto out_rlist;
1945
1946 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001947 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001948 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1949 if (error)
1950 goto out_rg_gunlock;
1951
Bob Petersonec038c82011-03-22 13:55:23 -04001952 bh = leaf_bh;
1953
Steven Whitehousec7526662006-03-20 12:30:04 -05001954 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04001955 if (blk != leaf_no) {
1956 error = get_leaf(dip, blk, &bh);
1957 if (error)
1958 goto out_end_trans;
1959 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001960 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1961 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04001962 if (blk != leaf_no)
1963 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001964
1965 gfs2_free_meta(dip, blk, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001966 gfs2_add_inode_blocks(&dip->i_inode, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001967 }
1968
Steven Whitehousecd915492006-09-04 12:49:07 -04001969 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001970 if (error != size) {
1971 if (error >= 0)
1972 error = -EIO;
1973 goto out_end_trans;
1974 }
1975
1976 error = gfs2_meta_inode_buffer(dip, &dibh);
1977 if (error)
1978 goto out_end_trans;
1979
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001980 gfs2_trans_add_meta(dip->i_gl, dibh);
Bob Petersond24a7a42011-03-22 13:54:03 -04001981 /* On the last dealloc, make this a regular file in case we crash.
1982 (We don't want to free these blocks a second time.) */
1983 if (last_dealloc)
1984 dip->i_inode.i_mode = S_IFREG;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001985 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001986 brelse(dibh);
1987
Steven Whitehousea91ea692006-09-04 12:04:26 -04001988out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001989 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001990out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001991 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001992out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001993 gfs2_rlist_free(&rlist);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001994 gfs2_quota_unhold(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001995out:
Bob Petersone8830d82013-05-30 09:48:56 -04001996 if (is_vmalloc_addr(ht))
1997 vfree(ht);
1998 else
1999 kfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002000 return error;
2001}
2002
2003/**
2004 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
2005 * @dip: the directory
2006 *
2007 * Dealloc all on-disk directory leaves to FREEMETA state
2008 * Change on-disk inode type to "regular file"
2009 *
2010 * Returns: errno
2011 */
2012
2013int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
2014{
Bob Peterson556bb172011-03-22 13:56:37 -04002015 struct buffer_head *bh;
2016 struct gfs2_leaf *leaf;
2017 u32 hsize, len;
Bob Peterson556bb172011-03-22 13:56:37 -04002018 u32 index = 0, next_index;
2019 __be64 *lp;
2020 u64 leaf_no;
2021 int error = 0, last;
2022
2023 hsize = 1 << dip->i_depth;
Bob Peterson556bb172011-03-22 13:56:37 -04002024
Steven Whitehouse17d539f2011-06-15 10:29:37 +01002025 lp = gfs2_dir_get_hash_table(dip);
2026 if (IS_ERR(lp))
2027 return PTR_ERR(lp);
Bob Peterson556bb172011-03-22 13:56:37 -04002028
2029 while (index < hsize) {
Steven Whitehouse17d539f2011-06-15 10:29:37 +01002030 leaf_no = be64_to_cpu(lp[index]);
Bob Peterson556bb172011-03-22 13:56:37 -04002031 if (leaf_no) {
2032 error = get_leaf(dip, leaf_no, &bh);
2033 if (error)
2034 goto out;
2035 leaf = (struct gfs2_leaf *)bh->b_data;
2036 len = 1 << (dip->i_depth - be16_to_cpu(leaf->lf_depth));
2037
2038 next_index = (index & ~(len - 1)) + len;
2039 last = ((next_index >= hsize) ? 1 : 0);
2040 error = leaf_dealloc(dip, index, len, leaf_no, bh,
2041 last);
2042 brelse(bh);
2043 if (error)
2044 goto out;
2045 index = next_index;
2046 } else
2047 index++;
2048 }
2049
2050 if (index != hsize) {
2051 gfs2_consist_inode(dip);
2052 error = -EIO;
2053 }
2054
2055out:
Bob Peterson556bb172011-03-22 13:56:37 -04002056
2057 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002058}
2059
2060/**
2061 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
2062 * @ip: the file being written to
2063 * @filname: the filename that's going to be added
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002064 * @da: The structure to return dir alloc info
David Teiglandb3b94fa2006-01-16 16:50:04 +00002065 *
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002066 * Returns: 0 if ok, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00002067 */
2068
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002069int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name,
2070 struct gfs2_diradd *da)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002071{
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002072 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002073 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002074 const unsigned int extra = sizeof(struct gfs2_dinode) - sizeof(struct gfs2_leaf);
Steven Whitehousec7526662006-03-20 12:30:04 -05002075 struct gfs2_dirent *dent;
2076 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002077
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002078 da->nr_blocks = 0;
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00002079 da->bh = NULL;
2080 da->dent = NULL;
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002081
Steven Whitehousec7526662006-03-20 12:30:04 -05002082 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04002083 if (!dent) {
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002084 da->nr_blocks = sdp->sd_max_dirres;
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002085 if (!(ip->i_diskflags & GFS2_DIF_EXHASH) &&
2086 (GFS2_DIRENT_SIZE(name->len) < extra))
2087 da->nr_blocks = 1;
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002088 return 0;
Steven Whitehouseed386502006-04-07 16:28:07 -04002089 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002090 if (IS_ERR(dent))
2091 return PTR_ERR(dent);
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00002092 da->bh = bh;
2093 da->dent = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05002094 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002095}
2096