blob: 6f35d19eec2537aad6c575fa504aa19ad9ee3b3a [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04004 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
7/*
Steven Whitehouse61e085a2006-04-24 10:07:13 -04008 * Implements Extendible Hashing as described in:
9 * "Extendible Hashing" by Fagin, et al in
10 * __ACM Trans. on Database Systems__, Sept 1979.
11 *
12 *
13 * Here's the layout of dirents which is essentially the same as that of ext2
14 * within a single block. The field de_name_len is the number of bytes
15 * actually required for the name (no null terminator). The field de_rec_len
16 * is the number of bytes allocated to the dirent. The offset of the next
17 * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is
18 * deleted, the preceding dirent inherits its allocated space, ie
19 * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained
20 * by adding de_rec_len to the current dirent, this essentially causes the
21 * deleted dirent to get jumped over when iterating through all the dirents.
22 *
23 * When deleting the first dirent in a block, there is no previous dirent so
24 * the field de_ino is set to zero to designate it as deleted. When allocating
25 * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the
26 * first dirent has (de_ino == 0) and de_rec_len is large enough, this first
27 * dirent is allocated. Otherwise it must go through all the 'used' dirents
28 * searching for one in which the amount of total space minus the amount of
29 * used space will provide enough space for the new dirent.
30 *
31 * There are two types of blocks in which dirents reside. In a stuffed dinode,
32 * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of
33 * the block. In leaves, they begin at offset sizeof(struct gfs2_leaf) from the
34 * beginning of the leaf block. The dirents reside in leaves when
35 *
Steven Whitehouse383f01f2008-11-04 10:05:22 +000036 * dip->i_diskflags & GFS2_DIF_EXHASH is true
Steven Whitehouse61e085a2006-04-24 10:07:13 -040037 *
38 * Otherwise, the dirents are "linear", within a single stuffed dinode block.
39 *
40 * When the dirents are in leaves, the actual contents of the directory file are
41 * used as an array of 64-bit block pointers pointing to the leaf blocks. The
42 * dirents are NOT in the directory file itself. There can be more than one
43 * block pointer in the array that points to the same leaf. In fact, when a
44 * directory is first converted from linear to exhash, all of the pointers
45 * point to the same leaf.
46 *
47 * When a leaf is completely full, the size of the hash table can be
48 * doubled unless it is already at the maximum size which is hard coded into
49 * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list,
50 * but never before the maximum hash table size has been reached.
51 */
David Teiglandb3b94fa2006-01-16 16:50:04 +000052
Joe Perchesd77d1b52014-03-06 12:10:45 -080053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
David Teiglandb3b94fa2006-01-16 16:50:04 +000055#include <linux/slab.h>
56#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000057#include <linux/buffer_head.h>
58#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050059#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050060#include <linux/crc32.h>
Steven Whitehousefe1bded2006-04-18 10:09:15 -040061#include <linux/vmalloc.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060062#include <linux/bio.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000063
64#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050065#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000066#include "dir.h"
67#include "glock.h"
68#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000069#include "meta_io.h"
70#include "quota.h"
71#include "rgrp.h"
72#include "trans.h"
Steven Whitehousee13940b2006-01-30 13:31:50 +000073#include "bmap.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050074#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000075
76#define IS_LEAF 1 /* Hashed (leaf) directory */
77#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
78
Bob Petersondfe4d342011-10-27 12:16:06 -040079#define MAX_RA_BLOCKS 32 /* max read-ahead blocks */
80
Steven Whitehousecd915492006-09-04 12:49:07 -040081#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
82#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
Benjamin Marzinski471f3db2015-12-01 08:46:55 -060083#define GFS2_HASH_INDEX_MASK 0xffffc000
84#define GFS2_USE_HASH_FLAG 0x2000
David Teiglandb3b94fa2006-01-16 16:50:04 +000085
Steven Whitehouse8d123582010-09-17 12:30:23 +010086struct qstr gfs2_qdot __read_mostly;
87struct qstr gfs2_qdotdot __read_mostly;
88
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040089typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
90 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000091
Steven Whitehousecd915492006-09-04 12:49:07 -040092int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040093 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000094{
95 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000096
Steven Whitehouse61e085a2006-04-24 10:07:13 -040097 bh = gfs2_meta_new(ip->i_gl, block);
Steven Whitehouse350a9b02012-12-14 12:36:02 +000098 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -040099 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
100 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000101 *bhp = bh;
102 return 0;
103}
104
Steven Whitehousecd915492006-09-04 12:49:07 -0400105static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400106 struct buffer_head **bhp)
107{
108 struct buffer_head *bh;
109 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000110
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600111 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, 0, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400112 if (error)
113 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400114 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400115 brelse(bh);
116 return -EIO;
117 }
118 *bhp = bh;
119 return 0;
120}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000121
122static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
123 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000124{
125 struct buffer_head *dibh;
126 int error;
127
128 error = gfs2_meta_inode_buffer(ip, &dibh);
129 if (error)
130 return error;
131
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000132 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500133 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100134 if (ip->i_inode.i_size < offset + size)
135 i_size_write(&ip->i_inode, offset + size);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700136 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500137 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000138
139 brelse(dibh);
140
141 return size;
142}
143
144
145
146/**
147 * gfs2_dir_write_data - Write directory information to the inode
148 * @ip: The GFS2 inode
149 * @buf: The buffer containing information to be written
150 * @offset: The file offset to start writing at
151 * @size: The amount of data to write
152 *
153 * Returns: The number of bytes correctly written or error code
154 */
155static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400156 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000157{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400158 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000159 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400160 u64 lblock, dblock;
161 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000162 unsigned int o;
163 int copied = 0;
164 int error = 0;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000165 int new = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000166
167 if (!size)
168 return 0;
169
Andreas Gruenbacher235628c2017-11-14 16:53:12 +0100170 if (gfs2_is_stuffed(ip) && offset + size <= gfs2_max_stuffed_size(ip))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500171 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
172 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000173
174 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
175 return -EINVAL;
176
177 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400178 error = gfs2_unstuff_dinode(ip, NULL);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000179 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500180 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000181 }
182
183 lblock = offset;
184 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
185
186 while (copied < size) {
187 unsigned int amount;
188 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000189
190 amount = size - copied;
191 if (amount > sdp->sd_sb.sb_bsize - o)
192 amount = sdp->sd_sb.sb_bsize - o;
193
194 if (!extlen) {
195 new = 1;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400196 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400197 &dblock, &extlen);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000198 if (error)
199 goto fail;
200 error = -EIO;
201 if (gfs2_assert_withdraw(sdp, dblock))
202 goto fail;
203 }
204
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400205 if (amount == sdp->sd_jbsize || new)
206 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
207 else
208 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
209
Steven Whitehousee13940b2006-01-30 13:31:50 +0000210 if (error)
211 goto fail;
212
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000213 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000214 memcpy(bh->b_data + o, buf, amount);
215 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000216
Steven Whitehouse899bb262006-08-01 15:28:57 -0400217 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000218 copied += amount;
219 lblock++;
220 dblock++;
221 extlen--;
222
223 o = sizeof(struct gfs2_meta_header);
224 }
225
226out:
227 error = gfs2_meta_inode_buffer(ip, &dibh);
228 if (error)
229 return error;
230
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100231 if (ip->i_inode.i_size < offset + copied)
232 i_size_write(&ip->i_inode, offset + copied);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700233 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000234
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000235 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500236 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000237 brelse(dibh);
238
239 return copied;
240fail:
241 if (copied)
242 goto out;
243 return error;
244}
245
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100246static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, __be64 *buf,
247 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000248{
249 struct buffer_head *dibh;
250 int error;
251
252 error = gfs2_meta_inode_buffer(ip, &dibh);
253 if (!error) {
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100254 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000255 brelse(dibh);
256 }
257
258 return (error) ? error : size;
259}
260
261
262/**
263 * gfs2_dir_read_data - Read a data from a directory inode
264 * @ip: The GFS2 Inode
265 * @buf: The buffer to place result into
Steven Whitehousee13940b2006-01-30 13:31:50 +0000266 * @size: Amount of data to transfer
267 *
268 * Returns: The amount of data actually copied or the error
269 */
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100270static int gfs2_dir_read_data(struct gfs2_inode *ip, __be64 *buf,
271 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000272{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400273 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400274 u64 lblock, dblock;
275 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000276 unsigned int o;
277 int copied = 0;
278 int error = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000279
280 if (gfs2_is_stuffed(ip))
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100281 return gfs2_dir_read_stuffed(ip, buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000282
283 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
284 return -EINVAL;
285
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100286 lblock = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000287 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
288
289 while (copied < size) {
290 unsigned int amount;
291 struct buffer_head *bh;
292 int new;
293
294 amount = size - copied;
295 if (amount > sdp->sd_sb.sb_bsize - o)
296 amount = sdp->sd_sb.sb_bsize - o;
297
298 if (!extlen) {
299 new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400300 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400301 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400302 if (error || !dblock)
303 goto fail;
304 BUG_ON(extlen < 1);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400305 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200306 } else {
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600307 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, 0, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000308 if (error)
309 goto fail;
310 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400311 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
312 if (error) {
313 brelse(bh);
314 goto fail;
315 }
316 dblock++;
317 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000318 memcpy(buf, bh->b_data + o, amount);
319 brelse(bh);
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100320 buf += (amount/sizeof(__be64));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000321 copied += amount;
322 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000323 o = sizeof(struct gfs2_meta_header);
324 }
325
326 return copied;
327fail:
328 return (copied) ? copied : error;
329}
330
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100331/**
332 * gfs2_dir_get_hash_table - Get pointer to the dir hash table
333 * @ip: The inode in question
334 *
335 * Returns: The hash table or an error
336 */
337
338static __be64 *gfs2_dir_get_hash_table(struct gfs2_inode *ip)
339{
340 struct inode *inode = &ip->i_inode;
341 int ret;
342 u32 hsize;
343 __be64 *hc;
344
345 BUG_ON(!(ip->i_diskflags & GFS2_DIF_EXHASH));
346
347 hc = ip->i_hash_cache;
348 if (hc)
349 return hc;
350
Fabian Frederick47a9a522016-08-02 12:05:27 -0500351 hsize = BIT(ip->i_depth);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100352 hsize *= sizeof(__be64);
353 if (hsize != i_size_read(&ip->i_inode)) {
354 gfs2_consist_inode(ip);
355 return ERR_PTR(-EIO);
356 }
357
Bob Petersone8830d82013-05-30 09:48:56 -0400358 hc = kmalloc(hsize, GFP_NOFS | __GFP_NOWARN);
359 if (hc == NULL)
360 hc = __vmalloc(hsize, GFP_NOFS, PAGE_KERNEL);
361
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100362 if (hc == NULL)
363 return ERR_PTR(-ENOMEM);
364
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100365 ret = gfs2_dir_read_data(ip, hc, hsize);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100366 if (ret < 0) {
Al Viro3cdcf632014-11-20 05:18:38 +0000367 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100368 return ERR_PTR(ret);
369 }
370
371 spin_lock(&inode->i_lock);
Al Viro9265f1d2014-11-20 05:19:47 +0000372 if (likely(!ip->i_hash_cache)) {
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100373 ip->i_hash_cache = hc;
Al Viro9265f1d2014-11-20 05:19:47 +0000374 hc = NULL;
375 }
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100376 spin_unlock(&inode->i_lock);
Al Viro9265f1d2014-11-20 05:19:47 +0000377 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100378
379 return ip->i_hash_cache;
380}
381
382/**
383 * gfs2_dir_hash_inval - Invalidate dir hash
384 * @ip: The directory inode
385 *
386 * Must be called with an exclusive glock, or during glock invalidation.
387 */
388void gfs2_dir_hash_inval(struct gfs2_inode *ip)
389{
Bob Petersonc36b97e2015-10-29 10:03:41 -0500390 __be64 *hc;
391
392 spin_lock(&ip->i_inode.i_lock);
393 hc = ip->i_hash_cache;
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100394 ip->i_hash_cache = NULL;
Bob Petersonc36b97e2015-10-29 10:03:41 -0500395 spin_unlock(&ip->i_inode.i_lock);
396
Al Viro3cdcf632014-11-20 05:18:38 +0000397 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100398}
399
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500400static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
401{
402 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
403}
404
Steven Whitehousec7526662006-03-20 12:30:04 -0500405static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
406 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500408 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500409 be32_to_cpu(dent->de_hash) == name->hash &&
410 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400411 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500412 return ret;
413 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414}
415
Steven Whitehousec7526662006-03-20 12:30:04 -0500416static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500417 const struct qstr *name,
418 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500419{
420 return __gfs2_dirent_find(dent, name, 1);
421}
422
423static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500424 const struct qstr *name,
425 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500426{
427 return __gfs2_dirent_find(dent, name, 2);
428}
429
430/*
431 * name->name holds ptr to start of block.
432 * name->len holds size of block.
433 */
434static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500435 const struct qstr *name,
436 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500437{
438 const char *start = name->name;
439 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
440 if (name->len == (end - start))
441 return 1;
442 return 0;
443}
444
Benjamin Marzinski34017472015-12-01 08:30:34 -0600445/* Look for the dirent that contains the offset specified in data. Once we
446 * find that dirent, there must be space available there for the new dirent */
447static int gfs2_dirent_find_offset(const struct gfs2_dirent *dent,
448 const struct qstr *name,
449 void *ptr)
450{
451 unsigned required = GFS2_DIRENT_SIZE(name->len);
452 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
453 unsigned totlen = be16_to_cpu(dent->de_rec_len);
454
455 if (ptr < (void *)dent || ptr >= (void *)dent + totlen)
456 return 0;
457 if (gfs2_dirent_sentinel(dent))
458 actual = 0;
459 if (ptr < (void *)dent + actual)
460 return -1;
461 if ((void *)dent + totlen >= ptr + required)
462 return 1;
463 return -1;
464}
465
Steven Whitehousec7526662006-03-20 12:30:04 -0500466static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500467 const struct qstr *name,
468 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500469{
470 unsigned required = GFS2_DIRENT_SIZE(name->len);
471 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
472 unsigned totlen = be16_to_cpu(dent->de_rec_len);
473
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500474 if (gfs2_dirent_sentinel(dent))
Bob Peterson728a7562010-07-14 18:12:26 -0400475 actual = 0;
Jan Engelhardtc53921242006-09-05 14:30:40 +0200476 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500477 return 1;
478 return 0;
479}
480
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500481struct dirent_gather {
482 const struct gfs2_dirent **pdent;
483 unsigned offset;
484};
485
486static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
487 const struct qstr *name,
488 void *opaque)
489{
490 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500491 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500492 g->pdent[g->offset++] = dent;
493 }
494 return 0;
495}
496
Steven Whitehousec7526662006-03-20 12:30:04 -0500497/*
498 * Other possible things to check:
499 * - Inode located within filesystem size (and on valid block)
500 * - Valid directory entry type
501 * Not sure how heavy-weight we want to make this... could also check
502 * hash is correct for example, but that would take a lot of extra time.
503 * For now the most important thing is to check that the various sizes
504 * are correct.
505 */
Bob Petersone54c78a2018-10-03 08:47:36 -0500506static int gfs2_check_dirent(struct gfs2_sbd *sdp,
507 struct gfs2_dirent *dent, unsigned int offset,
Steven Whitehousec7526662006-03-20 12:30:04 -0500508 unsigned int size, unsigned int len, int first)
509{
510 const char *msg = "gfs2_dirent too small";
511 if (unlikely(size < sizeof(struct gfs2_dirent)))
512 goto error;
513 msg = "gfs2_dirent misaligned";
514 if (unlikely(offset & 0x7))
515 goto error;
516 msg = "gfs2_dirent points beyond end of block";
517 if (unlikely(offset + size > len))
518 goto error;
519 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500520 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500521 goto error;
522 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500523 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500524 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
525 size))
526 goto error;
527 return 0;
528error:
Bob Petersone54c78a2018-10-03 08:47:36 -0500529 fs_warn(sdp, "%s: %s (%s)\n",
Joe Perchesd77d1b52014-03-06 12:10:45 -0800530 __func__, msg, first ? "first in block" : "not first in block");
Steven Whitehousec7526662006-03-20 12:30:04 -0500531 return -EIO;
532}
533
Bob Petersone54c78a2018-10-03 08:47:36 -0500534static int gfs2_dirent_offset(struct gfs2_sbd *sdp, const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500535{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500536 const struct gfs2_meta_header *h = buf;
537 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500538
539 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500540
Steven Whitehousee3167de2006-03-30 15:46:23 -0500541 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500542 case GFS2_METATYPE_LF:
543 offset = sizeof(struct gfs2_leaf);
544 break;
545 case GFS2_METATYPE_DI:
546 offset = sizeof(struct gfs2_dinode);
547 break;
548 default:
549 goto wrong_type;
550 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500551 return offset;
552wrong_type:
Bob Petersone54c78a2018-10-03 08:47:36 -0500553 fs_warn(sdp, "%s: wrong block type %u\n", __func__,
554 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500555 return -1;
556}
Steven Whitehousec7526662006-03-20 12:30:04 -0500557
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400558static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500559 unsigned int len, gfs2_dscan_t scan,
560 const struct qstr *name,
561 void *opaque)
562{
563 struct gfs2_dirent *dent, *prev;
564 unsigned offset;
565 unsigned size;
566 int ret = 0;
567
Bob Petersone54c78a2018-10-03 08:47:36 -0500568 ret = gfs2_dirent_offset(GFS2_SB(inode), buf);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500569 if (ret < 0)
570 goto consist_inode;
571
572 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500573 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400574 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500575 size = be16_to_cpu(dent->de_rec_len);
Bob Petersone54c78a2018-10-03 08:47:36 -0500576 if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size, len, 1))
Steven Whitehousec7526662006-03-20 12:30:04 -0500577 goto consist_inode;
578 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500579 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500580 if (ret)
581 break;
582 offset += size;
583 if (offset == len)
584 break;
585 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400586 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500587 size = be16_to_cpu(dent->de_rec_len);
Bob Petersone54c78a2018-10-03 08:47:36 -0500588 if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size,
589 len, 0))
Steven Whitehousec7526662006-03-20 12:30:04 -0500590 goto consist_inode;
591 } while(1);
592
593 switch(ret) {
594 case 0:
595 return NULL;
596 case 1:
597 return dent;
598 case 2:
599 return prev ? prev : dent;
600 default:
601 BUG_ON(ret > 0);
602 return ERR_PTR(ret);
603 }
604
Steven Whitehousec7526662006-03-20 12:30:04 -0500605consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400606 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500607 return ERR_PTR(-EIO);
608}
609
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400610static int dirent_check_reclen(struct gfs2_inode *dip,
611 const struct gfs2_dirent *d, const void *end_p)
612{
613 const void *ptr = d;
614 u16 rec_len = be16_to_cpu(d->de_rec_len);
615
616 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
617 goto broken;
618 ptr += rec_len;
619 if (ptr < end_p)
620 return rec_len;
621 if (ptr == end_p)
622 return -ENOENT;
623broken:
624 gfs2_consist_inode(dip);
625 return -EIO;
626}
627
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628/**
629 * dirent_next - Next dirent
630 * @dip: the directory
631 * @bh: The buffer
632 * @dent: Pointer to list of dirents
633 *
634 * Returns: 0 on success, error code otherwise
635 */
636
637static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
638 struct gfs2_dirent **dent)
639{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400640 struct gfs2_dirent *cur = *dent, *tmp;
641 char *bh_end = bh->b_data + bh->b_size;
642 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400644 ret = dirent_check_reclen(dip, cur, bh_end);
645 if (ret < 0)
646 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000647
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400648 tmp = (void *)cur + ret;
649 ret = dirent_check_reclen(dip, tmp, bh_end);
650 if (ret == -EIO)
651 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000652
David Teiglandb3b94fa2006-01-16 16:50:04 +0000653 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500654 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000655 gfs2_consist_inode(dip);
656 return -EIO;
657 }
658
659 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660 return 0;
661}
662
663/**
664 * dirent_del - Delete a dirent
665 * @dip: The GFS2 inode
666 * @bh: The buffer
667 * @prev: The previous dirent
668 * @cur: The current dirent
669 *
670 */
671
672static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
673 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
674{
Steven Whitehousecd915492006-09-04 12:49:07 -0400675 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000676
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500677 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000678 gfs2_consist_inode(dip);
679 return;
680 }
681
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000682 gfs2_trans_add_meta(dip->i_gl, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683
684 /* If there is no prev entry, this is the first entry in the block.
685 The de_rec_len is already as big as it needs to be. Just zero
686 out the inode number and return. */
687
688 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500689 cur->de_inum.no_addr = 0;
690 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691 return;
692 }
693
694 /* Combine this dentry with the previous one. */
695
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000696 prev_rec_len = be16_to_cpu(prev->de_rec_len);
697 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698
699 if ((char *)prev + prev_rec_len != (char *)cur)
700 gfs2_consist_inode(dip);
701 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
702 gfs2_consist_inode(dip);
703
704 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000705 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000706}
707
Benjamin Marzinski34017472015-12-01 08:30:34 -0600708
709static struct gfs2_dirent *do_init_dirent(struct inode *inode,
710 struct gfs2_dirent *dent,
711 const struct qstr *name,
712 struct buffer_head *bh,
713 unsigned offset)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000714{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400715 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500716 struct gfs2_dirent *ndent;
Benjamin Marzinski34017472015-12-01 08:30:34 -0600717 unsigned totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000718
Steven Whitehousec7526662006-03-20 12:30:04 -0500719 totlen = be16_to_cpu(dent->de_rec_len);
720 BUG_ON(offset + name->len > totlen);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000721 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500722 ndent = (struct gfs2_dirent *)((char *)dent + offset);
723 dent->de_rec_len = cpu_to_be16(offset);
724 gfs2_qstr2dirent(name, totlen - offset, ndent);
725 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000726}
727
Benjamin Marzinski34017472015-12-01 08:30:34 -0600728
729/*
730 * Takes a dent from which to grab space as an argument. Returns the
731 * newly created dent.
732 */
733static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
734 struct gfs2_dirent *dent,
735 const struct qstr *name,
736 struct buffer_head *bh)
737{
738 unsigned offset = 0;
739
740 if (!gfs2_dirent_sentinel(dent))
741 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
742 return do_init_dirent(inode, dent, name, bh, offset);
743}
744
745static struct gfs2_dirent *gfs2_dirent_split_alloc(struct inode *inode,
746 struct buffer_head *bh,
747 const struct qstr *name,
748 void *ptr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000749{
750 struct gfs2_dirent *dent;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400751 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Benjamin Marzinski34017472015-12-01 08:30:34 -0600752 gfs2_dirent_find_offset, name, ptr);
Kefeng Wang15a798f2019-06-05 22:24:24 +0800753 if (IS_ERR_OR_NULL(dent))
Steven Whitehousec7526662006-03-20 12:30:04 -0500754 return dent;
Benjamin Marzinski34017472015-12-01 08:30:34 -0600755 return do_init_dirent(inode, dent, name, bh,
756 (unsigned)(ptr - (void *)dent));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000757}
758
Steven Whitehousecd915492006-09-04 12:49:07 -0400759static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 struct buffer_head **bhp)
761{
762 int error;
763
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600764 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, 0, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400765 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800766 /* pr_info("block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000767 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400768 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769
770 return error;
771}
772
773/**
774 * get_leaf_nr - Get a leaf number associated with the index
775 * @dip: The GFS2 inode
776 * @index:
777 * @leaf_out:
778 *
779 * Returns: 0 on success, error code otherwise
780 */
781
Steven Whitehousecd915492006-09-04 12:49:07 -0400782static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
783 u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000784{
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100785 __be64 *hash;
Arnd Bergmann287980e2016-05-27 23:23:25 +0200786 int error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000787
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100788 hash = gfs2_dir_get_hash_table(dip);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200789 error = PTR_ERR_OR_ZERO(hash);
790
791 if (!error)
792 *leaf_out = be64_to_cpu(*(hash + index));
793
794 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000795}
796
Steven Whitehousecd915492006-09-04 12:49:07 -0400797static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000798 struct buffer_head **bh_out)
799{
Steven Whitehousecd915492006-09-04 12:49:07 -0400800 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 int error;
802
803 error = get_leaf_nr(dip, index, &leaf_no);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200804 if (!error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 error = get_leaf(dip, leaf_no, bh_out);
806
807 return error;
808}
809
Steven Whitehousec7526662006-03-20 12:30:04 -0500810static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
811 const struct qstr *name,
812 gfs2_dscan_t scan,
813 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814{
Steven Whitehousec7526662006-03-20 12:30:04 -0500815 struct buffer_head *bh;
816 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400817 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 int error;
819
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000820 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500821 struct gfs2_leaf *leaf;
Fabian Frederick47a9a522016-08-02 12:05:27 -0500822 unsigned int hsize = BIT(ip->i_depth);
823 unsigned int index;
Steven Whitehousec7526662006-03-20 12:30:04 -0500824 u64 ln;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100825 if (hsize * sizeof(u64) != i_size_read(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500826 gfs2_consist_inode(ip);
827 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000828 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400829
Steven Whitehouse9a004502008-02-01 09:23:44 +0000830 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500831 error = get_first_leaf(ip, index, &bh);
832 if (error)
833 return ERR_PTR(error);
834 do {
835 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500836 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500837 if (dent)
838 goto got_dent;
839 leaf = (struct gfs2_leaf *)bh->b_data;
840 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400841 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500842 if (!ln)
843 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400844
Steven Whitehousec7526662006-03-20 12:30:04 -0500845 error = get_leaf(ip, ln, &bh);
846 } while(!error);
847
848 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000849 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400851
Steven Whitehousec7526662006-03-20 12:30:04 -0500852 error = gfs2_meta_inode_buffer(ip, &bh);
853 if (error)
854 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500855 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500856got_dent:
Kefeng Wang15a798f2019-06-05 22:24:24 +0800857 if (IS_ERR_OR_NULL(dent)) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400858 brelse(bh);
859 bh = NULL;
860 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500861 *pbh = bh;
862 return dent;
863}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000864
Steven Whitehousec7526662006-03-20 12:30:04 -0500865static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
866{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400867 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000868 unsigned int n = 1;
Steven Whitehouse09010972009-05-20 10:48:47 +0100869 u64 bn;
870 int error;
871 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -0500872 struct gfs2_leaf *leaf;
873 struct gfs2_dirent *dent;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700874 struct timespec64 tv = current_time(inode);
Steven Whitehouse09010972009-05-20 10:48:47 +0100875
Bob Peterson6e87ed02011-11-18 10:58:32 -0500876 error = gfs2_alloc_blocks(ip, &bn, &n, 0, NULL);
Steven Whitehouse09010972009-05-20 10:48:47 +0100877 if (error)
878 return NULL;
879 bh = gfs2_meta_new(ip->i_gl, bn);
Steven Whitehousec7526662006-03-20 12:30:04 -0500880 if (!bh)
881 return NULL;
Steven Whitehouse09010972009-05-20 10:48:47 +0100882
Andreas Gruenbacherfbb27872019-04-05 12:18:23 +0100883 gfs2_trans_remove_revoke(GFS2_SB(inode), bn, 1);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000884 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500885 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
886 leaf = (struct gfs2_leaf *)bh->b_data;
887 leaf->lf_depth = cpu_to_be16(depth);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400888 leaf->lf_entries = 0;
Al Viroa2d7d022006-10-14 16:49:30 +0100889 leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400890 leaf->lf_next = 0;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +0000891 leaf->lf_inode = cpu_to_be64(ip->i_no_addr);
892 leaf->lf_dist = cpu_to_be32(1);
893 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
894 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
895 memset(leaf->lf_reserved2, 0, sizeof(leaf->lf_reserved2));
Steven Whitehousec7526662006-03-20 12:30:04 -0500896 dent = (struct gfs2_dirent *)(leaf+1);
David Howellscdf01222017-07-04 17:25:22 +0100897 gfs2_qstr2dirent(&empty_name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500898 *pbh = bh;
899 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900}
901
902/**
903 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
904 * @dip: The GFS2 inode
905 *
906 * Returns: 0 on success, error code otherwise
907 */
908
Steven Whitehousec7526662006-03-20 12:30:04 -0500909static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400911 struct gfs2_inode *dip = GFS2_I(inode);
912 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000913 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500914 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915 struct buffer_head *bh, *dibh;
916 struct gfs2_leaf *leaf;
917 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400918 u32 x;
Al Virob44b84d2006-10-14 10:46:30 -0400919 __be64 *lp;
920 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000921 int error;
922
923 error = gfs2_meta_inode_buffer(dip, &dibh);
924 if (error)
925 return error;
926
David Teiglandb3b94fa2006-01-16 16:50:04 +0000927 /* Turn over a new leaf */
928
Steven Whitehousec7526662006-03-20 12:30:04 -0500929 leaf = new_leaf(inode, &bh, 0);
930 if (!leaf)
931 return -ENOSPC;
932 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000933
Fabian Frederick47a9a522016-08-02 12:05:27 -0500934 gfs2_assert(sdp, dip->i_entries < BIT(16));
Steven Whitehousead6203f22008-11-03 13:59:19 +0000935 leaf->lf_entries = cpu_to_be16(dip->i_entries);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000936
937 /* Copy dirents */
938
939 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
940 sizeof(struct gfs2_dinode));
941
942 /* Find last entry */
943
944 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500945 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
946 sizeof(struct gfs2_leaf);
947 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400948 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500949 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500950 if (!dent) {
951 brelse(bh);
952 brelse(dibh);
953 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000954 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500955 if (IS_ERR(dent)) {
956 brelse(bh);
957 brelse(dibh);
958 return PTR_ERR(dent);
959 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960
961 /* Adjust the last dirent's record length
962 (Remember that dent still points to the last entry.) */
963
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000964 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000966 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967
968 brelse(bh);
969
970 /* We're done with the new leaf block, now setup the new
971 hash table. */
972
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000973 gfs2_trans_add_meta(dip->i_gl, dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000974 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
975
Al Virob44b84d2006-10-14 10:46:30 -0400976 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977
978 for (x = sdp->sd_hash_ptrs; x--; lp++)
979 *lp = cpu_to_be64(bn);
980
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100981 i_size_write(inode, sdp->sd_sb.sb_bsize / 2);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000982 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000983 dip->i_diskflags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984
985 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000986 dip->i_depth = y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500988 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989
990 brelse(dibh);
991
992 return 0;
993}
994
995/**
996 * dir_split_leaf - Split a leaf block into two
997 * @dip: The GFS2 inode
998 * @index:
999 * @leaf_no:
1000 *
1001 * Returns: 0 on success, error code on failure
1002 */
1003
Steven Whitehousec7526662006-03-20 12:30:04 -05001004static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001006 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 struct buffer_head *nbh, *obh, *dibh;
1008 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001009 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -04001010 u32 start, len, half_len, divider;
Al Virob44b84d2006-10-14 10:46:30 -04001011 u64 bn, leaf_no;
1012 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -04001013 u32 index;
Colin Ian Kingd1b0cb92018-07-17 15:59:28 +01001014 int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015 int error;
1016
Steven Whitehouse9a004502008-02-01 09:23:44 +00001017 index = name->hash >> (32 - dip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001018 error = get_leaf_nr(dip, index, &leaf_no);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001019 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -05001020 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021
1022 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 error = get_leaf(dip, leaf_no, &obh);
1024 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -05001025 return error;
1026
1027 oleaf = (struct gfs2_leaf *)obh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001028 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
Steven Whitehousee90deff2006-03-29 19:02:15 -05001029 brelse(obh);
1030 return 1; /* can't split */
1031 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001033 gfs2_trans_add_meta(dip->i_gl, obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001034
Steven Whitehousec7526662006-03-20 12:30:04 -05001035 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
1036 if (!nleaf) {
1037 brelse(obh);
1038 return -ENOSPC;
1039 }
1040 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041
Steven Whitehousec7526662006-03-20 12:30:04 -05001042 /* Compute the start and len of leaf pointers in the hash table. */
Fabian Frederick47a9a522016-08-02 12:05:27 -05001043 len = BIT(dip->i_depth - be16_to_cpu(oleaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044 half_len = len >> 1;
1045 if (!half_len) {
Bob Petersone54c78a2018-10-03 08:47:36 -05001046 fs_warn(GFS2_SB(inode), "i_depth %u lf_depth %u index %u\n",
Joe Perchesd77d1b52014-03-06 12:10:45 -08001047 dip->i_depth, be16_to_cpu(oleaf->lf_depth), index);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 gfs2_consist_inode(dip);
1049 error = -EIO;
1050 goto fail_brelse;
1051 }
1052
1053 start = (index & ~(len - 1));
1054
1055 /* Change the pointers.
1056 Don't bother distinguishing stuffed from non-stuffed.
1057 This code is complicated enough already. */
Kees Cook6da2ec52018-06-12 13:55:00 -07001058 lp = kmalloc_array(half_len, sizeof(__be64), GFP_NOFS);
David Rientjes4244b522010-07-20 19:45:03 -07001059 if (!lp) {
1060 error = -ENOMEM;
1061 goto fail_brelse;
1062 }
1063
David Teiglandb3b94fa2006-01-16 16:50:04 +00001064 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065 for (x = 0; x < half_len; x++)
1066 lp[x] = cpu_to_be64(bn);
1067
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001068 gfs2_dir_hash_inval(dip);
1069
Steven Whitehousecd915492006-09-04 12:49:07 -04001070 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
1071 half_len * sizeof(u64));
1072 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001073 if (error >= 0)
1074 error = -EIO;
1075 goto fail_lpfree;
1076 }
1077
1078 kfree(lp);
1079
1080 /* Compute the divider */
Steven Whitehouse9a004502008-02-01 09:23:44 +00001081 divider = (start + half_len) << (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082
1083 /* Copy the entries */
Steven Whitehouse15793432009-11-06 11:06:37 +00001084 dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085
1086 do {
1087 next = dent;
1088 if (dirent_next(dip, obh, &next))
1089 next = NULL;
1090
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -05001091 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001093 struct qstr str;
Benjamin Marzinski34017472015-12-01 08:30:34 -06001094 void *ptr = ((char *)dent - obh->b_data) + nbh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -05001095 str.name = (char*)(dent+1);
1096 str.len = be16_to_cpu(dent->de_name_len);
1097 str.hash = be32_to_cpu(dent->de_hash);
Benjamin Marzinski34017472015-12-01 08:30:34 -06001098 new = gfs2_dirent_split_alloc(inode, nbh, &str, ptr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001099 if (IS_ERR(new)) {
1100 error = PTR_ERR(new);
1101 break;
1102 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001103
1104 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105 new->de_type = dent->de_type; /* No endian worries */
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001106 be16_add_cpu(&nleaf->lf_entries, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107
1108 dirent_del(dip, obh, prev, dent);
1109
1110 if (!oleaf->lf_entries)
1111 gfs2_consist_inode(dip);
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001112 be16_add_cpu(&oleaf->lf_entries, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113
1114 if (!prev)
1115 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001116 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001117 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001118 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001120 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121
Steven Whitehousec7526662006-03-20 12:30:04 -05001122 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123
1124 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001125 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001126 gfs2_trans_add_meta(dip->i_gl, dibh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001127 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001128 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001129 brelse(dibh);
1130 }
1131
1132 brelse(obh);
1133 brelse(nbh);
1134
1135 return error;
1136
Steven Whitehousee90deff2006-03-29 19:02:15 -05001137fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001138 kfree(lp);
1139
Steven Whitehousee90deff2006-03-29 19:02:15 -05001140fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001142 brelse(nbh);
1143 return error;
1144}
1145
1146/**
1147 * dir_double_exhash - Double size of ExHash table
1148 * @dip: The GFS2 dinode
1149 *
1150 * Returns: 0 on success, error code on failure
1151 */
1152
1153static int dir_double_exhash(struct gfs2_inode *dip)
1154{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001156 u32 hsize;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001157 u32 hsize_bytes;
1158 __be64 *hc;
1159 __be64 *hc2, *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001160 int x;
1161 int error = 0;
1162
Fabian Frederick47a9a522016-08-02 12:05:27 -05001163 hsize = BIT(dip->i_depth);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001164 hsize_bytes = hsize * sizeof(__be64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001165
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001166 hc = gfs2_dir_get_hash_table(dip);
1167 if (IS_ERR(hc))
1168 return PTR_ERR(hc);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001169
Kees Cook6da2ec52018-06-12 13:55:00 -07001170 hc2 = kmalloc_array(hsize_bytes, 2, GFP_NOFS | __GFP_NOWARN);
Bob Petersone8830d82013-05-30 09:48:56 -04001171 if (hc2 == NULL)
1172 hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS, PAGE_KERNEL);
1173
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001174 if (!hc2)
David Rientjes4244b522010-07-20 19:45:03 -07001175 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001176
Bob Peterson512cbf02013-06-14 08:39:18 -04001177 h = hc2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001178 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001179 if (error)
1180 goto out_kfree;
1181
1182 for (x = 0; x < hsize; x++) {
1183 *h++ = *hc;
1184 *h++ = *hc;
1185 hc++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 }
1187
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001188 error = gfs2_dir_write_data(dip, (char *)hc2, 0, hsize_bytes * 2);
1189 if (error != (hsize_bytes * 2))
1190 goto fail;
1191
1192 gfs2_dir_hash_inval(dip);
1193 dip->i_hash_cache = hc2;
1194 dip->i_depth++;
1195 gfs2_dinode_out(dip, dibh->b_data);
1196 brelse(dibh);
1197 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001198
Steven Whitehousea91ea692006-09-04 12:04:26 -04001199fail:
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001200 /* Replace original hash table & size */
1201 gfs2_dir_write_data(dip, (char *)hc, 0, hsize_bytes);
1202 i_size_write(&dip->i_inode, hsize_bytes);
1203 gfs2_dinode_out(dip, dibh->b_data);
1204 brelse(dibh);
1205out_kfree:
Al Viro3cdcf632014-11-20 05:18:38 +00001206 kvfree(hc2);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001207 return error;
1208}
1209
1210/**
1211 * compare_dents - compare directory entries by hash value
1212 * @a: first dent
1213 * @b: second dent
1214 *
1215 * When comparing the hash entries of @a to @b:
1216 * gt: returns 1
1217 * lt: returns -1
1218 * eq: returns 0
1219 */
1220
1221static int compare_dents(const void *a, const void *b)
1222{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001223 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001224 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225 int ret = 0;
1226
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001227 dent_a = *(const struct gfs2_dirent **)a;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001228 hash_a = dent_a->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001229
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001230 dent_b = *(const struct gfs2_dirent **)b;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001231 hash_b = dent_b->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001232
1233 if (hash_a > hash_b)
1234 ret = 1;
1235 else if (hash_a < hash_b)
1236 ret = -1;
1237 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001238 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1239 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240
1241 if (len_a > len_b)
1242 ret = 1;
1243 else if (len_a < len_b)
1244 ret = -1;
1245 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001246 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001247 }
1248
1249 return ret;
1250}
1251
1252/**
1253 * do_filldir_main - read out directory entries
1254 * @dip: The GFS2 inode
Al Virod81a8ef2013-05-16 14:14:48 -04001255 * @ctx: what to feed the entries to
David Teiglandb3b94fa2006-01-16 16:50:04 +00001256 * @darr: an array of struct gfs2_dirent pointers to read
1257 * @entries: the number of entries in darr
1258 * @copied: pointer to int that's non-zero if a entry has been copied out
1259 *
1260 * Jump through some hoops to make sure that if there are hash collsions,
1261 * they are read out at the beginning of a buffer. We want to minimize
1262 * the possibility that they will fall into different readdir buffers or
1263 * that someone will want to seek to that location.
1264 *
Al Virod81a8ef2013-05-16 14:14:48 -04001265 * Returns: errno, >0 if the actor tells you to stop
David Teiglandb3b94fa2006-01-16 16:50:04 +00001266 */
1267
Al Virod81a8ef2013-05-16 14:14:48 -04001268static int do_filldir_main(struct gfs2_inode *dip, struct dir_context *ctx,
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001269 struct gfs2_dirent **darr, u32 entries,
1270 u32 sort_start, int *copied)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001272 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001273 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001274 unsigned int x, y;
1275 int run = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001276
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001277 if (sort_start < entries)
1278 sort(&darr[sort_start], entries - sort_start,
1279 sizeof(struct gfs2_dirent *), compare_dents, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280
1281 dent_next = darr[0];
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001282 off_next = dent_next->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001283
1284 for (x = 0, y = 1; x < entries; x++, y++) {
1285 dent = dent_next;
1286 off = off_next;
1287
1288 if (y < entries) {
1289 dent_next = darr[y];
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001290 off_next = dent_next->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001291
Al Virod81a8ef2013-05-16 14:14:48 -04001292 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001293 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001294 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001295
1296 if (off_next == off) {
1297 if (*copied && !run)
1298 return 1;
1299 run = 1;
1300 } else
1301 run = 0;
1302 } else {
Al Virod81a8ef2013-05-16 14:14:48 -04001303 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001304 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001305 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001306 }
1307
Al Virod81a8ef2013-05-16 14:14:48 -04001308 if (!dir_emit(ctx, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001309 be16_to_cpu(dent->de_name_len),
Al Virod81a8ef2013-05-16 14:14:48 -04001310 be64_to_cpu(dent->de_inum.no_addr),
1311 be16_to_cpu(dent->de_type)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001312 return 1;
1313
1314 *copied = 1;
1315 }
1316
Al Virod81a8ef2013-05-16 14:14:48 -04001317 /* Increment the ctx->pos by one, so the next time we come into the
David Teiglandb3b94fa2006-01-16 16:50:04 +00001318 do_filldir fxn, we get the next entry instead of the last one in the
1319 current leaf */
1320
Al Virod81a8ef2013-05-16 14:14:48 -04001321 ctx->pos++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001322
1323 return 0;
1324}
1325
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001326static void *gfs2_alloc_sort_buffer(unsigned size)
1327{
1328 void *ptr = NULL;
1329
1330 if (size < KMALLOC_MAX_SIZE)
1331 ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN);
1332 if (!ptr)
1333 ptr = __vmalloc(size, GFP_NOFS, PAGE_KERNEL);
1334 return ptr;
1335}
1336
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001337
1338static int gfs2_set_cookies(struct gfs2_sbd *sdp, struct buffer_head *bh,
1339 unsigned leaf_nr, struct gfs2_dirent **darr,
1340 unsigned entries)
1341{
1342 int sort_id = -1;
1343 int i;
1344
1345 for (i = 0; i < entries; i++) {
1346 unsigned offset;
1347
1348 darr[i]->de_cookie = be32_to_cpu(darr[i]->de_hash);
1349 darr[i]->de_cookie = gfs2_disk_hash2offset(darr[i]->de_cookie);
1350
1351 if (!sdp->sd_args.ar_loccookie)
1352 continue;
1353 offset = (char *)(darr[i]) -
Bob Petersone54c78a2018-10-03 08:47:36 -05001354 (bh->b_data + gfs2_dirent_offset(sdp, bh->b_data));
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001355 offset /= GFS2_MIN_DIRENT_SIZE;
1356 offset += leaf_nr * sdp->sd_max_dents_per_leaf;
1357 if (offset >= GFS2_USE_HASH_FLAG ||
1358 leaf_nr >= GFS2_USE_HASH_FLAG) {
1359 darr[i]->de_cookie |= GFS2_USE_HASH_FLAG;
1360 if (sort_id < 0)
1361 sort_id = i;
1362 continue;
1363 }
1364 darr[i]->de_cookie &= GFS2_HASH_INDEX_MASK;
1365 darr[i]->de_cookie |= offset;
1366 }
1367 return sort_id;
1368}
1369
1370
Al Virod81a8ef2013-05-16 14:14:48 -04001371static int gfs2_dir_read_leaf(struct inode *inode, struct dir_context *ctx,
1372 int *copied, unsigned *depth,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001373 u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001374{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001375 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001376 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001377 struct buffer_head *bh;
1378 struct gfs2_leaf *lf;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001379 unsigned entries = 0, entries2 = 0;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001380 unsigned leaves = 0, leaf = 0, offset, sort_offset;
1381 struct gfs2_dirent **darr, *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001382 struct dirent_gather g;
1383 struct buffer_head **larr;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001384 int error, i, need_sort = 0, sort_id;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001385 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001386
David Teiglandb3b94fa2006-01-16 16:50:04 +00001387 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001388 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001389 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001390 goto out;
1391 lf = (struct gfs2_leaf *)bh->b_data;
1392 if (leaves == 0)
1393 *depth = be16_to_cpu(lf->lf_depth);
1394 entries += be16_to_cpu(lf->lf_entries);
1395 leaves++;
1396 lfn = be64_to_cpu(lf->lf_next);
1397 brelse(bh);
1398 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001399
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001400 if (*depth < GFS2_DIR_MAX_DEPTH || !sdp->sd_args.ar_loccookie) {
1401 need_sort = 1;
1402 sort_offset = 0;
1403 }
1404
David Teiglandb3b94fa2006-01-16 16:50:04 +00001405 if (!entries)
1406 return 0;
1407
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001408 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001409 /*
1410 * The extra 99 entries are not normally used, but are a buffer
1411 * zone in case the number of entries in the leaf is corrupt.
1412 * 99 is the maximum number of entries that can fit in a single
1413 * leaf block.
1414 */
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001415 larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001416 if (!larr)
1417 goto out;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001418 darr = (struct gfs2_dirent **)(larr + leaves);
1419 g.pdent = (const struct gfs2_dirent **)darr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001420 g.offset = 0;
1421 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001422
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001423 do {
1424 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001425 if (error)
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001426 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001427 lf = (struct gfs2_leaf *)bh->b_data;
1428 lfn = be64_to_cpu(lf->lf_next);
1429 if (lf->lf_entries) {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001430 offset = g.offset;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001431 entries2 += be16_to_cpu(lf->lf_entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001432 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1433 gfs2_dirent_gather, NULL, &g);
1434 error = PTR_ERR(dent);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001435 if (IS_ERR(dent))
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001436 goto out_free;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001437 if (entries2 != g.offset) {
akpm@linux-foundation.orgf391a4e2007-04-25 21:08:02 -07001438 fs_warn(sdp, "Number of entries corrupt in dir "
1439 "leaf %llu, entries2 (%u) != "
1440 "g.offset (%u)\n",
1441 (unsigned long long)bh->b_blocknr,
1442 entries2, g.offset);
Bob Petersond87d62b2017-05-26 08:28:56 -05001443 gfs2_consist_inode(ip);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001444 error = -EIO;
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001445 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001446 }
1447 error = 0;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001448 sort_id = gfs2_set_cookies(sdp, bh, leaf, &darr[offset],
1449 be16_to_cpu(lf->lf_entries));
1450 if (!need_sort && sort_id >= 0) {
1451 need_sort = 1;
1452 sort_offset = offset + sort_id;
1453 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001454 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001455 } else {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001456 larr[leaf++] = NULL;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001457 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001458 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001459 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001460
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001461 BUG_ON(entries2 != entries);
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001462 error = do_filldir_main(ip, ctx, darr, entries, need_sort ?
1463 sort_offset : entries, copied);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001464out_free:
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001465 for(i = 0; i < leaf; i++)
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001466 if (larr[i])
1467 brelse(larr[i]);
Al Viro3cdcf632014-11-20 05:18:38 +00001468 kvfree(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001469out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001470 return error;
1471}
1472
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001473/**
1474 * gfs2_dir_readahead - Issue read-ahead requests for leaf blocks.
Bob Petersondfe4d342011-10-27 12:16:06 -04001475 *
1476 * Note: we can't calculate each index like dir_e_read can because we don't
1477 * have the leaf, and therefore we don't have the depth, and therefore we
1478 * don't have the length. So we have to just read enough ahead to make up
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001479 * for the loss of information.
1480 */
Bob Petersondfe4d342011-10-27 12:16:06 -04001481static void gfs2_dir_readahead(struct inode *inode, unsigned hsize, u32 index,
1482 struct file_ra_state *f_ra)
1483{
1484 struct gfs2_inode *ip = GFS2_I(inode);
1485 struct gfs2_glock *gl = ip->i_gl;
1486 struct buffer_head *bh;
1487 u64 blocknr = 0, last;
1488 unsigned count;
1489
1490 /* First check if we've already read-ahead for the whole range. */
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001491 if (index + MAX_RA_BLOCKS < f_ra->start)
Bob Petersondfe4d342011-10-27 12:16:06 -04001492 return;
1493
1494 f_ra->start = max((pgoff_t)index, f_ra->start);
1495 for (count = 0; count < MAX_RA_BLOCKS; count++) {
1496 if (f_ra->start >= hsize) /* if exceeded the hash table */
1497 break;
1498
1499 last = blocknr;
1500 blocknr = be64_to_cpu(ip->i_hash_cache[f_ra->start]);
1501 f_ra->start++;
1502 if (blocknr == last)
1503 continue;
1504
1505 bh = gfs2_getbuf(gl, blocknr, 1);
1506 if (trylock_buffer(bh)) {
1507 if (buffer_uptodate(bh)) {
1508 unlock_buffer(bh);
1509 brelse(bh);
1510 continue;
1511 }
1512 bh->b_end_io = end_buffer_read_sync;
Coly Lie477b242017-07-21 07:48:22 -05001513 submit_bh(REQ_OP_READ,
1514 REQ_RAHEAD | REQ_META | REQ_PRIO,
1515 bh);
Bob Petersondfe4d342011-10-27 12:16:06 -04001516 continue;
1517 }
1518 brelse(bh);
1519 }
1520}
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001521
David Teiglandb3b94fa2006-01-16 16:50:04 +00001522/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001523 * dir_e_read - Reads the entries from a directory into a filldir buffer
1524 * @dip: dinode pointer
Al Virod81a8ef2013-05-16 14:14:48 -04001525 * @ctx: actor to feed the entries to
David Teiglandb3b94fa2006-01-16 16:50:04 +00001526 *
1527 * Returns: errno
1528 */
1529
Al Virod81a8ef2013-05-16 14:14:48 -04001530static int dir_e_read(struct inode *inode, struct dir_context *ctx,
1531 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001532{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001533 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001534 u32 hsize, len = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -04001535 u32 hash, index;
Al Virob44b84d2006-10-14 10:46:30 -04001536 __be64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001537 int copied = 0;
1538 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001539 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001540
Fabian Frederick47a9a522016-08-02 12:05:27 -05001541 hsize = BIT(dip->i_depth);
Al Virod81a8ef2013-05-16 14:14:48 -04001542 hash = gfs2_dir_offset2hash(ctx->pos);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001543 index = hash >> (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001544
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001545 if (dip->i_hash_cache == NULL)
Bob Petersondfe4d342011-10-27 12:16:06 -04001546 f_ra->start = 0;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001547 lp = gfs2_dir_get_hash_table(dip);
1548 if (IS_ERR(lp))
1549 return PTR_ERR(lp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001550
Bob Petersondfe4d342011-10-27 12:16:06 -04001551 gfs2_dir_readahead(inode, hsize, index, f_ra);
1552
David Teiglandb3b94fa2006-01-16 16:50:04 +00001553 while (index < hsize) {
Al Virod81a8ef2013-05-16 14:14:48 -04001554 error = gfs2_dir_read_leaf(inode, ctx,
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001555 &copied, &depth,
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001556 be64_to_cpu(lp[index]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001557 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001558 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001559
Fabian Frederick47a9a522016-08-02 12:05:27 -05001560 len = BIT(dip->i_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001561 index = (index & ~(len - 1)) + len;
1562 }
1563
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001564 if (error > 0)
1565 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001566 return error;
1567}
1568
Al Virod81a8ef2013-05-16 14:14:48 -04001569int gfs2_dir_read(struct inode *inode, struct dir_context *ctx,
1570 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001571{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001572 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001573 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001574 struct dirent_gather g;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001575 struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001576 struct buffer_head *dibh;
1577 int copied = 0;
1578 int error;
1579
Steven Whitehousead6203f22008-11-03 13:59:19 +00001580 if (!dip->i_entries)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001581 return 0;
1582
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001583 if (dip->i_diskflags & GFS2_DIF_EXHASH)
Al Virod81a8ef2013-05-16 14:14:48 -04001584 return dir_e_read(inode, ctx, f_ra);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001585
David Teiglandb3b94fa2006-01-16 16:50:04 +00001586 if (!gfs2_is_stuffed(dip)) {
1587 gfs2_consist_inode(dip);
1588 return -EIO;
1589 }
1590
David Teiglandb3b94fa2006-01-16 16:50:04 +00001591 error = gfs2_meta_inode_buffer(dip, &dibh);
1592 if (error)
1593 return error;
1594
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001595 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001596 /* 96 is max number of dirents which can be stuffed into an inode */
Kees Cook6da2ec52018-06-12 13:55:00 -07001597 darr = kmalloc_array(96, sizeof(struct gfs2_dirent *), GFP_NOFS);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001598 if (darr) {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001599 g.pdent = (const struct gfs2_dirent **)darr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001600 g.offset = 0;
1601 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1602 gfs2_dirent_gather, NULL, &g);
1603 if (IS_ERR(dent)) {
1604 error = PTR_ERR(dent);
1605 goto out;
1606 }
Steven Whitehousead6203f22008-11-03 13:59:19 +00001607 if (dip->i_entries != g.offset) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001608 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
Steven Whitehousead6203f22008-11-03 13:59:19 +00001609 "ip->i_entries (%u) != g.offset (%u)\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001610 (unsigned long long)dip->i_no_addr,
Steven Whitehousead6203f22008-11-03 13:59:19 +00001611 dip->i_entries,
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001612 g.offset);
Bob Petersond87d62b2017-05-26 08:28:56 -05001613 gfs2_consist_inode(dip);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001614 error = -EIO;
1615 goto out;
1616 }
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001617 gfs2_set_cookies(sdp, dibh, 0, darr, dip->i_entries);
Al Virod81a8ef2013-05-16 14:14:48 -04001618 error = do_filldir_main(dip, ctx, darr,
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001619 dip->i_entries, 0, &copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001620out:
1621 kfree(darr);
1622 }
1623
David Teiglandb3b94fa2006-01-16 16:50:04 +00001624 if (error > 0)
1625 error = 0;
1626
1627 brelse(dibh);
1628
1629 return error;
1630}
1631
David Teiglandb3b94fa2006-01-16 16:50:04 +00001632/**
1633 * gfs2_dir_search - Search a directory
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001634 * @dip: The GFS2 dir inode
1635 * @name: The name we are looking up
1636 * @fail_on_exist: Fail if the name exists rather than looking it up
David Teiglandb3b94fa2006-01-16 16:50:04 +00001637 *
1638 * This routine searches a directory for a file or another directory.
1639 * Assumes a glock is held on dip.
1640 *
1641 * Returns: errno
1642 */
1643
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001644struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name,
1645 bool fail_on_exist)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001646{
Steven Whitehousec7526662006-03-20 12:30:04 -05001647 struct buffer_head *bh;
1648 struct gfs2_dirent *dent;
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001649 u64 addr, formal_ino;
1650 u16 dtype;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001651
1652 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1653 if (dent) {
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001654 struct inode *inode;
1655 u16 rahead;
1656
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001657 if (IS_ERR(dent))
David Howellse231c2e2008-02-07 00:15:26 -08001658 return ERR_CAST(dent);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001659 dtype = be16_to_cpu(dent->de_type);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001660 rahead = be16_to_cpu(dent->de_rahead);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001661 addr = be64_to_cpu(dent->de_inum.no_addr);
1662 formal_ino = be64_to_cpu(dent->de_inum.no_formal_ino);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001663 brelse(bh);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001664 if (fail_on_exist)
1665 return ERR_PTR(-EEXIST);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -05001666 inode = gfs2_inode_lookup(dir->i_sb, dtype, addr, formal_ino,
1667 GFS2_BLKST_FREE /* ignore */);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001668 if (!IS_ERR(inode))
1669 GFS2_I(inode)->i_rahead = rahead;
1670 return inode;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001671 }
1672 return ERR_PTR(-ENOENT);
1673}
1674
1675int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1676 const struct gfs2_inode *ip)
1677{
1678 struct buffer_head *bh;
1679 struct gfs2_dirent *dent;
1680 int ret = -ENOENT;
Steven Whitehousec7526662006-03-20 12:30:04 -05001681
1682 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1683 if (dent) {
1684 if (IS_ERR(dent))
1685 return PTR_ERR(dent);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001686 if (ip) {
1687 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1688 goto out;
1689 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1690 ip->i_no_formal_ino)
1691 goto out;
1692 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1693 be16_to_cpu(dent->de_type))) {
1694 gfs2_consist_inode(GFS2_I(dir));
1695 ret = -EIO;
1696 goto out;
1697 }
1698 }
1699 ret = 0;
1700out:
Steven Whitehousec7526662006-03-20 12:30:04 -05001701 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001702 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001703 return ret;
Steven Whitehousec7526662006-03-20 12:30:04 -05001704}
1705
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001706/**
1707 * dir_new_leaf - Add a new leaf onto hash chain
1708 * @inode: The directory
1709 * @name: The name we are adding
1710 *
1711 * This adds a new dir leaf onto an existing leaf when there is not
1712 * enough space to add a new dir entry. This is a last resort after
1713 * we've expanded the hash table to max size and also split existing
1714 * leaf blocks, so it will only occur for very large directories.
1715 *
1716 * The dist parameter is set to 1 for leaf blocks directly attached
1717 * to the hash table, 2 for one layer of indirection, 3 for two layers
1718 * etc. We are thus able to tell the difference between an old leaf
1719 * with dist set to zero (i.e. "don't know") and a new one where we
1720 * set this information for debug/fsck purposes.
1721 *
1722 * Returns: 0 on success, or -ve on error
1723 */
1724
Steven Whitehousec7526662006-03-20 12:30:04 -05001725static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1726{
1727 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001728 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001729 struct gfs2_leaf *leaf, *oleaf;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001730 u32 dist = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001731 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001732 u32 index;
1733 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001734
Steven Whitehouse9a004502008-02-01 09:23:44 +00001735 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001736 error = get_first_leaf(ip, index, &obh);
1737 if (error)
1738 return error;
1739 do {
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001740 dist++;
Steven Whitehousec7526662006-03-20 12:30:04 -05001741 oleaf = (struct gfs2_leaf *)obh->b_data;
1742 bn = be64_to_cpu(oleaf->lf_next);
1743 if (!bn)
1744 break;
1745 brelse(obh);
1746 error = get_leaf(ip, bn, &obh);
1747 if (error)
1748 return error;
1749 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001750
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001751 gfs2_trans_add_meta(ip->i_gl, obh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001752
1753 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1754 if (!leaf) {
1755 brelse(obh);
1756 return -ENOSPC;
1757 }
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001758 leaf->lf_dist = cpu_to_be32(dist);
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001759 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001760 brelse(bh);
1761 brelse(obh);
1762
1763 error = gfs2_meta_inode_buffer(ip, &bh);
1764 if (error)
1765 return error;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001766 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001767 gfs2_add_inode_blocks(&ip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001768 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001769 brelse(bh);
1770 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001771}
1772
Steven Whitehouse44aaada2014-02-07 11:23:22 +00001773static u16 gfs2_inode_ra_len(const struct gfs2_inode *ip)
1774{
1775 u64 where = ip->i_no_addr + 1;
1776 if (ip->i_eattr == where)
1777 return 1;
1778 return 0;
1779}
1780
David Teiglandb3b94fa2006-01-16 16:50:04 +00001781/**
1782 * gfs2_dir_add - Add new filename into directory
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001783 * @inode: The directory inode
1784 * @name: The new name
1785 * @nip: The GFS2 inode to be linked in to the directory
1786 * @da: The directory addition info
1787 *
1788 * If the call to gfs2_diradd_alloc_required resulted in there being
1789 * no need to allocate any new directory blocks, then it will contain
1790 * a pointer to the directory entry and the bh in which it resides. We
1791 * can use that without having to repeat the search. If there was no
1792 * free space, then we must now create more space.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001793 *
1794 * Returns: 0 on success, error code on failure
1795 */
1796
Steven Whitehousec7526662006-03-20 12:30:04 -05001797int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001798 const struct gfs2_inode *nip, struct gfs2_diradd *da)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001799{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001800 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001801 struct buffer_head *bh = da->bh;
1802 struct gfs2_dirent *dent = da->dent;
Deepa Dinamani95582b02018-05-08 19:36:02 -07001803 struct timespec64 tv;
Steven Whitehousec7526662006-03-20 12:30:04 -05001804 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001805 int error;
1806
Steven Whitehousec7526662006-03-20 12:30:04 -05001807 while(1) {
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001808 if (da->bh == NULL) {
1809 dent = gfs2_dirent_search(inode, name,
1810 gfs2_dirent_find_space, &bh);
1811 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001812 if (dent) {
1813 if (IS_ERR(dent))
1814 return PTR_ERR(dent);
1815 dent = gfs2_init_dirent(inode, dent, name, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001816 gfs2_inum_out(nip, dent);
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001817 dent->de_type = cpu_to_be16(IF2DT(nip->i_inode.i_mode));
Steven Whitehouse44aaada2014-02-07 11:23:22 +00001818 dent->de_rahead = cpu_to_be16(gfs2_inode_ra_len(nip));
Deepa Dinamani078cd822016-09-14 07:48:04 -07001819 tv = current_time(&ip->i_inode);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001820 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001821 leaf = (struct gfs2_leaf *)bh->b_data;
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001822 be16_add_cpu(&leaf->lf_entries, 1);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001823 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1824 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001825 }
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001826 da->dent = NULL;
1827 da->bh = NULL;
Steven Whitehousec7526662006-03-20 12:30:04 -05001828 brelse(bh);
Steven Whitehousead6203f22008-11-03 13:59:19 +00001829 ip->i_entries++;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001830 ip->i_inode.i_mtime = ip->i_inode.i_ctime = tv;
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001831 if (S_ISDIR(nip->i_inode.i_mode))
1832 inc_nlink(&ip->i_inode);
Bob Peterson343cd8f2012-11-12 13:04:54 -05001833 mark_inode_dirty(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001834 error = 0;
1835 break;
1836 }
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001837 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001838 error = dir_make_exhash(inode);
1839 if (error)
1840 break;
1841 continue;
1842 }
1843 error = dir_split_leaf(inode, name);
1844 if (error == 0)
1845 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001846 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001847 break;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001848 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001849 error = dir_double_exhash(ip);
1850 if (error)
1851 break;
1852 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001853 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001854 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001855 if (error == 0)
1856 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001857 }
1858 error = dir_new_leaf(inode, name);
1859 if (!error)
1860 continue;
1861 error = -ENOSPC;
1862 break;
1863 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001864 return error;
1865}
1866
Steven Whitehousec7526662006-03-20 12:30:04 -05001867
David Teiglandb3b94fa2006-01-16 16:50:04 +00001868/**
1869 * gfs2_dir_del - Delete a directory entry
1870 * @dip: The GFS2 inode
1871 * @filename: The filename
1872 *
1873 * Returns: 0 on success, error code on failure
1874 */
1875
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001876int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001877{
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001878 const struct qstr *name = &dentry->d_name;
Steven Whitehousec7526662006-03-20 12:30:04 -05001879 struct gfs2_dirent *dent, *prev = NULL;
1880 struct buffer_head *bh;
Deepa Dinamani95582b02018-05-08 19:36:02 -07001881 struct timespec64 tv = current_time(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001882
Steven Whitehousec7526662006-03-20 12:30:04 -05001883 /* Returns _either_ the entry (if its first in block) or the
1884 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001885 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001886 if (!dent) {
1887 gfs2_consist_inode(dip);
1888 return -EIO;
1889 }
1890 if (IS_ERR(dent)) {
1891 gfs2_consist_inode(dip);
1892 return PTR_ERR(dent);
1893 }
1894 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001895 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001896 prev = dent;
1897 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1898 }
1899
1900 dirent_del(dip, bh, prev, dent);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001901 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001902 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1903 u16 entries = be16_to_cpu(leaf->lf_entries);
1904 if (!entries)
1905 gfs2_consist_inode(dip);
1906 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001907 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1908 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001909 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001910 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001911
Steven Whitehousead6203f22008-11-03 13:59:19 +00001912 if (!dip->i_entries)
Steven Whitehousec7526662006-03-20 12:30:04 -05001913 gfs2_consist_inode(dip);
Steven Whitehousead6203f22008-11-03 13:59:19 +00001914 dip->i_entries--;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001915 dip->i_inode.i_mtime = dip->i_inode.i_ctime = tv;
David Howellse36cb0b2015-01-29 12:02:35 +00001916 if (d_is_dir(dentry))
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001917 drop_nlink(&dip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001918 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001919
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001920 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001921}
1922
David Teiglandb3b94fa2006-01-16 16:50:04 +00001923/**
1924 * gfs2_dir_mvino - Change inode number of directory entry
1925 * @dip: The GFS2 inode
1926 * @filename:
1927 * @new_inode:
1928 *
1929 * This routine changes the inode number of a directory entry. It's used
1930 * by rename to change ".." when a directory is moved.
1931 * Assumes a glock is held on dvp.
1932 *
1933 * Returns: errno
1934 */
1935
Steven Whitehousec7526662006-03-20 12:30:04 -05001936int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001937 const struct gfs2_inode *nip, unsigned int new_type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001938{
Steven Whitehousec7526662006-03-20 12:30:04 -05001939 struct buffer_head *bh;
1940 struct gfs2_dirent *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001941
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001942 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001943 if (!dent) {
1944 gfs2_consist_inode(dip);
1945 return -EIO;
1946 }
1947 if (IS_ERR(dent))
1948 return PTR_ERR(dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001949
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001950 gfs2_trans_add_meta(dip->i_gl, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001951 gfs2_inum_out(nip, dent);
Steven Whitehousec7526662006-03-20 12:30:04 -05001952 dent->de_type = cpu_to_be16(new_type);
Andreas Gruenbacher83998cc2018-02-28 12:48:53 -07001953 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001954
Deepa Dinamani078cd822016-09-14 07:48:04 -07001955 dip->i_inode.i_mtime = dip->i_inode.i_ctime = current_time(&dip->i_inode);
Andreas Gruenbacher83998cc2018-02-28 12:48:53 -07001956 mark_inode_dirty_sync(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001957 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001958}
1959
1960/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001961 * leaf_dealloc - Deallocate a directory leaf
1962 * @dip: the directory
1963 * @index: the hash table offset in the directory
1964 * @len: the number of pointers to this leaf
1965 * @leaf_no: the leaf number
Bob Petersonec038c82011-03-22 13:55:23 -04001966 * @leaf_bh: buffer_head for the starting leaf
Bob Petersond24a7a42011-03-22 13:54:03 -04001967 * last_dealloc: 1 if this is the final dealloc for the leaf, else 0
David Teiglandb3b94fa2006-01-16 16:50:04 +00001968 *
1969 * Returns: errno
1970 */
1971
Steven Whitehousecd915492006-09-04 12:49:07 -04001972static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
Bob Petersonec038c82011-03-22 13:55:23 -04001973 u64 leaf_no, struct buffer_head *leaf_bh,
1974 int last_dealloc)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001975{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001976 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001977 struct gfs2_leaf *tmp_leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001978 struct gfs2_rgrp_list rlist;
1979 struct buffer_head *bh, *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001980 u64 blk, nblk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001981 unsigned int rg_blocks = 0, l_blocks = 0;
1982 char *ht;
Steven Whitehousecd915492006-09-04 12:49:07 -04001983 unsigned int x, size = len * sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001984 int error;
1985
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001986 error = gfs2_rindex_update(sdp);
1987 if (error)
1988 return error;
1989
David Teiglandb3b94fa2006-01-16 16:50:04 +00001990 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1991
Joe Perches8be04b92013-06-19 12:15:53 -07001992 ht = kzalloc(size, GFP_NOFS | __GFP_NOWARN);
Bob Petersone8830d82013-05-30 09:48:56 -04001993 if (ht == NULL)
Oleg Drokin7456a372015-02-01 22:59:54 -05001994 ht = __vmalloc(size, GFP_NOFS | __GFP_NOWARN | __GFP_ZERO,
1995 PAGE_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001996 if (!ht)
1997 return -ENOMEM;
1998
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001999 error = gfs2_quota_hold(dip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002000 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04002001 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002002
David Teiglandb3b94fa2006-01-16 16:50:04 +00002003 /* Count the number of leaves */
Bob Petersonec038c82011-03-22 13:55:23 -04002004 bh = leaf_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002005
Steven Whitehousec7526662006-03-20 12:30:04 -05002006 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04002007 if (blk != leaf_no) {
2008 error = get_leaf(dip, blk, &bh);
2009 if (error)
2010 goto out_rlist;
2011 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002012 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
2013 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04002014 if (blk != leaf_no)
2015 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002016
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002017 gfs2_rlist_add(dip, &rlist, blk);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002018 l_blocks++;
2019 }
2020
Bob Petersonc3abc292018-10-04 00:06:23 +01002021 gfs2_rlist_alloc(&rlist);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002022
2023 for (x = 0; x < rlist.rl_rgrps; x++) {
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -05002024 struct gfs2_rgrpd *rgd = gfs2_glock2rgrp(rlist.rl_ghs[x].gh_gl);
2025
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01002026 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002027 }
2028
2029 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
2030 if (error)
2031 goto out_rlist;
2032
2033 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05002034 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00002035 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
2036 if (error)
2037 goto out_rg_gunlock;
2038
Bob Petersonec038c82011-03-22 13:55:23 -04002039 bh = leaf_bh;
2040
Steven Whitehousec7526662006-03-20 12:30:04 -05002041 for (blk = leaf_no; blk; blk = nblk) {
Andreas Gruenbacher0ddeded2018-10-04 15:36:02 +01002042 struct gfs2_rgrpd *rgd;
2043
Bob Petersonec038c82011-03-22 13:55:23 -04002044 if (blk != leaf_no) {
2045 error = get_leaf(dip, blk, &bh);
2046 if (error)
2047 goto out_end_trans;
2048 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002049 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
2050 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04002051 if (blk != leaf_no)
2052 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002053
Andreas Gruenbacher0ddeded2018-10-04 15:36:02 +01002054 rgd = gfs2_blk2rgrpd(sdp, blk, true);
2055 gfs2_free_meta(dip, rgd, blk, 1);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00002056 gfs2_add_inode_blocks(&dip->i_inode, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002057 }
2058
Steven Whitehousecd915492006-09-04 12:49:07 -04002059 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002060 if (error != size) {
2061 if (error >= 0)
2062 error = -EIO;
2063 goto out_end_trans;
2064 }
2065
2066 error = gfs2_meta_inode_buffer(dip, &dibh);
2067 if (error)
2068 goto out_end_trans;
2069
Steven Whitehouse350a9b02012-12-14 12:36:02 +00002070 gfs2_trans_add_meta(dip->i_gl, dibh);
Bob Petersond24a7a42011-03-22 13:54:03 -04002071 /* On the last dealloc, make this a regular file in case we crash.
2072 (We don't want to free these blocks a second time.) */
2073 if (last_dealloc)
2074 dip->i_inode.i_mode = S_IFREG;
Steven Whitehouse539e5d62006-10-31 15:07:05 -05002075 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002076 brelse(dibh);
2077
Steven Whitehousea91ea692006-09-04 12:04:26 -04002078out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00002079 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04002080out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00002081 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -04002082out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +00002083 gfs2_rlist_free(&rlist);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002084 gfs2_quota_unhold(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03002085out:
Al Viro3cdcf632014-11-20 05:18:38 +00002086 kvfree(ht);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002087 return error;
2088}
2089
2090/**
2091 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
2092 * @dip: the directory
2093 *
2094 * Dealloc all on-disk directory leaves to FREEMETA state
2095 * Change on-disk inode type to "regular file"
2096 *
2097 * Returns: errno
2098 */
2099
2100int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
2101{
Bob Peterson556bb172011-03-22 13:56:37 -04002102 struct buffer_head *bh;
2103 struct gfs2_leaf *leaf;
2104 u32 hsize, len;
Bob Peterson556bb172011-03-22 13:56:37 -04002105 u32 index = 0, next_index;
2106 __be64 *lp;
2107 u64 leaf_no;
2108 int error = 0, last;
2109
Fabian Frederick47a9a522016-08-02 12:05:27 -05002110 hsize = BIT(dip->i_depth);
Bob Peterson556bb172011-03-22 13:56:37 -04002111
Steven Whitehouse17d539f2011-06-15 10:29:37 +01002112 lp = gfs2_dir_get_hash_table(dip);
2113 if (IS_ERR(lp))
2114 return PTR_ERR(lp);
Bob Peterson556bb172011-03-22 13:56:37 -04002115
2116 while (index < hsize) {
Steven Whitehouse17d539f2011-06-15 10:29:37 +01002117 leaf_no = be64_to_cpu(lp[index]);
Bob Peterson556bb172011-03-22 13:56:37 -04002118 if (leaf_no) {
2119 error = get_leaf(dip, leaf_no, &bh);
2120 if (error)
2121 goto out;
2122 leaf = (struct gfs2_leaf *)bh->b_data;
Fabian Frederick47a9a522016-08-02 12:05:27 -05002123 len = BIT(dip->i_depth - be16_to_cpu(leaf->lf_depth));
Bob Peterson556bb172011-03-22 13:56:37 -04002124
2125 next_index = (index & ~(len - 1)) + len;
2126 last = ((next_index >= hsize) ? 1 : 0);
2127 error = leaf_dealloc(dip, index, len, leaf_no, bh,
2128 last);
2129 brelse(bh);
2130 if (error)
2131 goto out;
2132 index = next_index;
2133 } else
2134 index++;
2135 }
2136
2137 if (index != hsize) {
2138 gfs2_consist_inode(dip);
2139 error = -EIO;
2140 }
2141
2142out:
Bob Peterson556bb172011-03-22 13:56:37 -04002143
2144 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002145}
2146
2147/**
2148 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
2149 * @ip: the file being written to
2150 * @filname: the filename that's going to be added
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002151 * @da: The structure to return dir alloc info
David Teiglandb3b94fa2006-01-16 16:50:04 +00002152 *
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002153 * Returns: 0 if ok, -ve on error
David Teiglandb3b94fa2006-01-16 16:50:04 +00002154 */
2155
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002156int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name,
2157 struct gfs2_diradd *da)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002158{
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002159 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002160 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002161 const unsigned int extra = sizeof(struct gfs2_dinode) - sizeof(struct gfs2_leaf);
Steven Whitehousec7526662006-03-20 12:30:04 -05002162 struct gfs2_dirent *dent;
2163 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002164
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002165 da->nr_blocks = 0;
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00002166 da->bh = NULL;
2167 da->dent = NULL;
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002168
Steven Whitehousec7526662006-03-20 12:30:04 -05002169 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
Steven Whitehouseed386502006-04-07 16:28:07 -04002170 if (!dent) {
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002171 da->nr_blocks = sdp->sd_max_dirres;
Steven Whitehouse22b5a6c2014-01-08 11:05:29 +00002172 if (!(ip->i_diskflags & GFS2_DIF_EXHASH) &&
2173 (GFS2_DIRENT_SIZE(name->len) < extra))
2174 da->nr_blocks = 1;
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00002175 return 0;
Steven Whitehouseed386502006-04-07 16:28:07 -04002176 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002177 if (IS_ERR(dent))
2178 return PTR_ERR(dent);
Bob Peterson19aeb5a62014-09-29 08:52:04 -04002179
2180 if (da->save_loc) {
2181 da->bh = bh;
2182 da->dent = dent;
2183 } else {
2184 brelse(bh);
2185 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002186 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002187}
2188