blob: 79113219be5f983c7ecf62d56c5fd6d6f87a57b6 [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
Joe Perchesd77d1b52014-03-06 12:10:45 -080056#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
57
David Teiglandb3b94fa2006-01-16 16:50:04 +000058#include <linux/slab.h>
59#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000060#include <linux/buffer_head.h>
61#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050062#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050063#include <linux/crc32.h>
Steven Whitehousefe1bded2006-04-18 10:09:15 -040064#include <linux/vmalloc.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060065#include <linux/bio.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000066
67#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050068#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000069#include "dir.h"
70#include "glock.h"
71#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000072#include "meta_io.h"
73#include "quota.h"
74#include "rgrp.h"
75#include "trans.h"
Steven Whitehousee13940b2006-01-30 13:31:50 +000076#include "bmap.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050077#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000078
79#define IS_LEAF 1 /* Hashed (leaf) directory */
80#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
81
Bob Petersondfe4d342011-10-27 12:16:06 -040082#define MAX_RA_BLOCKS 32 /* max read-ahead blocks */
83
Steven Whitehousecd915492006-09-04 12:49:07 -040084#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
85#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
Benjamin Marzinski471f3db2015-12-01 08:46:55 -060086#define GFS2_HASH_INDEX_MASK 0xffffc000
87#define GFS2_USE_HASH_FLAG 0x2000
David Teiglandb3b94fa2006-01-16 16:50:04 +000088
Steven Whitehouse8d123582010-09-17 12:30:23 +010089struct qstr gfs2_qdot __read_mostly;
90struct qstr gfs2_qdotdot __read_mostly;
91
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040092typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
93 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000094
Steven Whitehousecd915492006-09-04 12:49:07 -040095int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040096 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000097{
98 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000099
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400100 bh = gfs2_meta_new(ip->i_gl, block);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000101 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400102 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
103 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000104 *bhp = bh;
105 return 0;
106}
107
Steven Whitehousecd915492006-09-04 12:49:07 -0400108static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400109 struct buffer_head **bhp)
110{
111 struct buffer_head *bh;
112 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000113
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600114 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, 0, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400115 if (error)
116 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400117 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400118 brelse(bh);
119 return -EIO;
120 }
121 *bhp = bh;
122 return 0;
123}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000124
125static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
126 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000127{
128 struct buffer_head *dibh;
129 int error;
130
131 error = gfs2_meta_inode_buffer(ip, &dibh);
132 if (error)
133 return error;
134
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000135 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500136 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100137 if (ip->i_inode.i_size < offset + size)
138 i_size_write(&ip->i_inode, offset + size);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700139 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500140 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000141
142 brelse(dibh);
143
144 return size;
145}
146
147
148
149/**
150 * gfs2_dir_write_data - Write directory information to the inode
151 * @ip: The GFS2 inode
152 * @buf: The buffer containing information to be written
153 * @offset: The file offset to start writing at
154 * @size: The amount of data to write
155 *
156 * Returns: The number of bytes correctly written or error code
157 */
158static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400159 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000160{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400161 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000162 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400163 u64 lblock, dblock;
164 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000165 unsigned int o;
166 int copied = 0;
167 int error = 0;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000168 int new = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000169
170 if (!size)
171 return 0;
172
173 if (gfs2_is_stuffed(ip) &&
174 offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500175 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
176 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000177
178 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
179 return -EINVAL;
180
181 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400182 error = gfs2_unstuff_dinode(ip, NULL);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000183 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500184 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000185 }
186
187 lblock = offset;
188 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
189
190 while (copied < size) {
191 unsigned int amount;
192 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000193
194 amount = size - copied;
195 if (amount > sdp->sd_sb.sb_bsize - o)
196 amount = sdp->sd_sb.sb_bsize - o;
197
198 if (!extlen) {
199 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400200 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400201 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000202 if (error)
203 goto fail;
204 error = -EIO;
205 if (gfs2_assert_withdraw(sdp, dblock))
206 goto fail;
207 }
208
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400209 if (amount == sdp->sd_jbsize || new)
210 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
211 else
212 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
213
Steven Whitehousee13940b2006-01-30 13:31:50 +0000214 if (error)
215 goto fail;
216
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000217 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000218 memcpy(bh->b_data + o, buf, amount);
219 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000220
Steven Whitehouse899bb262006-08-01 15:28:57 -0400221 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000222 copied += amount;
223 lblock++;
224 dblock++;
225 extlen--;
226
227 o = sizeof(struct gfs2_meta_header);
228 }
229
230out:
231 error = gfs2_meta_inode_buffer(ip, &dibh);
232 if (error)
233 return error;
234
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100235 if (ip->i_inode.i_size < offset + copied)
236 i_size_write(&ip->i_inode, offset + copied);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700237 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000238
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000239 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500240 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000241 brelse(dibh);
242
243 return copied;
244fail:
245 if (copied)
246 goto out;
247 return error;
248}
249
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100250static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, __be64 *buf,
251 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000252{
253 struct buffer_head *dibh;
254 int error;
255
256 error = gfs2_meta_inode_buffer(ip, &dibh);
257 if (!error) {
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100258 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000259 brelse(dibh);
260 }
261
262 return (error) ? error : size;
263}
264
265
266/**
267 * gfs2_dir_read_data - Read a data from a directory inode
268 * @ip: The GFS2 Inode
269 * @buf: The buffer to place result into
Steven Whitehousee13940b2006-01-30 13:31:50 +0000270 * @size: Amount of data to transfer
271 *
272 * Returns: The amount of data actually copied or the error
273 */
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100274static int gfs2_dir_read_data(struct gfs2_inode *ip, __be64 *buf,
275 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000276{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400277 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400278 u64 lblock, dblock;
279 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000280 unsigned int o;
281 int copied = 0;
282 int error = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000283
284 if (gfs2_is_stuffed(ip))
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100285 return gfs2_dir_read_stuffed(ip, buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000286
287 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
288 return -EINVAL;
289
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100290 lblock = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000291 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
292
293 while (copied < size) {
294 unsigned int amount;
295 struct buffer_head *bh;
296 int new;
297
298 amount = size - copied;
299 if (amount > sdp->sd_sb.sb_bsize - o)
300 amount = sdp->sd_sb.sb_bsize - o;
301
302 if (!extlen) {
303 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400304 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400305 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400306 if (error || !dblock)
307 goto fail;
308 BUG_ON(extlen < 1);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400309 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200310 } else {
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600311 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, 0, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000312 if (error)
313 goto fail;
314 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400315 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
316 if (error) {
317 brelse(bh);
318 goto fail;
319 }
320 dblock++;
321 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000322 memcpy(buf, bh->b_data + o, amount);
323 brelse(bh);
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100324 buf += (amount/sizeof(__be64));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000325 copied += amount;
326 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000327 o = sizeof(struct gfs2_meta_header);
328 }
329
330 return copied;
331fail:
332 return (copied) ? copied : error;
333}
334
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100335/**
336 * gfs2_dir_get_hash_table - Get pointer to the dir hash table
337 * @ip: The inode in question
338 *
339 * Returns: The hash table or an error
340 */
341
342static __be64 *gfs2_dir_get_hash_table(struct gfs2_inode *ip)
343{
344 struct inode *inode = &ip->i_inode;
345 int ret;
346 u32 hsize;
347 __be64 *hc;
348
349 BUG_ON(!(ip->i_diskflags & GFS2_DIF_EXHASH));
350
351 hc = ip->i_hash_cache;
352 if (hc)
353 return hc;
354
Fabian Frederick47a9a522016-08-02 12:05:27 -0500355 hsize = BIT(ip->i_depth);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100356 hsize *= sizeof(__be64);
357 if (hsize != i_size_read(&ip->i_inode)) {
358 gfs2_consist_inode(ip);
359 return ERR_PTR(-EIO);
360 }
361
Bob Petersone8830d82013-05-30 09:48:56 -0400362 hc = kmalloc(hsize, GFP_NOFS | __GFP_NOWARN);
363 if (hc == NULL)
364 hc = __vmalloc(hsize, GFP_NOFS, PAGE_KERNEL);
365
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100366 if (hc == NULL)
367 return ERR_PTR(-ENOMEM);
368
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100369 ret = gfs2_dir_read_data(ip, hc, hsize);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100370 if (ret < 0) {
Al Viro3cdcf632014-11-20 05:18:38 +0000371 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100372 return ERR_PTR(ret);
373 }
374
375 spin_lock(&inode->i_lock);
Al Viro9265f1d2014-11-20 05:19:47 +0000376 if (likely(!ip->i_hash_cache)) {
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100377 ip->i_hash_cache = hc;
Al Viro9265f1d2014-11-20 05:19:47 +0000378 hc = NULL;
379 }
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100380 spin_unlock(&inode->i_lock);
Al Viro9265f1d2014-11-20 05:19:47 +0000381 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100382
383 return ip->i_hash_cache;
384}
385
386/**
387 * gfs2_dir_hash_inval - Invalidate dir hash
388 * @ip: The directory inode
389 *
390 * Must be called with an exclusive glock, or during glock invalidation.
391 */
392void gfs2_dir_hash_inval(struct gfs2_inode *ip)
393{
Bob Petersonc36b97e2015-10-29 10:03:41 -0500394 __be64 *hc;
395
396 spin_lock(&ip->i_inode.i_lock);
397 hc = ip->i_hash_cache;
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100398 ip->i_hash_cache = NULL;
Bob Petersonc36b97e2015-10-29 10:03:41 -0500399 spin_unlock(&ip->i_inode.i_lock);
400
Al Viro3cdcf632014-11-20 05:18:38 +0000401 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100402}
403
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500404static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
405{
406 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
407}
408
Steven Whitehousec7526662006-03-20 12:30:04 -0500409static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
410 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000411{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500412 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500413 be32_to_cpu(dent->de_hash) == name->hash &&
414 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400415 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500416 return ret;
417 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000418}
419
Steven Whitehousec7526662006-03-20 12:30:04 -0500420static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500421 const struct qstr *name,
422 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500423{
424 return __gfs2_dirent_find(dent, name, 1);
425}
426
427static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500428 const struct qstr *name,
429 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500430{
431 return __gfs2_dirent_find(dent, name, 2);
432}
433
434/*
435 * name->name holds ptr to start of block.
436 * name->len holds size of block.
437 */
438static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500439 const struct qstr *name,
440 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500441{
442 const char *start = name->name;
443 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
444 if (name->len == (end - start))
445 return 1;
446 return 0;
447}
448
Benjamin Marzinski34017472015-12-01 08:30:34 -0600449/* Look for the dirent that contains the offset specified in data. Once we
450 * find that dirent, there must be space available there for the new dirent */
451static int gfs2_dirent_find_offset(const struct gfs2_dirent *dent,
452 const struct qstr *name,
453 void *ptr)
454{
455 unsigned required = GFS2_DIRENT_SIZE(name->len);
456 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
457 unsigned totlen = be16_to_cpu(dent->de_rec_len);
458
459 if (ptr < (void *)dent || ptr >= (void *)dent + totlen)
460 return 0;
461 if (gfs2_dirent_sentinel(dent))
462 actual = 0;
463 if (ptr < (void *)dent + actual)
464 return -1;
465 if ((void *)dent + totlen >= ptr + required)
466 return 1;
467 return -1;
468}
469
Steven Whitehousec7526662006-03-20 12:30:04 -0500470static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500471 const struct qstr *name,
472 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500473{
474 unsigned required = GFS2_DIRENT_SIZE(name->len);
475 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
476 unsigned totlen = be16_to_cpu(dent->de_rec_len);
477
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500478 if (gfs2_dirent_sentinel(dent))
Bob Peterson728a7562010-07-14 18:12:26 -0400479 actual = 0;
Jan Engelhardtc53921242006-09-05 14:30:40 +0200480 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500481 return 1;
482 return 0;
483}
484
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500485struct dirent_gather {
486 const struct gfs2_dirent **pdent;
487 unsigned offset;
488};
489
490static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
491 const struct qstr *name,
492 void *opaque)
493{
494 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500495 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500496 g->pdent[g->offset++] = dent;
497 }
498 return 0;
499}
500
Steven Whitehousec7526662006-03-20 12:30:04 -0500501/*
502 * Other possible things to check:
503 * - Inode located within filesystem size (and on valid block)
504 * - Valid directory entry type
505 * Not sure how heavy-weight we want to make this... could also check
506 * hash is correct for example, but that would take a lot of extra time.
507 * For now the most important thing is to check that the various sizes
508 * are correct.
509 */
510static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
511 unsigned int size, unsigned int len, int first)
512{
513 const char *msg = "gfs2_dirent too small";
514 if (unlikely(size < sizeof(struct gfs2_dirent)))
515 goto error;
516 msg = "gfs2_dirent misaligned";
517 if (unlikely(offset & 0x7))
518 goto error;
519 msg = "gfs2_dirent points beyond end of block";
520 if (unlikely(offset + size > len))
521 goto error;
522 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500523 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500524 goto error;
525 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500526 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500527 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
528 size))
529 goto error;
530 return 0;
531error:
Joe Perchesd77d1b52014-03-06 12:10:45 -0800532 pr_warn("%s: %s (%s)\n",
533 __func__, msg, first ? "first in block" : "not first in block");
Steven Whitehousec7526662006-03-20 12:30:04 -0500534 return -EIO;
535}
536
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500537static int gfs2_dirent_offset(const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500538{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500539 const struct gfs2_meta_header *h = buf;
540 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500541
542 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500543
Steven Whitehousee3167de2006-03-30 15:46:23 -0500544 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500545 case GFS2_METATYPE_LF:
546 offset = sizeof(struct gfs2_leaf);
547 break;
548 case GFS2_METATYPE_DI:
549 offset = sizeof(struct gfs2_dinode);
550 break;
551 default:
552 goto wrong_type;
553 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500554 return offset;
555wrong_type:
Joe Perchesd77d1b52014-03-06 12:10:45 -0800556 pr_warn("%s: wrong block type %u\n", __func__, be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500557 return -1;
558}
Steven Whitehousec7526662006-03-20 12:30:04 -0500559
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400560static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500561 unsigned int len, gfs2_dscan_t scan,
562 const struct qstr *name,
563 void *opaque)
564{
565 struct gfs2_dirent *dent, *prev;
566 unsigned offset;
567 unsigned size;
568 int ret = 0;
569
570 ret = gfs2_dirent_offset(buf);
571 if (ret < 0)
572 goto consist_inode;
573
574 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500575 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400576 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500577 size = be16_to_cpu(dent->de_rec_len);
578 if (gfs2_check_dirent(dent, offset, size, len, 1))
579 goto consist_inode;
580 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500581 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500582 if (ret)
583 break;
584 offset += size;
585 if (offset == len)
586 break;
587 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400588 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500589 size = be16_to_cpu(dent->de_rec_len);
590 if (gfs2_check_dirent(dent, offset, size, len, 0))
591 goto consist_inode;
592 } while(1);
593
594 switch(ret) {
595 case 0:
596 return NULL;
597 case 1:
598 return dent;
599 case 2:
600 return prev ? prev : dent;
601 default:
602 BUG_ON(ret > 0);
603 return ERR_PTR(ret);
604 }
605
Steven Whitehousec7526662006-03-20 12:30:04 -0500606consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400607 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500608 return ERR_PTR(-EIO);
609}
610
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400611static int dirent_check_reclen(struct gfs2_inode *dip,
612 const struct gfs2_dirent *d, const void *end_p)
613{
614 const void *ptr = d;
615 u16 rec_len = be16_to_cpu(d->de_rec_len);
616
617 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
618 goto broken;
619 ptr += rec_len;
620 if (ptr < end_p)
621 return rec_len;
622 if (ptr == end_p)
623 return -ENOENT;
624broken:
625 gfs2_consist_inode(dip);
626 return -EIO;
627}
628
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629/**
630 * dirent_next - Next dirent
631 * @dip: the directory
632 * @bh: The buffer
633 * @dent: Pointer to list of dirents
634 *
635 * Returns: 0 on success, error code otherwise
636 */
637
638static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
639 struct gfs2_dirent **dent)
640{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400641 struct gfs2_dirent *cur = *dent, *tmp;
642 char *bh_end = bh->b_data + bh->b_size;
643 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000644
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400645 ret = dirent_check_reclen(dip, cur, bh_end);
646 if (ret < 0)
647 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400649 tmp = (void *)cur + ret;
650 ret = dirent_check_reclen(dip, tmp, bh_end);
651 if (ret == -EIO)
652 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000653
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500655 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 gfs2_consist_inode(dip);
657 return -EIO;
658 }
659
660 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661 return 0;
662}
663
664/**
665 * dirent_del - Delete a dirent
666 * @dip: The GFS2 inode
667 * @bh: The buffer
668 * @prev: The previous dirent
669 * @cur: The current dirent
670 *
671 */
672
673static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
674 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
675{
Steven Whitehousecd915492006-09-04 12:49:07 -0400676 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500678 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000679 gfs2_consist_inode(dip);
680 return;
681 }
682
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000683 gfs2_trans_add_meta(dip->i_gl, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000684
685 /* If there is no prev entry, this is the first entry in the block.
686 The de_rec_len is already as big as it needs to be. Just zero
687 out the inode number and return. */
688
689 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500690 cur->de_inum.no_addr = 0;
691 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000692 return;
693 }
694
695 /* Combine this dentry with the previous one. */
696
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000697 prev_rec_len = be16_to_cpu(prev->de_rec_len);
698 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699
700 if ((char *)prev + prev_rec_len != (char *)cur)
701 gfs2_consist_inode(dip);
702 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
703 gfs2_consist_inode(dip);
704
705 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000706 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707}
708
Benjamin Marzinski34017472015-12-01 08:30:34 -0600709
710static struct gfs2_dirent *do_init_dirent(struct inode *inode,
711 struct gfs2_dirent *dent,
712 const struct qstr *name,
713 struct buffer_head *bh,
714 unsigned offset)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400716 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500717 struct gfs2_dirent *ndent;
Benjamin Marzinski34017472015-12-01 08:30:34 -0600718 unsigned totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719
Steven Whitehousec7526662006-03-20 12:30:04 -0500720 totlen = be16_to_cpu(dent->de_rec_len);
721 BUG_ON(offset + name->len > totlen);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000722 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500723 ndent = (struct gfs2_dirent *)((char *)dent + offset);
724 dent->de_rec_len = cpu_to_be16(offset);
725 gfs2_qstr2dirent(name, totlen - offset, ndent);
726 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727}
728
Benjamin Marzinski34017472015-12-01 08:30:34 -0600729
730/*
731 * Takes a dent from which to grab space as an argument. Returns the
732 * newly created dent.
733 */
734static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
735 struct gfs2_dirent *dent,
736 const struct qstr *name,
737 struct buffer_head *bh)
738{
739 unsigned offset = 0;
740
741 if (!gfs2_dirent_sentinel(dent))
742 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
743 return do_init_dirent(inode, dent, name, bh, offset);
744}
745
746static struct gfs2_dirent *gfs2_dirent_split_alloc(struct inode *inode,
747 struct buffer_head *bh,
748 const struct qstr *name,
749 void *ptr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750{
751 struct gfs2_dirent *dent;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400752 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Benjamin Marzinski34017472015-12-01 08:30:34 -0600753 gfs2_dirent_find_offset, name, ptr);
Steven Whitehousec7526662006-03-20 12:30:04 -0500754 if (!dent || IS_ERR(dent))
755 return dent;
Benjamin Marzinski34017472015-12-01 08:30:34 -0600756 return do_init_dirent(inode, dent, name, bh,
757 (unsigned)(ptr - (void *)dent));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000758}
759
Steven Whitehousecd915492006-09-04 12:49:07 -0400760static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761 struct buffer_head **bhp)
762{
763 int error;
764
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600765 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, 0, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400766 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800767 /* pr_info("block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400769 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000770
771 return error;
772}
773
774/**
775 * get_leaf_nr - Get a leaf number associated with the index
776 * @dip: The GFS2 inode
777 * @index:
778 * @leaf_out:
779 *
780 * Returns: 0 on success, error code otherwise
781 */
782
Steven Whitehousecd915492006-09-04 12:49:07 -0400783static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
784 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000785{
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100786 __be64 *hash;
Arnd Bergmann287980e2016-05-27 23:23:25 +0200787 int error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100789 hash = gfs2_dir_get_hash_table(dip);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200790 error = PTR_ERR_OR_ZERO(hash);
791
792 if (!error)
793 *leaf_out = be64_to_cpu(*(hash + index));
794
795 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796}
797
Steven Whitehousecd915492006-09-04 12:49:07 -0400798static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 struct buffer_head **bh_out)
800{
Steven Whitehousecd915492006-09-04 12:49:07 -0400801 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 int error;
803
804 error = get_leaf_nr(dip, index, &leaf_no);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200805 if (!error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806 error = get_leaf(dip, leaf_no, bh_out);
807
808 return error;
809}
810
Steven Whitehousec7526662006-03-20 12:30:04 -0500811static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
812 const struct qstr *name,
813 gfs2_dscan_t scan,
814 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000815{
Steven Whitehousec7526662006-03-20 12:30:04 -0500816 struct buffer_head *bh;
817 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400818 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000819 int error;
820
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000821 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500822 struct gfs2_leaf *leaf;
Fabian Frederick47a9a522016-08-02 12:05:27 -0500823 unsigned int hsize = BIT(ip->i_depth);
824 unsigned int index;
Steven Whitehousec7526662006-03-20 12:30:04 -0500825 u64 ln;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100826 if (hsize * sizeof(u64) != i_size_read(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500827 gfs2_consist_inode(ip);
828 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000829 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400830
Steven Whitehouse9a004502008-02-01 09:23:44 +0000831 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500832 error = get_first_leaf(ip, index, &bh);
833 if (error)
834 return ERR_PTR(error);
835 do {
836 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500837 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500838 if (dent)
839 goto got_dent;
840 leaf = (struct gfs2_leaf *)bh->b_data;
841 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400842 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500843 if (!ln)
844 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400845
Steven Whitehousec7526662006-03-20 12:30:04 -0500846 error = get_leaf(ip, ln, &bh);
847 } while(!error);
848
849 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000851
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400852
Steven Whitehousec7526662006-03-20 12:30:04 -0500853 error = gfs2_meta_inode_buffer(ip, &bh);
854 if (error)
855 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500856 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500857got_dent:
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400858 if (unlikely(dent == NULL || IS_ERR(dent))) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400859 brelse(bh);
860 bh = NULL;
861 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500862 *pbh = bh;
863 return dent;
864}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000865
Steven Whitehousec7526662006-03-20 12:30:04 -0500866static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
867{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400868 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000869 unsigned int n = 1;
Steven Whitehouse09010972009-05-20 10:48:47 +0100870 u64 bn;
871 int error;
872 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -0500873 struct gfs2_leaf *leaf;
874 struct gfs2_dirent *dent;
Linus Torvalds26fe5752012-05-10 13:14:12 -0700875 struct qstr name = { .name = "" };
Deepa Dinamani078cd822016-09-14 07:48:04 -0700876 struct timespec tv = current_time(inode);
Steven Whitehouse09010972009-05-20 10:48:47 +0100877
Bob Peterson6e87ed02011-11-18 10:58:32 -0500878 error = gfs2_alloc_blocks(ip, &bn, &n, 0, NULL);
Steven Whitehouse09010972009-05-20 10:48:47 +0100879 if (error)
880 return NULL;
881 bh = gfs2_meta_new(ip->i_gl, bn);
Steven Whitehousec7526662006-03-20 12:30:04 -0500882 if (!bh)
883 return NULL;
Steven Whitehouse09010972009-05-20 10:48:47 +0100884
Steven Whitehouse5731be52008-02-01 13:16:55 +0000885 gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, 1);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000886 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500887 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
888 leaf = (struct gfs2_leaf *)bh->b_data;
889 leaf->lf_depth = cpu_to_be16(depth);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400890 leaf->lf_entries = 0;
Al Viroa2d7d022006-10-14 16:49:30 +0100891 leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400892 leaf->lf_next = 0;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +0000893 leaf->lf_inode = cpu_to_be64(ip->i_no_addr);
894 leaf->lf_dist = cpu_to_be32(1);
895 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
896 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
897 memset(leaf->lf_reserved2, 0, sizeof(leaf->lf_reserved2));
Steven Whitehousec7526662006-03-20 12:30:04 -0500898 dent = (struct gfs2_dirent *)(leaf+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500899 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500900 *pbh = bh;
901 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902}
903
904/**
905 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
906 * @dip: The GFS2 inode
907 *
908 * Returns: 0 on success, error code otherwise
909 */
910
Steven Whitehousec7526662006-03-20 12:30:04 -0500911static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400913 struct gfs2_inode *dip = GFS2_I(inode);
914 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500916 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000917 struct buffer_head *bh, *dibh;
918 struct gfs2_leaf *leaf;
919 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400920 u32 x;
Al Virob44b84d2006-10-14 10:46:30 -0400921 __be64 *lp;
922 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000923 int error;
924
925 error = gfs2_meta_inode_buffer(dip, &dibh);
926 if (error)
927 return error;
928
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 /* Turn over a new leaf */
930
Steven Whitehousec7526662006-03-20 12:30:04 -0500931 leaf = new_leaf(inode, &bh, 0);
932 if (!leaf)
933 return -ENOSPC;
934 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935
Fabian Frederick47a9a522016-08-02 12:05:27 -0500936 gfs2_assert(sdp, dip->i_entries < BIT(16));
Steven Whitehousead6203f2008-11-03 13:59:19 +0000937 leaf->lf_entries = cpu_to_be16(dip->i_entries);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938
939 /* Copy dirents */
940
941 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
942 sizeof(struct gfs2_dinode));
943
944 /* Find last entry */
945
946 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500947 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
948 sizeof(struct gfs2_leaf);
949 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400950 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500951 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500952 if (!dent) {
953 brelse(bh);
954 brelse(dibh);
955 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000956 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500957 if (IS_ERR(dent)) {
958 brelse(bh);
959 brelse(dibh);
960 return PTR_ERR(dent);
961 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962
963 /* Adjust the last dirent's record length
964 (Remember that dent still points to the last entry.) */
965
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000966 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000968 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969
970 brelse(bh);
971
972 /* We're done with the new leaf block, now setup the new
973 hash table. */
974
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000975 gfs2_trans_add_meta(dip->i_gl, dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
977
Al Virob44b84d2006-10-14 10:46:30 -0400978 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000979
980 for (x = sdp->sd_hash_ptrs; x--; lp++)
981 *lp = cpu_to_be64(bn);
982
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100983 i_size_write(inode, sdp->sd_sb.sb_bsize / 2);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000984 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000985 dip->i_diskflags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986
987 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000988 dip->i_depth = y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500990 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000991
992 brelse(dibh);
993
994 return 0;
995}
996
997/**
998 * dir_split_leaf - Split a leaf block into two
999 * @dip: The GFS2 inode
1000 * @index:
1001 * @leaf_no:
1002 *
1003 * Returns: 0 on success, error code on failure
1004 */
1005
Steven Whitehousec7526662006-03-20 12:30:04 -05001006static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001008 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001009 struct buffer_head *nbh, *obh, *dibh;
1010 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001011 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -04001012 u32 start, len, half_len, divider;
Al Virob44b84d2006-10-14 10:46:30 -04001013 u64 bn, leaf_no;
1014 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -04001015 u32 index;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001016 int x, moved = 0;
1017 int error;
1018
Steven Whitehouse9a004502008-02-01 09:23:44 +00001019 index = name->hash >> (32 - dip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001020 error = get_leaf_nr(dip, index, &leaf_no);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001021 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -05001022 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023
1024 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025 error = get_leaf(dip, leaf_no, &obh);
1026 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -05001027 return error;
1028
1029 oleaf = (struct gfs2_leaf *)obh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001030 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
Steven Whitehousee90deff2006-03-29 19:02:15 -05001031 brelse(obh);
1032 return 1; /* can't split */
1033 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001034
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001035 gfs2_trans_add_meta(dip->i_gl, obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036
Steven Whitehousec7526662006-03-20 12:30:04 -05001037 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
1038 if (!nleaf) {
1039 brelse(obh);
1040 return -ENOSPC;
1041 }
1042 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001043
Steven Whitehousec7526662006-03-20 12:30:04 -05001044 /* Compute the start and len of leaf pointers in the hash table. */
Fabian Frederick47a9a522016-08-02 12:05:27 -05001045 len = BIT(dip->i_depth - be16_to_cpu(oleaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001046 half_len = len >> 1;
1047 if (!half_len) {
Joe Perchesd77d1b52014-03-06 12:10:45 -08001048 pr_warn("i_depth %u lf_depth %u index %u\n",
1049 dip->i_depth, be16_to_cpu(oleaf->lf_depth), index);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001050 gfs2_consist_inode(dip);
1051 error = -EIO;
1052 goto fail_brelse;
1053 }
1054
1055 start = (index & ~(len - 1));
1056
1057 /* Change the pointers.
1058 Don't bother distinguishing stuffed from non-stuffed.
1059 This code is complicated enough already. */
David Rientjes4244b522010-07-20 19:45:03 -07001060 lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS);
1061 if (!lp) {
1062 error = -ENOMEM;
1063 goto fail_brelse;
1064 }
1065
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 for (x = 0; x < half_len; x++)
1068 lp[x] = cpu_to_be64(bn);
1069
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001070 gfs2_dir_hash_inval(dip);
1071
Steven Whitehousecd915492006-09-04 12:49:07 -04001072 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
1073 half_len * sizeof(u64));
1074 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001075 if (error >= 0)
1076 error = -EIO;
1077 goto fail_lpfree;
1078 }
1079
1080 kfree(lp);
1081
1082 /* Compute the divider */
Steven Whitehouse9a004502008-02-01 09:23:44 +00001083 divider = (start + half_len) << (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084
1085 /* Copy the entries */
Steven Whitehouse15793432009-11-06 11:06:37 +00001086 dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001087
1088 do {
1089 next = dent;
1090 if (dirent_next(dip, obh, &next))
1091 next = NULL;
1092
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -05001093 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001095 struct qstr str;
Benjamin Marzinski34017472015-12-01 08:30:34 -06001096 void *ptr = ((char *)dent - obh->b_data) + nbh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -05001097 str.name = (char*)(dent+1);
1098 str.len = be16_to_cpu(dent->de_name_len);
1099 str.hash = be32_to_cpu(dent->de_hash);
Benjamin Marzinski34017472015-12-01 08:30:34 -06001100 new = gfs2_dirent_split_alloc(inode, nbh, &str, ptr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001101 if (IS_ERR(new)) {
1102 error = PTR_ERR(new);
1103 break;
1104 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105
1106 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107 new->de_type = dent->de_type; /* No endian worries */
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001108 be16_add_cpu(&nleaf->lf_entries, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001109
1110 dirent_del(dip, obh, prev, dent);
1111
1112 if (!oleaf->lf_entries)
1113 gfs2_consist_inode(dip);
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001114 be16_add_cpu(&oleaf->lf_entries, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115
1116 if (!prev)
1117 prev = dent;
1118
1119 moved = 1;
Steven Whitehousec7526662006-03-20 12:30:04 -05001120 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001122 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001124 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001125
Steven Whitehousec7526662006-03-20 12:30:04 -05001126 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001127
1128 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001129 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001130 gfs2_trans_add_meta(dip->i_gl, dibh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001131 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001132 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001133 brelse(dibh);
1134 }
1135
1136 brelse(obh);
1137 brelse(nbh);
1138
1139 return error;
1140
Steven Whitehousee90deff2006-03-29 19:02:15 -05001141fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001142 kfree(lp);
1143
Steven Whitehousee90deff2006-03-29 19:02:15 -05001144fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001145 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001146 brelse(nbh);
1147 return error;
1148}
1149
1150/**
1151 * dir_double_exhash - Double size of ExHash table
1152 * @dip: The GFS2 dinode
1153 *
1154 * Returns: 0 on success, error code on failure
1155 */
1156
1157static int dir_double_exhash(struct gfs2_inode *dip)
1158{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001159 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001160 u32 hsize;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001161 u32 hsize_bytes;
1162 __be64 *hc;
1163 __be64 *hc2, *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001164 int x;
1165 int error = 0;
1166
Fabian Frederick47a9a522016-08-02 12:05:27 -05001167 hsize = BIT(dip->i_depth);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001168 hsize_bytes = hsize * sizeof(__be64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001169
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001170 hc = gfs2_dir_get_hash_table(dip);
1171 if (IS_ERR(hc))
1172 return PTR_ERR(hc);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001173
Bob Peterson512cbf02013-06-14 08:39:18 -04001174 hc2 = kmalloc(hsize_bytes * 2, GFP_NOFS | __GFP_NOWARN);
Bob Petersone8830d82013-05-30 09:48:56 -04001175 if (hc2 == NULL)
1176 hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS, PAGE_KERNEL);
1177
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001178 if (!hc2)
David Rientjes4244b522010-07-20 19:45:03 -07001179 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001180
Bob Peterson512cbf02013-06-14 08:39:18 -04001181 h = hc2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001182 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001183 if (error)
1184 goto out_kfree;
1185
1186 for (x = 0; x < hsize; x++) {
1187 *h++ = *hc;
1188 *h++ = *hc;
1189 hc++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001190 }
1191
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001192 error = gfs2_dir_write_data(dip, (char *)hc2, 0, hsize_bytes * 2);
1193 if (error != (hsize_bytes * 2))
1194 goto fail;
1195
1196 gfs2_dir_hash_inval(dip);
1197 dip->i_hash_cache = hc2;
1198 dip->i_depth++;
1199 gfs2_dinode_out(dip, dibh->b_data);
1200 brelse(dibh);
1201 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202
Steven Whitehousea91ea692006-09-04 12:04:26 -04001203fail:
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001204 /* Replace original hash table & size */
1205 gfs2_dir_write_data(dip, (char *)hc, 0, hsize_bytes);
1206 i_size_write(&dip->i_inode, hsize_bytes);
1207 gfs2_dinode_out(dip, dibh->b_data);
1208 brelse(dibh);
1209out_kfree:
Al Viro3cdcf632014-11-20 05:18:38 +00001210 kvfree(hc2);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 return error;
1212}
1213
1214/**
1215 * compare_dents - compare directory entries by hash value
1216 * @a: first dent
1217 * @b: second dent
1218 *
1219 * When comparing the hash entries of @a to @b:
1220 * gt: returns 1
1221 * lt: returns -1
1222 * eq: returns 0
1223 */
1224
1225static int compare_dents(const void *a, const void *b)
1226{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001227 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001228 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001229 int ret = 0;
1230
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001231 dent_a = *(const struct gfs2_dirent **)a;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001232 hash_a = dent_a->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001233
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001234 dent_b = *(const struct gfs2_dirent **)b;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001235 hash_b = dent_b->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236
1237 if (hash_a > hash_b)
1238 ret = 1;
1239 else if (hash_a < hash_b)
1240 ret = -1;
1241 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001242 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1243 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001244
1245 if (len_a > len_b)
1246 ret = 1;
1247 else if (len_a < len_b)
1248 ret = -1;
1249 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001250 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001251 }
1252
1253 return ret;
1254}
1255
1256/**
1257 * do_filldir_main - read out directory entries
1258 * @dip: The GFS2 inode
Al Virod81a8ef2013-05-16 14:14:48 -04001259 * @ctx: what to feed the entries to
David Teiglandb3b94fa2006-01-16 16:50:04 +00001260 * @darr: an array of struct gfs2_dirent pointers to read
1261 * @entries: the number of entries in darr
1262 * @copied: pointer to int that's non-zero if a entry has been copied out
1263 *
1264 * Jump through some hoops to make sure that if there are hash collsions,
1265 * they are read out at the beginning of a buffer. We want to minimize
1266 * the possibility that they will fall into different readdir buffers or
1267 * that someone will want to seek to that location.
1268 *
Al Virod81a8ef2013-05-16 14:14:48 -04001269 * Returns: errno, >0 if the actor tells you to stop
David Teiglandb3b94fa2006-01-16 16:50:04 +00001270 */
1271
Al Virod81a8ef2013-05-16 14:14:48 -04001272static int do_filldir_main(struct gfs2_inode *dip, struct dir_context *ctx,
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001273 struct gfs2_dirent **darr, u32 entries,
1274 u32 sort_start, int *copied)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001276 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001277 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278 unsigned int x, y;
1279 int run = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001281 if (sort_start < entries)
1282 sort(&darr[sort_start], entries - sort_start,
1283 sizeof(struct gfs2_dirent *), compare_dents, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001284
1285 dent_next = darr[0];
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001286 off_next = dent_next->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001287
1288 for (x = 0, y = 1; x < entries; x++, y++) {
1289 dent = dent_next;
1290 off = off_next;
1291
1292 if (y < entries) {
1293 dent_next = darr[y];
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001294 off_next = dent_next->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001295
Al Virod81a8ef2013-05-16 14:14:48 -04001296 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001297 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001298 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001299
1300 if (off_next == off) {
1301 if (*copied && !run)
1302 return 1;
1303 run = 1;
1304 } else
1305 run = 0;
1306 } else {
Al Virod81a8ef2013-05-16 14:14:48 -04001307 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001308 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001309 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001310 }
1311
Al Virod81a8ef2013-05-16 14:14:48 -04001312 if (!dir_emit(ctx, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001313 be16_to_cpu(dent->de_name_len),
Al Virod81a8ef2013-05-16 14:14:48 -04001314 be64_to_cpu(dent->de_inum.no_addr),
1315 be16_to_cpu(dent->de_type)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001316 return 1;
1317
1318 *copied = 1;
1319 }
1320
Al Virod81a8ef2013-05-16 14:14:48 -04001321 /* Increment the ctx->pos by one, so the next time we come into the
David Teiglandb3b94fa2006-01-16 16:50:04 +00001322 do_filldir fxn, we get the next entry instead of the last one in the
1323 current leaf */
1324
Al Virod81a8ef2013-05-16 14:14:48 -04001325 ctx->pos++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001326
1327 return 0;
1328}
1329
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001330static void *gfs2_alloc_sort_buffer(unsigned size)
1331{
1332 void *ptr = NULL;
1333
1334 if (size < KMALLOC_MAX_SIZE)
1335 ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN);
1336 if (!ptr)
1337 ptr = __vmalloc(size, GFP_NOFS, PAGE_KERNEL);
1338 return ptr;
1339}
1340
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001341
1342static int gfs2_set_cookies(struct gfs2_sbd *sdp, struct buffer_head *bh,
1343 unsigned leaf_nr, struct gfs2_dirent **darr,
1344 unsigned entries)
1345{
1346 int sort_id = -1;
1347 int i;
1348
1349 for (i = 0; i < entries; i++) {
1350 unsigned offset;
1351
1352 darr[i]->de_cookie = be32_to_cpu(darr[i]->de_hash);
1353 darr[i]->de_cookie = gfs2_disk_hash2offset(darr[i]->de_cookie);
1354
1355 if (!sdp->sd_args.ar_loccookie)
1356 continue;
1357 offset = (char *)(darr[i]) -
1358 (bh->b_data + gfs2_dirent_offset(bh->b_data));
1359 offset /= GFS2_MIN_DIRENT_SIZE;
1360 offset += leaf_nr * sdp->sd_max_dents_per_leaf;
1361 if (offset >= GFS2_USE_HASH_FLAG ||
1362 leaf_nr >= GFS2_USE_HASH_FLAG) {
1363 darr[i]->de_cookie |= GFS2_USE_HASH_FLAG;
1364 if (sort_id < 0)
1365 sort_id = i;
1366 continue;
1367 }
1368 darr[i]->de_cookie &= GFS2_HASH_INDEX_MASK;
1369 darr[i]->de_cookie |= offset;
1370 }
1371 return sort_id;
1372}
1373
1374
Al Virod81a8ef2013-05-16 14:14:48 -04001375static int gfs2_dir_read_leaf(struct inode *inode, struct dir_context *ctx,
1376 int *copied, unsigned *depth,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001377 u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001378{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001379 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001380 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001381 struct buffer_head *bh;
1382 struct gfs2_leaf *lf;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001383 unsigned entries = 0, entries2 = 0;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001384 unsigned leaves = 0, leaf = 0, offset, sort_offset;
1385 struct gfs2_dirent **darr, *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001386 struct dirent_gather g;
1387 struct buffer_head **larr;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001388 int error, i, need_sort = 0, sort_id;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001389 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001390
David Teiglandb3b94fa2006-01-16 16:50:04 +00001391 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001392 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001393 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001394 goto out;
1395 lf = (struct gfs2_leaf *)bh->b_data;
1396 if (leaves == 0)
1397 *depth = be16_to_cpu(lf->lf_depth);
1398 entries += be16_to_cpu(lf->lf_entries);
1399 leaves++;
1400 lfn = be64_to_cpu(lf->lf_next);
1401 brelse(bh);
1402 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001403
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001404 if (*depth < GFS2_DIR_MAX_DEPTH || !sdp->sd_args.ar_loccookie) {
1405 need_sort = 1;
1406 sort_offset = 0;
1407 }
1408
David Teiglandb3b94fa2006-01-16 16:50:04 +00001409 if (!entries)
1410 return 0;
1411
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001412 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001413 /*
1414 * The extra 99 entries are not normally used, but are a buffer
1415 * zone in case the number of entries in the leaf is corrupt.
1416 * 99 is the maximum number of entries that can fit in a single
1417 * leaf block.
1418 */
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001419 larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001420 if (!larr)
1421 goto out;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001422 darr = (struct gfs2_dirent **)(larr + leaves);
1423 g.pdent = (const struct gfs2_dirent **)darr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001424 g.offset = 0;
1425 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001426
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001427 do {
1428 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001429 if (error)
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001430 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001431 lf = (struct gfs2_leaf *)bh->b_data;
1432 lfn = be64_to_cpu(lf->lf_next);
1433 if (lf->lf_entries) {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001434 offset = g.offset;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001435 entries2 += be16_to_cpu(lf->lf_entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001436 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1437 gfs2_dirent_gather, NULL, &g);
1438 error = PTR_ERR(dent);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001439 if (IS_ERR(dent))
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001440 goto out_free;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001441 if (entries2 != g.offset) {
akpm@linux-foundation.orgf391a4e2007-04-25 21:08:02 -07001442 fs_warn(sdp, "Number of entries corrupt in dir "
1443 "leaf %llu, entries2 (%u) != "
1444 "g.offset (%u)\n",
1445 (unsigned long long)bh->b_blocknr,
1446 entries2, g.offset);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001447
1448 error = -EIO;
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001449 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001450 }
1451 error = 0;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001452 sort_id = gfs2_set_cookies(sdp, bh, leaf, &darr[offset],
1453 be16_to_cpu(lf->lf_entries));
1454 if (!need_sort && sort_id >= 0) {
1455 need_sort = 1;
1456 sort_offset = offset + sort_id;
1457 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001458 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001459 } else {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001460 larr[leaf++] = NULL;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001461 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001462 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001463 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001464
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001465 BUG_ON(entries2 != entries);
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001466 error = do_filldir_main(ip, ctx, darr, entries, need_sort ?
1467 sort_offset : entries, copied);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001468out_free:
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001469 for(i = 0; i < leaf; i++)
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001470 if (larr[i])
1471 brelse(larr[i]);
Al Viro3cdcf632014-11-20 05:18:38 +00001472 kvfree(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001473out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001474 return error;
1475}
1476
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001477/**
1478 * gfs2_dir_readahead - Issue read-ahead requests for leaf blocks.
Bob Petersondfe4d342011-10-27 12:16:06 -04001479 *
1480 * Note: we can't calculate each index like dir_e_read can because we don't
1481 * have the leaf, and therefore we don't have the depth, and therefore we
1482 * don't have the length. So we have to just read enough ahead to make up
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001483 * for the loss of information.
1484 */
Bob Petersondfe4d342011-10-27 12:16:06 -04001485static void gfs2_dir_readahead(struct inode *inode, unsigned hsize, u32 index,
1486 struct file_ra_state *f_ra)
1487{
1488 struct gfs2_inode *ip = GFS2_I(inode);
1489 struct gfs2_glock *gl = ip->i_gl;
1490 struct buffer_head *bh;
1491 u64 blocknr = 0, last;
1492 unsigned count;
1493
1494 /* First check if we've already read-ahead for the whole range. */
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001495 if (index + MAX_RA_BLOCKS < f_ra->start)
Bob Petersondfe4d342011-10-27 12:16:06 -04001496 return;
1497
1498 f_ra->start = max((pgoff_t)index, f_ra->start);
1499 for (count = 0; count < MAX_RA_BLOCKS; count++) {
1500 if (f_ra->start >= hsize) /* if exceeded the hash table */
1501 break;
1502
1503 last = blocknr;
1504 blocknr = be64_to_cpu(ip->i_hash_cache[f_ra->start]);
1505 f_ra->start++;
1506 if (blocknr == last)
1507 continue;
1508
1509 bh = gfs2_getbuf(gl, blocknr, 1);
1510 if (trylock_buffer(bh)) {
1511 if (buffer_uptodate(bh)) {
1512 unlock_buffer(bh);
1513 brelse(bh);
1514 continue;
1515 }
1516 bh->b_end_io = end_buffer_read_sync;
Christoph Hellwig70246282016-07-19 11:28:41 +02001517 submit_bh(REQ_OP_READ, REQ_RAHEAD | REQ_META, bh);
Bob Petersondfe4d342011-10-27 12:16:06 -04001518 continue;
1519 }
1520 brelse(bh);
1521 }
1522}
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001523
David Teiglandb3b94fa2006-01-16 16:50:04 +00001524/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001525 * dir_e_read - Reads the entries from a directory into a filldir buffer
1526 * @dip: dinode pointer
Al Virod81a8ef2013-05-16 14:14:48 -04001527 * @ctx: actor to feed the entries to
David Teiglandb3b94fa2006-01-16 16:50:04 +00001528 *
1529 * Returns: errno
1530 */
1531
Al Virod81a8ef2013-05-16 14:14:48 -04001532static int dir_e_read(struct inode *inode, struct dir_context *ctx,
1533 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001534{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001535 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001536 u32 hsize, len = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -04001537 u32 hash, index;
Al Virob44b84d2006-10-14 10:46:30 -04001538 __be64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001539 int copied = 0;
1540 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001541 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001542
Fabian Frederick47a9a522016-08-02 12:05:27 -05001543 hsize = BIT(dip->i_depth);
Al Virod81a8ef2013-05-16 14:14:48 -04001544 hash = gfs2_dir_offset2hash(ctx->pos);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001545 index = hash >> (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001546
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001547 if (dip->i_hash_cache == NULL)
Bob Petersondfe4d342011-10-27 12:16:06 -04001548 f_ra->start = 0;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001549 lp = gfs2_dir_get_hash_table(dip);
1550 if (IS_ERR(lp))
1551 return PTR_ERR(lp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001552
Bob Petersondfe4d342011-10-27 12:16:06 -04001553 gfs2_dir_readahead(inode, hsize, index, f_ra);
1554
David Teiglandb3b94fa2006-01-16 16:50:04 +00001555 while (index < hsize) {
Al Virod81a8ef2013-05-16 14:14:48 -04001556 error = gfs2_dir_read_leaf(inode, ctx,
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001557 &copied, &depth,
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001558 be64_to_cpu(lp[index]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001559 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001560 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001561
Fabian Frederick47a9a522016-08-02 12:05:27 -05001562 len = BIT(dip->i_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001563 index = (index & ~(len - 1)) + len;
1564 }
1565
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001566 if (error > 0)
1567 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001568 return error;
1569}
1570
Al Virod81a8ef2013-05-16 14:14:48 -04001571int gfs2_dir_read(struct inode *inode, struct dir_context *ctx,
1572 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001573{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001574 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001575 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001576 struct dirent_gather g;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001577 struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001578 struct buffer_head *dibh;
1579 int copied = 0;
1580 int error;
1581
Steven Whitehousead6203f2008-11-03 13:59:19 +00001582 if (!dip->i_entries)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001583 return 0;
1584
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001585 if (dip->i_diskflags & GFS2_DIF_EXHASH)
Al Virod81a8ef2013-05-16 14:14:48 -04001586 return dir_e_read(inode, ctx, f_ra);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001587
David Teiglandb3b94fa2006-01-16 16:50:04 +00001588 if (!gfs2_is_stuffed(dip)) {
1589 gfs2_consist_inode(dip);
1590 return -EIO;
1591 }
1592
David Teiglandb3b94fa2006-01-16 16:50:04 +00001593 error = gfs2_meta_inode_buffer(dip, &dibh);
1594 if (error)
1595 return error;
1596
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001597 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001598 /* 96 is max number of dirents which can be stuffed into an inode */
Josef Bacik16c5f062008-04-09 09:33:41 -04001599 darr = kmalloc(96 * sizeof(struct gfs2_dirent *), GFP_NOFS);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001600 if (darr) {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001601 g.pdent = (const struct gfs2_dirent **)darr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001602 g.offset = 0;
1603 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1604 gfs2_dirent_gather, NULL, &g);
1605 if (IS_ERR(dent)) {
1606 error = PTR_ERR(dent);
1607 goto out;
1608 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001609 if (dip->i_entries != g.offset) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001610 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
Steven Whitehousead6203f2008-11-03 13:59:19 +00001611 "ip->i_entries (%u) != g.offset (%u)\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001612 (unsigned long long)dip->i_no_addr,
Steven Whitehousead6203f2008-11-03 13:59:19 +00001613 dip->i_entries,
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001614 g.offset);
1615 error = -EIO;
1616 goto out;
1617 }
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001618 gfs2_set_cookies(sdp, dibh, 0, darr, dip->i_entries);
Al Virod81a8ef2013-05-16 14:14:48 -04001619 error = do_filldir_main(dip, ctx, darr,
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001620 dip->i_entries, 0, &copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001621out:
1622 kfree(darr);
1623 }
1624
David Teiglandb3b94fa2006-01-16 16:50:04 +00001625 if (error > 0)
1626 error = 0;
1627
1628 brelse(dibh);
1629
1630 return error;
1631}
1632
David Teiglandb3b94fa2006-01-16 16:50:04 +00001633/**
1634 * gfs2_dir_search - Search a directory
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001635 * @dip: The GFS2 dir inode
1636 * @name: The name we are looking up
1637 * @fail_on_exist: Fail if the name exists rather than looking it up
David Teiglandb3b94fa2006-01-16 16:50:04 +00001638 *
1639 * This routine searches a directory for a file or another directory.
1640 * Assumes a glock is held on dip.
1641 *
1642 * Returns: errno
1643 */
1644
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001645struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name,
1646 bool fail_on_exist)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001647{
Steven Whitehousec7526662006-03-20 12:30:04 -05001648 struct buffer_head *bh;
1649 struct gfs2_dirent *dent;
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001650 u64 addr, formal_ino;
1651 u16 dtype;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001652
1653 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1654 if (dent) {
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001655 struct inode *inode;
1656 u16 rahead;
1657
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001658 if (IS_ERR(dent))
David Howellse231c2e2008-02-07 00:15:26 -08001659 return ERR_CAST(dent);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001660 dtype = be16_to_cpu(dent->de_type);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001661 rahead = be16_to_cpu(dent->de_rahead);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001662 addr = be64_to_cpu(dent->de_inum.no_addr);
1663 formal_ino = be64_to_cpu(dent->de_inum.no_formal_ino);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001664 brelse(bh);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001665 if (fail_on_exist)
1666 return ERR_PTR(-EEXIST);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -05001667 inode = gfs2_inode_lookup(dir->i_sb, dtype, addr, formal_ino,
1668 GFS2_BLKST_FREE /* ignore */);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001669 if (!IS_ERR(inode))
1670 GFS2_I(inode)->i_rahead = rahead;
1671 return inode;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001672 }
1673 return ERR_PTR(-ENOENT);
1674}
1675
1676int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1677 const struct gfs2_inode *ip)
1678{
1679 struct buffer_head *bh;
1680 struct gfs2_dirent *dent;
1681 int ret = -ENOENT;
Steven Whitehousec7526662006-03-20 12:30:04 -05001682
1683 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1684 if (dent) {
1685 if (IS_ERR(dent))
1686 return PTR_ERR(dent);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001687 if (ip) {
1688 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1689 goto out;
1690 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1691 ip->i_no_formal_ino)
1692 goto out;
1693 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1694 be16_to_cpu(dent->de_type))) {
1695 gfs2_consist_inode(GFS2_I(dir));
1696 ret = -EIO;
1697 goto out;
1698 }
1699 }
1700 ret = 0;
1701out:
Steven Whitehousec7526662006-03-20 12:30:04 -05001702 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001703 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001704 return ret;
Steven Whitehousec7526662006-03-20 12:30:04 -05001705}
1706
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001707/**
1708 * dir_new_leaf - Add a new leaf onto hash chain
1709 * @inode: The directory
1710 * @name: The name we are adding
1711 *
1712 * This adds a new dir leaf onto an existing leaf when there is not
1713 * enough space to add a new dir entry. This is a last resort after
1714 * we've expanded the hash table to max size and also split existing
1715 * leaf blocks, so it will only occur for very large directories.
1716 *
1717 * The dist parameter is set to 1 for leaf blocks directly attached
1718 * to the hash table, 2 for one layer of indirection, 3 for two layers
1719 * etc. We are thus able to tell the difference between an old leaf
1720 * with dist set to zero (i.e. "don't know") and a new one where we
1721 * set this information for debug/fsck purposes.
1722 *
1723 * Returns: 0 on success, or -ve on error
1724 */
1725
Steven Whitehousec7526662006-03-20 12:30:04 -05001726static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1727{
1728 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001729 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001730 struct gfs2_leaf *leaf, *oleaf;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001731 u32 dist = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001732 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001733 u32 index;
1734 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001735
Steven Whitehouse9a004502008-02-01 09:23:44 +00001736 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001737 error = get_first_leaf(ip, index, &obh);
1738 if (error)
1739 return error;
1740 do {
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001741 dist++;
Steven Whitehousec7526662006-03-20 12:30:04 -05001742 oleaf = (struct gfs2_leaf *)obh->b_data;
1743 bn = be64_to_cpu(oleaf->lf_next);
1744 if (!bn)
1745 break;
1746 brelse(obh);
1747 error = get_leaf(ip, bn, &obh);
1748 if (error)
1749 return error;
1750 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001751
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001752 gfs2_trans_add_meta(ip->i_gl, obh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001753
1754 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1755 if (!leaf) {
1756 brelse(obh);
1757 return -ENOSPC;
1758 }
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001759 leaf->lf_dist = cpu_to_be32(dist);
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001760 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001761 brelse(bh);
1762 brelse(obh);
1763
1764 error = gfs2_meta_inode_buffer(ip, &bh);
1765 if (error)
1766 return error;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001767 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001768 gfs2_add_inode_blocks(&ip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001769 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001770 brelse(bh);
1771 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001772}
1773
Steven Whitehouse44aaada2014-02-07 11:23:22 +00001774static u16 gfs2_inode_ra_len(const struct gfs2_inode *ip)
1775{
1776 u64 where = ip->i_no_addr + 1;
1777 if (ip->i_eattr == where)
1778 return 1;
1779 return 0;
1780}
1781
David Teiglandb3b94fa2006-01-16 16:50:04 +00001782/**
1783 * gfs2_dir_add - Add new filename into directory
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001784 * @inode: The directory inode
1785 * @name: The new name
1786 * @nip: The GFS2 inode to be linked in to the directory
1787 * @da: The directory addition info
1788 *
1789 * If the call to gfs2_diradd_alloc_required resulted in there being
1790 * no need to allocate any new directory blocks, then it will contain
1791 * a pointer to the directory entry and the bh in which it resides. We
1792 * can use that without having to repeat the search. If there was no
1793 * free space, then we must now create more space.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001794 *
1795 * Returns: 0 on success, error code on failure
1796 */
1797
Steven Whitehousec7526662006-03-20 12:30:04 -05001798int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001799 const struct gfs2_inode *nip, struct gfs2_diradd *da)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001800{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001801 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001802 struct buffer_head *bh = da->bh;
1803 struct gfs2_dirent *dent = da->dent;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001804 struct timespec tv;
Steven Whitehousec7526662006-03-20 12:30:04 -05001805 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001806 int error;
1807
Steven Whitehousec7526662006-03-20 12:30:04 -05001808 while(1) {
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001809 if (da->bh == NULL) {
1810 dent = gfs2_dirent_search(inode, name,
1811 gfs2_dirent_find_space, &bh);
1812 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001813 if (dent) {
1814 if (IS_ERR(dent))
1815 return PTR_ERR(dent);
1816 dent = gfs2_init_dirent(inode, dent, name, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001817 gfs2_inum_out(nip, dent);
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001818 dent->de_type = cpu_to_be16(IF2DT(nip->i_inode.i_mode));
Steven Whitehouse44aaada2014-02-07 11:23:22 +00001819 dent->de_rahead = cpu_to_be16(gfs2_inode_ra_len(nip));
Deepa Dinamani078cd822016-09-14 07:48:04 -07001820 tv = current_time(&ip->i_inode);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001821 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001822 leaf = (struct gfs2_leaf *)bh->b_data;
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001823 be16_add_cpu(&leaf->lf_entries, 1);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001824 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1825 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001826 }
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001827 da->dent = NULL;
1828 da->bh = NULL;
Steven Whitehousec7526662006-03-20 12:30:04 -05001829 brelse(bh);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001830 ip->i_entries++;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001831 ip->i_inode.i_mtime = ip->i_inode.i_ctime = tv;
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001832 if (S_ISDIR(nip->i_inode.i_mode))
1833 inc_nlink(&ip->i_inode);
Bob Peterson343cd8f2012-11-12 13:04:54 -05001834 mark_inode_dirty(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001835 error = 0;
1836 break;
1837 }
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001838 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001839 error = dir_make_exhash(inode);
1840 if (error)
1841 break;
1842 continue;
1843 }
1844 error = dir_split_leaf(inode, name);
1845 if (error == 0)
1846 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001847 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001848 break;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001849 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001850 error = dir_double_exhash(ip);
1851 if (error)
1852 break;
1853 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001854 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001855 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001856 if (error == 0)
1857 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001858 }
1859 error = dir_new_leaf(inode, name);
1860 if (!error)
1861 continue;
1862 error = -ENOSPC;
1863 break;
1864 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001865 return error;
1866}
1867
Steven Whitehousec7526662006-03-20 12:30:04 -05001868
David Teiglandb3b94fa2006-01-16 16:50:04 +00001869/**
1870 * gfs2_dir_del - Delete a directory entry
1871 * @dip: The GFS2 inode
1872 * @filename: The filename
1873 *
1874 * Returns: 0 on success, error code on failure
1875 */
1876
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001877int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001878{
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001879 const struct qstr *name = &dentry->d_name;
Steven Whitehousec7526662006-03-20 12:30:04 -05001880 struct gfs2_dirent *dent, *prev = NULL;
1881 struct buffer_head *bh;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001882 struct timespec tv = current_time(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001883
Steven Whitehousec7526662006-03-20 12:30:04 -05001884 /* Returns _either_ the entry (if its first in block) or the
1885 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001886 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001887 if (!dent) {
1888 gfs2_consist_inode(dip);
1889 return -EIO;
1890 }
1891 if (IS_ERR(dent)) {
1892 gfs2_consist_inode(dip);
1893 return PTR_ERR(dent);
1894 }
1895 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001896 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001897 prev = dent;
1898 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1899 }
1900
1901 dirent_del(dip, bh, prev, dent);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001902 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001903 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1904 u16 entries = be16_to_cpu(leaf->lf_entries);
1905 if (!entries)
1906 gfs2_consist_inode(dip);
1907 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001908 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1909 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001910 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001911 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001912
Steven Whitehousead6203f2008-11-03 13:59:19 +00001913 if (!dip->i_entries)
Steven Whitehousec7526662006-03-20 12:30:04 -05001914 gfs2_consist_inode(dip);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001915 dip->i_entries--;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001916 dip->i_inode.i_mtime = dip->i_inode.i_ctime = tv;
David Howellse36cb0b2015-01-29 12:02:35 +00001917 if (d_is_dir(dentry))
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001918 drop_nlink(&dip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001919 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001920
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001921 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001922}
1923
David Teiglandb3b94fa2006-01-16 16:50:04 +00001924/**
1925 * gfs2_dir_mvino - Change inode number of directory entry
1926 * @dip: The GFS2 inode
1927 * @filename:
1928 * @new_inode:
1929 *
1930 * This routine changes the inode number of a directory entry. It's used
1931 * by rename to change ".." when a directory is moved.
1932 * Assumes a glock is held on dvp.
1933 *
1934 * Returns: errno
1935 */
1936
Steven Whitehousec7526662006-03-20 12:30:04 -05001937int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001938 const struct gfs2_inode *nip, unsigned int new_type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001939{
Steven Whitehousec7526662006-03-20 12:30:04 -05001940 struct buffer_head *bh;
1941 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001942 int error;
1943
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001944 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001945 if (!dent) {
1946 gfs2_consist_inode(dip);
1947 return -EIO;
1948 }
1949 if (IS_ERR(dent))
1950 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001951
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001952 gfs2_trans_add_meta(dip->i_gl, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001953 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001954 dent->de_type = cpu_to_be16(new_type);
1955
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001956 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001957 brelse(bh);
1958 error = gfs2_meta_inode_buffer(dip, &bh);
1959 if (error)
1960 return error;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001961 gfs2_trans_add_meta(dip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001962 }
1963
Deepa Dinamani078cd822016-09-14 07:48:04 -07001964 dip->i_inode.i_mtime = dip->i_inode.i_ctime = current_time(&dip->i_inode);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001965 gfs2_dinode_out(dip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001966 brelse(bh);
1967 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001968}
1969
1970/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001971 * leaf_dealloc - Deallocate a directory leaf
1972 * @dip: the directory
1973 * @index: the hash table offset in the directory
1974 * @len: the number of pointers to this leaf
1975 * @leaf_no: the leaf number
Bob Petersonec038c82011-03-22 13:55:23 -04001976 * @leaf_bh: buffer_head for the starting leaf
Bob Petersond24a7a42011-03-22 13:54:03 -04001977 * last_dealloc: 1 if this is the final dealloc for the leaf, else 0
David Teiglandb3b94fa2006-01-16 16:50:04 +00001978 *
1979 * Returns: errno
1980 */
1981
Steven Whitehousecd915492006-09-04 12:49:07 -04001982static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
Bob Petersonec038c82011-03-22 13:55:23 -04001983 u64 leaf_no, struct buffer_head *leaf_bh,
1984 int last_dealloc)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001985{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001986 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001987 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001988 struct gfs2_rgrp_list rlist;
1989 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001990 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001991 unsigned int rg_blocks = 0, l_blocks = 0;
1992 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001993 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001994 int error;
1995
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001996 error = gfs2_rindex_update(sdp);
1997 if (error)
1998 return error;
1999
David Teiglandb3b94fa2006-01-16 16:50:04 +00002000 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
2001
Joe Perches8be04b92013-06-19 12:15:53 -07002002 ht = kzalloc(size, GFP_NOFS | __GFP_NOWARN);
Bob Petersone8830d82013-05-30 09:48:56 -04002003 if (ht == NULL)
Oleg Drokin7456a372015-02-01 22:59:54 -05002004 ht = __vmalloc(size, GFP_NOFS | __GFP_NOWARN | __GFP_ZERO,
2005 PAGE_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002006 if (!ht)
2007 return -ENOMEM;
2008
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08002009 error = gfs2_quota_hold(dip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002010 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04002011 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002012
David Teiglandb3b94fa2006-01-16 16:50:04 +00002013 /* Count the number of leaves */
Bob Petersonec038c82011-03-22 13:55:23 -04002014 bh = leaf_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002015
Steven Whitehousec7526662006-03-20 12:30:04 -05002016 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04002017 if (blk != leaf_no) {
2018 error = get_leaf(dip, blk, &bh);
2019 if (error)
2020 goto out_rlist;
2021 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002022 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
2023 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04002024 if (blk != leaf_no)
2025 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002026
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002027 gfs2_rlist_add(dip, &rlist, blk);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002028 l_blocks++;
2029 }
2030
Bob Petersonfe6c9912008-01-28 11:13:02 -06002031 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002032
2033 for (x = 0; x < rlist.rl_rgrps; x++) {
2034 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05002035 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01002036 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002037 }
2038
2039 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
2040 if (error)
2041 goto out_rlist;
2042
2043 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05002044 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00002045 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
2046 if (error)
2047 goto out_rg_gunlock;
2048
Bob Petersonec038c82011-03-22 13:55:23 -04002049 bh = leaf_bh;
2050
Steven Whitehousec7526662006-03-20 12:30:04 -05002051 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04002052 if (blk != leaf_no) {
2053 error = get_leaf(dip, blk, &bh);
2054 if (error)
2055 goto out_end_trans;
2056 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002057 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
2058 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04002059 if (blk != leaf_no)
2060 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002061
2062 gfs2_free_meta(dip, blk, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00002063 gfs2_add_inode_blocks(&dip->i_inode, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002064 }
2065
Steven Whitehousecd915492006-09-04 12:49:07 -04002066 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002067 if (error != size) {
2068 if (error >= 0)
2069 error = -EIO;
2070 goto out_end_trans;
2071 }
2072
2073 error = gfs2_meta_inode_buffer(dip, &dibh);
2074 if (error)
2075 goto out_end_trans;
2076
Steven Whitehouse350a9b02012-12-14 12:36:02 +00002077 gfs2_trans_add_meta(dip->i_gl, dibh);
Bob Petersond24a7a42011-03-22 13:54:03 -04002078 /* On the last dealloc, make this a regular file in case we crash.
2079 (We don't want to free these blocks a second time.) */
2080 if (last_dealloc)
2081 dip->i_inode.i_mode = S_IFREG;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05002082 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002083 brelse(dibh);
2084
Steven Whitehousea91ea692006-09-04 12:04:26 -04002085out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00002086 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04002087out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00002088 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04002089out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00002090 gfs2_rlist_free(&rlist);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002091 gfs2_quota_unhold(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03002092out:
Al Viro3cdcf632014-11-20 05:18:38 +00002093 kvfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002094 return error;
2095}
2096
2097/**
2098 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
2099 * @dip: the directory
2100 *
2101 * Dealloc all on-disk directory leaves to FREEMETA state
2102 * Change on-disk inode type to "regular file"
2103 *
2104 * Returns: errno
2105 */
2106
2107int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
2108{
Bob Peterson556bb172011-03-22 13:56:37 -04002109 struct buffer_head *bh;
2110 struct gfs2_leaf *leaf;
2111 u32 hsize, len;
Bob Peterson556bb172011-03-22 13:56:37 -04002112 u32 index = 0, next_index;
2113 __be64 *lp;
2114 u64 leaf_no;
2115 int error = 0, last;
2116
Fabian Frederick47a9a522016-08-02 12:05:27 -05002117 hsize = BIT(dip->i_depth);
Bob Peterson556bb172011-03-22 13:56:37 -04002118
Steven Whitehouse17d539f2011-06-15 10:29:37 +01002119 lp = gfs2_dir_get_hash_table(dip);
2120 if (IS_ERR(lp))
2121 return PTR_ERR(lp);
Bob Peterson556bb172011-03-22 13:56:37 -04002122
2123 while (index < hsize) {
Steven Whitehouse17d539f2011-06-15 10:29:37 +01002124 leaf_no = be64_to_cpu(lp[index]);
Bob Peterson556bb172011-03-22 13:56:37 -04002125 if (leaf_no) {
2126 error = get_leaf(dip, leaf_no, &bh);
2127 if (error)
2128 goto out;
2129 leaf = (struct gfs2_leaf *)bh->b_data;
Fabian Frederick47a9a522016-08-02 12:05:27 -05002130 len = BIT(dip->i_depth - be16_to_cpu(leaf->lf_depth));
Bob Peterson556bb172011-03-22 13:56:37 -04002131
2132 next_index = (index & ~(len - 1)) + len;
2133 last = ((next_index >= hsize) ? 1 : 0);
2134 error = leaf_dealloc(dip, index, len, leaf_no, bh,
2135 last);
2136 brelse(bh);
2137 if (error)
2138 goto out;
2139 index = next_index;
2140 } else
2141 index++;
2142 }
2143
2144 if (index != hsize) {
2145 gfs2_consist_inode(dip);
2146 error = -EIO;
2147 }
2148
2149out:
Bob Peterson556bb172011-03-22 13:56:37 -04002150
2151 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002152}
2153
2154/**
2155 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
2156 * @ip: the file being written to
2157 * @filname: the filename that's going to be added
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002158 * @da: The structure to return dir alloc info
David Teiglandb3b94fa2006-01-16 16:50:04 +00002159 *
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002160 * Returns: 0 if ok, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00002161 */
2162
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002163int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name,
2164 struct gfs2_diradd *da)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002165{
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002166 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002167 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002168 const unsigned int extra = sizeof(struct gfs2_dinode) - sizeof(struct gfs2_leaf);
Steven Whitehousec7526662006-03-20 12:30:04 -05002169 struct gfs2_dirent *dent;
2170 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002171
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002172 da->nr_blocks = 0;
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00002173 da->bh = NULL;
2174 da->dent = NULL;
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002175
Steven Whitehousec7526662006-03-20 12:30:04 -05002176 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04002177 if (!dent) {
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002178 da->nr_blocks = sdp->sd_max_dirres;
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002179 if (!(ip->i_diskflags & GFS2_DIF_EXHASH) &&
2180 (GFS2_DIRENT_SIZE(name->len) < extra))
2181 da->nr_blocks = 1;
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002182 return 0;
Steven Whitehouseed386502006-04-07 16:28:07 -04002183 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002184 if (IS_ERR(dent))
2185 return PTR_ERR(dent);
Bob Peterson19aeb5a2014-09-29 08:52:04 -04002186
2187 if (da->save_loc) {
2188 da->bh = bh;
2189 da->dent = dent;
2190 } else {
2191 brelse(bh);
2192 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002193 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002194}
2195