blob: 42b7dfffb5e7eba43e485a0fd5e888453f87f547 [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
Bob Petersondfe4d342011-10-27 12:16:06 -040076#define MAX_RA_BLOCKS 32 /* max read-ahead blocks */
77
Steven Whitehousecd915492006-09-04 12:49:07 -040078#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
79#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
Benjamin Marzinski471f3db2015-12-01 08:46:55 -060080#define GFS2_HASH_INDEX_MASK 0xffffc000
81#define GFS2_USE_HASH_FLAG 0x2000
David Teiglandb3b94fa2006-01-16 16:50:04 +000082
Steven Whitehouse8d123582010-09-17 12:30:23 +010083struct qstr gfs2_qdot __read_mostly;
84struct qstr gfs2_qdotdot __read_mostly;
85
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -040086typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
87 const struct qstr *name, void *opaque);
David Teiglandb3b94fa2006-01-16 16:50:04 +000088
Steven Whitehousecd915492006-09-04 12:49:07 -040089int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -040090 struct buffer_head **bhp)
Steven Whitehousee13940b2006-01-30 13:31:50 +000091{
92 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +000093
Steven Whitehouse61e085a2006-04-24 10:07:13 -040094 bh = gfs2_meta_new(ip->i_gl, block);
Steven Whitehouse350a9b02012-12-14 12:36:02 +000095 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -040096 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
97 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
Steven Whitehousee13940b2006-01-30 13:31:50 +000098 *bhp = bh;
99 return 0;
100}
101
Steven Whitehousecd915492006-09-04 12:49:07 -0400102static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400103 struct buffer_head **bhp)
104{
105 struct buffer_head *bh;
106 int error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000107
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600108 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, 0, &bh);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400109 if (error)
110 return error;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400111 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400112 brelse(bh);
113 return -EIO;
114 }
115 *bhp = bh;
116 return 0;
117}
Steven Whitehousee13940b2006-01-30 13:31:50 +0000118
119static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
120 unsigned int offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000121{
122 struct buffer_head *dibh;
123 int error;
124
125 error = gfs2_meta_inode_buffer(ip, &dibh);
126 if (error)
127 return error;
128
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000129 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500130 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100131 if (ip->i_inode.i_size < offset + size)
132 i_size_write(&ip->i_inode, offset + size);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700133 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500134 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000135
136 brelse(dibh);
137
138 return size;
139}
140
141
142
143/**
144 * gfs2_dir_write_data - Write directory information to the inode
145 * @ip: The GFS2 inode
146 * @buf: The buffer containing information to be written
147 * @offset: The file offset to start writing at
148 * @size: The amount of data to write
149 *
150 * Returns: The number of bytes correctly written or error code
151 */
152static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
Steven Whitehousecd915492006-09-04 12:49:07 -0400153 u64 offset, unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000154{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400155 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000156 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400157 u64 lblock, dblock;
158 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000159 unsigned int o;
160 int copied = 0;
161 int error = 0;
Andreas Gruenbacher9153dac2021-03-31 23:17:38 +0200162 bool new = false;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000163
164 if (!size)
165 return 0;
166
Andreas Gruenbacher235628c2017-11-14 16:53:12 +0100167 if (gfs2_is_stuffed(ip) && offset + size <= gfs2_max_stuffed_size(ip))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500168 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
169 size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000170
171 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
172 return -EINVAL;
173
174 if (gfs2_is_stuffed(ip)) {
Andreas Gruenbacher7a607a42021-06-17 21:36:50 +0200175 error = gfs2_unstuff_dinode(ip);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000176 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500177 return error;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000178 }
179
180 lblock = offset;
181 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
182
183 while (copied < size) {
184 unsigned int amount;
185 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000186
187 amount = size - copied;
188 if (amount > sdp->sd_sb.sb_bsize - o)
189 amount = sdp->sd_sb.sb_bsize - o;
190
191 if (!extlen) {
Andreas Gruenbacher9153dac2021-03-31 23:17:38 +0200192 extlen = 1;
193 error = gfs2_alloc_extent(&ip->i_inode, lblock, &dblock,
194 &extlen, &new);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000195 if (error)
196 goto fail;
197 error = -EIO;
198 if (gfs2_assert_withdraw(sdp, dblock))
199 goto fail;
200 }
201
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400202 if (amount == sdp->sd_jbsize || new)
203 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
204 else
205 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
206
Steven Whitehousee13940b2006-01-30 13:31:50 +0000207 if (error)
208 goto fail;
209
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000210 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000211 memcpy(bh->b_data + o, buf, amount);
212 brelse(bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000213
Steven Whitehouse899bb262006-08-01 15:28:57 -0400214 buf += amount;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000215 copied += amount;
216 lblock++;
217 dblock++;
218 extlen--;
219
220 o = sizeof(struct gfs2_meta_header);
221 }
222
223out:
224 error = gfs2_meta_inode_buffer(ip, &dibh);
225 if (error)
226 return error;
227
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100228 if (ip->i_inode.i_size < offset + copied)
229 i_size_write(&ip->i_inode, offset + copied);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700230 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000231
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000232 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500233 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000234 brelse(dibh);
235
236 return copied;
237fail:
238 if (copied)
239 goto out;
240 return error;
241}
242
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100243static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, __be64 *buf,
244 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000245{
246 struct buffer_head *dibh;
247 int error;
248
249 error = gfs2_meta_inode_buffer(ip, &dibh);
250 if (!error) {
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100251 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000252 brelse(dibh);
253 }
254
255 return (error) ? error : size;
256}
257
258
259/**
260 * gfs2_dir_read_data - Read a data from a directory inode
261 * @ip: The GFS2 Inode
262 * @buf: The buffer to place result into
Steven Whitehousee13940b2006-01-30 13:31:50 +0000263 * @size: Amount of data to transfer
264 *
265 * Returns: The amount of data actually copied or the error
266 */
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100267static int gfs2_dir_read_data(struct gfs2_inode *ip, __be64 *buf,
268 unsigned int size)
Steven Whitehousee13940b2006-01-30 13:31:50 +0000269{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400270 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400271 u64 lblock, dblock;
272 u32 extlen = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000273 unsigned int o;
274 int copied = 0;
275 int error = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000276
277 if (gfs2_is_stuffed(ip))
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100278 return gfs2_dir_read_stuffed(ip, buf, size);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000279
280 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
281 return -EINVAL;
282
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100283 lblock = 0;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000284 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
285
286 while (copied < size) {
287 unsigned int amount;
288 struct buffer_head *bh;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000289
290 amount = size - copied;
291 if (amount > sdp->sd_sb.sb_bsize - o)
292 amount = sdp->sd_sb.sb_bsize - o;
293
294 if (!extlen) {
Andreas Gruenbacher9153dac2021-03-31 23:17:38 +0200295 extlen = 32;
296 error = gfs2_get_extent(&ip->i_inode, lblock,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400297 &dblock, &extlen);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400298 if (error || !dblock)
299 goto fail;
300 BUG_ON(extlen < 1);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400301 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
Adrian Bunkb7d8ac32006-10-19 16:02:07 +0200302 } else {
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600303 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, 0, &bh);
Steven Whitehousee13940b2006-01-30 13:31:50 +0000304 if (error)
305 goto fail;
306 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400307 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
308 if (error) {
309 brelse(bh);
310 goto fail;
311 }
312 dblock++;
313 extlen--;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000314 memcpy(buf, bh->b_data + o, amount);
315 brelse(bh);
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100316 buf += (amount/sizeof(__be64));
Steven Whitehousee13940b2006-01-30 13:31:50 +0000317 copied += amount;
318 lblock++;
Steven Whitehousee13940b2006-01-30 13:31:50 +0000319 o = sizeof(struct gfs2_meta_header);
320 }
321
322 return copied;
323fail:
324 return (copied) ? copied : error;
325}
326
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100327/**
328 * gfs2_dir_get_hash_table - Get pointer to the dir hash table
329 * @ip: The inode in question
330 *
331 * Returns: The hash table or an error
332 */
333
334static __be64 *gfs2_dir_get_hash_table(struct gfs2_inode *ip)
335{
336 struct inode *inode = &ip->i_inode;
337 int ret;
338 u32 hsize;
339 __be64 *hc;
340
341 BUG_ON(!(ip->i_diskflags & GFS2_DIF_EXHASH));
342
343 hc = ip->i_hash_cache;
344 if (hc)
345 return hc;
346
Fabian Frederick47a9a522016-08-02 12:05:27 -0500347 hsize = BIT(ip->i_depth);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100348 hsize *= sizeof(__be64);
349 if (hsize != i_size_read(&ip->i_inode)) {
350 gfs2_consist_inode(ip);
351 return ERR_PTR(-EIO);
352 }
353
Bob Petersone8830d82013-05-30 09:48:56 -0400354 hc = kmalloc(hsize, GFP_NOFS | __GFP_NOWARN);
355 if (hc == NULL)
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700356 hc = __vmalloc(hsize, GFP_NOFS);
Bob Petersone8830d82013-05-30 09:48:56 -0400357
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100358 if (hc == NULL)
359 return ERR_PTR(-ENOMEM);
360
Steven Whitehouse4c28d332011-07-26 09:17:28 +0100361 ret = gfs2_dir_read_data(ip, hc, hsize);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100362 if (ret < 0) {
Al Viro3cdcf632014-11-20 05:18:38 +0000363 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100364 return ERR_PTR(ret);
365 }
366
367 spin_lock(&inode->i_lock);
Al Viro9265f1d2014-11-20 05:19:47 +0000368 if (likely(!ip->i_hash_cache)) {
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100369 ip->i_hash_cache = hc;
Al Viro9265f1d2014-11-20 05:19:47 +0000370 hc = NULL;
371 }
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100372 spin_unlock(&inode->i_lock);
Al Viro9265f1d2014-11-20 05:19:47 +0000373 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100374
375 return ip->i_hash_cache;
376}
377
378/**
379 * gfs2_dir_hash_inval - Invalidate dir hash
380 * @ip: The directory inode
381 *
382 * Must be called with an exclusive glock, or during glock invalidation.
383 */
384void gfs2_dir_hash_inval(struct gfs2_inode *ip)
385{
Bob Petersonc36b97e2015-10-29 10:03:41 -0500386 __be64 *hc;
387
388 spin_lock(&ip->i_inode.i_lock);
389 hc = ip->i_hash_cache;
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100390 ip->i_hash_cache = NULL;
Bob Petersonc36b97e2015-10-29 10:03:41 -0500391 spin_unlock(&ip->i_inode.i_lock);
392
Al Viro3cdcf632014-11-20 05:18:38 +0000393 kvfree(hc);
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100394}
395
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500396static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent)
397{
398 return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0;
399}
400
Steven Whitehousec7526662006-03-20 12:30:04 -0500401static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
402 const struct qstr *name, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403{
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500404 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500405 be32_to_cpu(dent->de_hash) == name->hash &&
406 be16_to_cpu(dent->de_name_len) == name->len &&
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400407 memcmp(dent+1, name->name, name->len) == 0)
Steven Whitehousec7526662006-03-20 12:30:04 -0500408 return ret;
409 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410}
411
Steven Whitehousec7526662006-03-20 12:30:04 -0500412static int gfs2_dirent_find(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500413 const struct qstr *name,
414 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500415{
416 return __gfs2_dirent_find(dent, name, 1);
417}
418
419static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500420 const struct qstr *name,
421 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500422{
423 return __gfs2_dirent_find(dent, name, 2);
424}
425
426/*
427 * name->name holds ptr to start of block.
428 * name->len holds size of block.
429 */
430static int gfs2_dirent_last(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500431 const struct qstr *name,
432 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500433{
434 const char *start = name->name;
435 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
436 if (name->len == (end - start))
437 return 1;
438 return 0;
439}
440
Benjamin Marzinski34017472015-12-01 08:30:34 -0600441/* Look for the dirent that contains the offset specified in data. Once we
442 * find that dirent, there must be space available there for the new dirent */
443static int gfs2_dirent_find_offset(const struct gfs2_dirent *dent,
444 const struct qstr *name,
445 void *ptr)
446{
447 unsigned required = GFS2_DIRENT_SIZE(name->len);
448 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
449 unsigned totlen = be16_to_cpu(dent->de_rec_len);
450
451 if (ptr < (void *)dent || ptr >= (void *)dent + totlen)
452 return 0;
453 if (gfs2_dirent_sentinel(dent))
454 actual = 0;
455 if (ptr < (void *)dent + actual)
456 return -1;
457 if ((void *)dent + totlen >= ptr + required)
458 return 1;
459 return -1;
460}
461
Steven Whitehousec7526662006-03-20 12:30:04 -0500462static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500463 const struct qstr *name,
464 void *opaque)
Steven Whitehousec7526662006-03-20 12:30:04 -0500465{
466 unsigned required = GFS2_DIRENT_SIZE(name->len);
467 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
468 unsigned totlen = be16_to_cpu(dent->de_rec_len);
469
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500470 if (gfs2_dirent_sentinel(dent))
Bob Peterson728a7562010-07-14 18:12:26 -0400471 actual = 0;
Jan Engelhardtc53921242006-09-05 14:30:40 +0200472 if (totlen - actual >= required)
Steven Whitehousec7526662006-03-20 12:30:04 -0500473 return 1;
474 return 0;
475}
476
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500477struct dirent_gather {
478 const struct gfs2_dirent **pdent;
479 unsigned offset;
480};
481
482static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
483 const struct qstr *name,
484 void *opaque)
485{
486 struct dirent_gather *g = opaque;
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500487 if (!gfs2_dirent_sentinel(dent)) {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500488 g->pdent[g->offset++] = dent;
489 }
490 return 0;
491}
492
Steven Whitehousec7526662006-03-20 12:30:04 -0500493/*
494 * Other possible things to check:
495 * - Inode located within filesystem size (and on valid block)
496 * - Valid directory entry type
497 * Not sure how heavy-weight we want to make this... could also check
498 * hash is correct for example, but that would take a lot of extra time.
499 * For now the most important thing is to check that the various sizes
500 * are correct.
501 */
Bob Petersone54c78a2018-10-03 08:47:36 -0500502static int gfs2_check_dirent(struct gfs2_sbd *sdp,
503 struct gfs2_dirent *dent, unsigned int offset,
Steven Whitehousec7526662006-03-20 12:30:04 -0500504 unsigned int size, unsigned int len, int first)
505{
506 const char *msg = "gfs2_dirent too small";
507 if (unlikely(size < sizeof(struct gfs2_dirent)))
508 goto error;
509 msg = "gfs2_dirent misaligned";
510 if (unlikely(offset & 0x7))
511 goto error;
512 msg = "gfs2_dirent points beyond end of block";
513 if (unlikely(offset + size > len))
514 goto error;
515 msg = "zero inode number";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500516 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
Steven Whitehousec7526662006-03-20 12:30:04 -0500517 goto error;
518 msg = "name length is greater than space in dirent";
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500519 if (!gfs2_dirent_sentinel(dent) &&
Steven Whitehousec7526662006-03-20 12:30:04 -0500520 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
521 size))
522 goto error;
523 return 0;
524error:
Bob Petersone54c78a2018-10-03 08:47:36 -0500525 fs_warn(sdp, "%s: %s (%s)\n",
Joe Perchesd77d1b52014-03-06 12:10:45 -0800526 __func__, msg, first ? "first in block" : "not first in block");
Steven Whitehousec7526662006-03-20 12:30:04 -0500527 return -EIO;
528}
529
Bob Petersone54c78a2018-10-03 08:47:36 -0500530static int gfs2_dirent_offset(struct gfs2_sbd *sdp, const void *buf)
Steven Whitehousec7526662006-03-20 12:30:04 -0500531{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500532 const struct gfs2_meta_header *h = buf;
533 int offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500534
535 BUG_ON(buf == NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500536
Steven Whitehousee3167de2006-03-30 15:46:23 -0500537 switch(be32_to_cpu(h->mh_type)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500538 case GFS2_METATYPE_LF:
539 offset = sizeof(struct gfs2_leaf);
540 break;
541 case GFS2_METATYPE_DI:
542 offset = sizeof(struct gfs2_dinode);
543 break;
544 default:
545 goto wrong_type;
546 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500547 return offset;
548wrong_type:
Bob Petersone54c78a2018-10-03 08:47:36 -0500549 fs_warn(sdp, "%s: wrong block type %u\n", __func__,
550 be32_to_cpu(h->mh_type));
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500551 return -1;
552}
Steven Whitehousec7526662006-03-20 12:30:04 -0500553
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400554static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500555 unsigned int len, gfs2_dscan_t scan,
556 const struct qstr *name,
557 void *opaque)
558{
559 struct gfs2_dirent *dent, *prev;
560 unsigned offset;
561 unsigned size;
562 int ret = 0;
563
Bob Petersone54c78a2018-10-03 08:47:36 -0500564 ret = gfs2_dirent_offset(GFS2_SB(inode), buf);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500565 if (ret < 0)
566 goto consist_inode;
567
568 offset = ret;
Steven Whitehousec7526662006-03-20 12:30:04 -0500569 prev = NULL;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400570 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500571 size = be16_to_cpu(dent->de_rec_len);
Bob Petersone54c78a2018-10-03 08:47:36 -0500572 if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size, len, 1))
Steven Whitehousec7526662006-03-20 12:30:04 -0500573 goto consist_inode;
574 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500575 ret = scan(dent, name, opaque);
Steven Whitehousec7526662006-03-20 12:30:04 -0500576 if (ret)
577 break;
578 offset += size;
579 if (offset == len)
580 break;
581 prev = dent;
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400582 dent = buf + offset;
Steven Whitehousec7526662006-03-20 12:30:04 -0500583 size = be16_to_cpu(dent->de_rec_len);
Bob Petersone54c78a2018-10-03 08:47:36 -0500584 if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size,
585 len, 0))
Steven Whitehousec7526662006-03-20 12:30:04 -0500586 goto consist_inode;
587 } while(1);
588
589 switch(ret) {
590 case 0:
591 return NULL;
592 case 1:
593 return dent;
594 case 2:
595 return prev ? prev : dent;
596 default:
597 BUG_ON(ret > 0);
598 return ERR_PTR(ret);
599 }
600
Steven Whitehousec7526662006-03-20 12:30:04 -0500601consist_inode:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400602 gfs2_consist_inode(GFS2_I(inode));
Steven Whitehousec7526662006-03-20 12:30:04 -0500603 return ERR_PTR(-EIO);
604}
605
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400606static int dirent_check_reclen(struct gfs2_inode *dip,
607 const struct gfs2_dirent *d, const void *end_p)
608{
609 const void *ptr = d;
610 u16 rec_len = be16_to_cpu(d->de_rec_len);
611
612 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
613 goto broken;
614 ptr += rec_len;
615 if (ptr < end_p)
616 return rec_len;
617 if (ptr == end_p)
618 return -ENOENT;
619broken:
620 gfs2_consist_inode(dip);
621 return -EIO;
622}
623
David Teiglandb3b94fa2006-01-16 16:50:04 +0000624/**
625 * dirent_next - Next dirent
626 * @dip: the directory
627 * @bh: The buffer
628 * @dent: Pointer to list of dirents
629 *
630 * Returns: 0 on success, error code otherwise
631 */
632
633static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
634 struct gfs2_dirent **dent)
635{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400636 struct gfs2_dirent *cur = *dent, *tmp;
637 char *bh_end = bh->b_data + bh->b_size;
638 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400640 ret = dirent_check_reclen(dip, cur, bh_end);
641 if (ret < 0)
642 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400644 tmp = (void *)cur + ret;
645 ret = dirent_check_reclen(dip, tmp, bh_end);
646 if (ret == -EIO)
647 return ret;
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000648
David Teiglandb3b94fa2006-01-16 16:50:04 +0000649 /* Only the first dent could ever have de_inum.no_addr == 0 */
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500650 if (gfs2_dirent_sentinel(tmp)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000651 gfs2_consist_inode(dip);
652 return -EIO;
653 }
654
655 *dent = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 return 0;
657}
658
659/**
660 * dirent_del - Delete a dirent
661 * @dip: The GFS2 inode
662 * @bh: The buffer
663 * @prev: The previous dirent
664 * @cur: The current dirent
665 *
666 */
667
668static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
669 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
670{
Steven Whitehousecd915492006-09-04 12:49:07 -0400671 u16 cur_rec_len, prev_rec_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500673 if (gfs2_dirent_sentinel(cur)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674 gfs2_consist_inode(dip);
675 return;
676 }
677
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000678 gfs2_trans_add_meta(dip->i_gl, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000679
680 /* If there is no prev entry, this is the first entry in the block.
681 The de_rec_len is already as big as it needs to be. Just zero
682 out the inode number and return. */
683
684 if (!prev) {
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -0500685 cur->de_inum.no_addr = 0;
686 cur->de_inum.no_formal_ino = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687 return;
688 }
689
690 /* Combine this dentry with the previous one. */
691
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000692 prev_rec_len = be16_to_cpu(prev->de_rec_len);
693 cur_rec_len = be16_to_cpu(cur->de_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694
695 if ((char *)prev + prev_rec_len != (char *)cur)
696 gfs2_consist_inode(dip);
697 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
698 gfs2_consist_inode(dip);
699
700 prev_rec_len += cur_rec_len;
Steven Whitehousefc69d0d2006-02-13 16:21:47 +0000701 prev->de_rec_len = cpu_to_be16(prev_rec_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702}
703
Benjamin Marzinski34017472015-12-01 08:30:34 -0600704
705static struct gfs2_dirent *do_init_dirent(struct inode *inode,
706 struct gfs2_dirent *dent,
707 const struct qstr *name,
708 struct buffer_head *bh,
709 unsigned offset)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000710{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400711 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -0500712 struct gfs2_dirent *ndent;
Benjamin Marzinski34017472015-12-01 08:30:34 -0600713 unsigned totlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000714
Steven Whitehousec7526662006-03-20 12:30:04 -0500715 totlen = be16_to_cpu(dent->de_rec_len);
716 BUG_ON(offset + name->len > totlen);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000717 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500718 ndent = (struct gfs2_dirent *)((char *)dent + offset);
719 dent->de_rec_len = cpu_to_be16(offset);
720 gfs2_qstr2dirent(name, totlen - offset, ndent);
721 return ndent;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722}
723
Benjamin Marzinski34017472015-12-01 08:30:34 -0600724
725/*
726 * Takes a dent from which to grab space as an argument. Returns the
727 * newly created dent.
728 */
729static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
730 struct gfs2_dirent *dent,
731 const struct qstr *name,
732 struct buffer_head *bh)
733{
734 unsigned offset = 0;
735
736 if (!gfs2_dirent_sentinel(dent))
737 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
738 return do_init_dirent(inode, dent, name, bh, offset);
739}
740
741static struct gfs2_dirent *gfs2_dirent_split_alloc(struct inode *inode,
742 struct buffer_head *bh,
743 const struct qstr *name,
744 void *ptr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745{
746 struct gfs2_dirent *dent;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400747 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Benjamin Marzinski34017472015-12-01 08:30:34 -0600748 gfs2_dirent_find_offset, name, ptr);
Kefeng Wang15a798f2019-06-05 22:24:24 +0800749 if (IS_ERR_OR_NULL(dent))
Steven Whitehousec7526662006-03-20 12:30:04 -0500750 return dent;
Benjamin Marzinski34017472015-12-01 08:30:34 -0600751 return do_init_dirent(inode, dent, name, bh,
752 (unsigned)(ptr - (void *)dent));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000753}
754
Steven Whitehousecd915492006-09-04 12:49:07 -0400755static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 struct buffer_head **bhp)
757{
758 int error;
759
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600760 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, 0, bhp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400761 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800762 /* pr_info("block num=%llu\n", leaf_no); */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400764 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765
766 return error;
767}
768
769/**
770 * get_leaf_nr - Get a leaf number associated with the index
771 * @dip: The GFS2 inode
Bob Peterson3ae3a7d2021-03-22 08:38:57 -0400772 * @index: hash table index of the targeted leaf
773 * @leaf_out: Resulting leaf block number
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774 *
775 * Returns: 0 on success, error code otherwise
776 */
777
Bob Peterson3ae3a7d2021-03-22 08:38:57 -0400778static int get_leaf_nr(struct gfs2_inode *dip, u32 index, u64 *leaf_out)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779{
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100780 __be64 *hash;
Arnd Bergmann287980e2016-05-27 23:23:25 +0200781 int error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000782
Steven Whitehouse17d539f2011-06-15 10:29:37 +0100783 hash = gfs2_dir_get_hash_table(dip);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200784 error = PTR_ERR_OR_ZERO(hash);
785
786 if (!error)
787 *leaf_out = be64_to_cpu(*(hash + index));
788
789 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790}
791
Steven Whitehousecd915492006-09-04 12:49:07 -0400792static int get_first_leaf(struct gfs2_inode *dip, u32 index,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 struct buffer_head **bh_out)
794{
Steven Whitehousecd915492006-09-04 12:49:07 -0400795 u64 leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 int error;
797
798 error = get_leaf_nr(dip, index, &leaf_no);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200799 if (!error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000800 error = get_leaf(dip, leaf_no, bh_out);
801
802 return error;
803}
804
Steven Whitehousec7526662006-03-20 12:30:04 -0500805static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
806 const struct qstr *name,
807 gfs2_dscan_t scan,
808 struct buffer_head **pbh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809{
Steven Whitehousec7526662006-03-20 12:30:04 -0500810 struct buffer_head *bh;
811 struct gfs2_dirent *dent;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400812 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813 int error;
814
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000815 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500816 struct gfs2_leaf *leaf;
Fabian Frederick47a9a522016-08-02 12:05:27 -0500817 unsigned int hsize = BIT(ip->i_depth);
818 unsigned int index;
Steven Whitehousec7526662006-03-20 12:30:04 -0500819 u64 ln;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100820 if (hsize * sizeof(u64) != i_size_read(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500821 gfs2_consist_inode(ip);
822 return ERR_PTR(-EIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000823 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400824
Steven Whitehouse9a004502008-02-01 09:23:44 +0000825 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -0500826 error = get_first_leaf(ip, index, &bh);
827 if (error)
828 return ERR_PTR(error);
829 do {
830 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500831 scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500832 if (dent)
833 goto got_dent;
834 leaf = (struct gfs2_leaf *)bh->b_data;
835 ln = be64_to_cpu(leaf->lf_next);
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400836 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500837 if (!ln)
838 break;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400839
Steven Whitehousec7526662006-03-20 12:30:04 -0500840 error = get_leaf(ip, ln, &bh);
841 } while(!error);
842
843 return error ? ERR_PTR(error) : NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400846
Steven Whitehousec7526662006-03-20 12:30:04 -0500847 error = gfs2_meta_inode_buffer(ip, &bh);
848 if (error)
849 return ERR_PTR(error);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500850 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500851got_dent:
Kefeng Wang15a798f2019-06-05 22:24:24 +0800852 if (IS_ERR_OR_NULL(dent)) {
Steven Whitehouseed386502006-04-07 16:28:07 -0400853 brelse(bh);
854 bh = NULL;
855 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500856 *pbh = bh;
857 return dent;
858}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000859
Steven Whitehousec7526662006-03-20 12:30:04 -0500860static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
861{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400862 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000863 unsigned int n = 1;
Steven Whitehouse09010972009-05-20 10:48:47 +0100864 u64 bn;
865 int error;
866 struct buffer_head *bh;
Steven Whitehousec7526662006-03-20 12:30:04 -0500867 struct gfs2_leaf *leaf;
868 struct gfs2_dirent *dent;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700869 struct timespec64 tv = current_time(inode);
Steven Whitehouse09010972009-05-20 10:48:47 +0100870
Bob Peterson6e87ed02011-11-18 10:58:32 -0500871 error = gfs2_alloc_blocks(ip, &bn, &n, 0, NULL);
Steven Whitehouse09010972009-05-20 10:48:47 +0100872 if (error)
873 return NULL;
874 bh = gfs2_meta_new(ip->i_gl, bn);
Steven Whitehousec7526662006-03-20 12:30:04 -0500875 if (!bh)
876 return NULL;
Steven Whitehouse09010972009-05-20 10:48:47 +0100877
Andreas Gruenbacherfbb27872019-04-05 12:18:23 +0100878 gfs2_trans_remove_revoke(GFS2_SB(inode), bn, 1);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000879 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500880 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
881 leaf = (struct gfs2_leaf *)bh->b_data;
882 leaf->lf_depth = cpu_to_be16(depth);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400883 leaf->lf_entries = 0;
Al Viroa2d7d022006-10-14 16:49:30 +0100884 leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -0400885 leaf->lf_next = 0;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +0000886 leaf->lf_inode = cpu_to_be64(ip->i_no_addr);
887 leaf->lf_dist = cpu_to_be32(1);
888 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
889 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
890 memset(leaf->lf_reserved2, 0, sizeof(leaf->lf_reserved2));
Steven Whitehousec7526662006-03-20 12:30:04 -0500891 dent = (struct gfs2_dirent *)(leaf+1);
David Howellscdf01222017-07-04 17:25:22 +0100892 gfs2_qstr2dirent(&empty_name, bh->b_size - sizeof(struct gfs2_leaf), dent);
Steven Whitehousec7526662006-03-20 12:30:04 -0500893 *pbh = bh;
894 return leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895}
896
897/**
898 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
Bob Peterson3ae3a7d2021-03-22 08:38:57 -0400899 * @inode: The directory inode to be converted to exhash
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900 *
901 * Returns: 0 on success, error code otherwise
902 */
903
Steven Whitehousec7526662006-03-20 12:30:04 -0500904static int dir_make_exhash(struct inode *inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000905{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400906 struct gfs2_inode *dip = GFS2_I(inode);
907 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000908 struct gfs2_dirent *dent;
Steven Whitehousec7526662006-03-20 12:30:04 -0500909 struct qstr args;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910 struct buffer_head *bh, *dibh;
911 struct gfs2_leaf *leaf;
912 int y;
Steven Whitehousecd915492006-09-04 12:49:07 -0400913 u32 x;
Al Virob44b84d2006-10-14 10:46:30 -0400914 __be64 *lp;
915 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916 int error;
917
918 error = gfs2_meta_inode_buffer(dip, &dibh);
919 if (error)
920 return error;
921
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 /* Turn over a new leaf */
923
Steven Whitehousec7526662006-03-20 12:30:04 -0500924 leaf = new_leaf(inode, &bh, 0);
925 if (!leaf)
926 return -ENOSPC;
927 bn = bh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928
Fabian Frederick47a9a522016-08-02 12:05:27 -0500929 gfs2_assert(sdp, dip->i_entries < BIT(16));
Steven Whitehousead6203f22008-11-03 13:59:19 +0000930 leaf->lf_entries = cpu_to_be16(dip->i_entries);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931
932 /* Copy dirents */
933
934 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
935 sizeof(struct gfs2_dinode));
936
937 /* Find last entry */
938
939 x = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500940 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
941 sizeof(struct gfs2_leaf);
942 args.name = bh->b_data;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400943 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500944 gfs2_dirent_last, &args, NULL);
Steven Whitehousec7526662006-03-20 12:30:04 -0500945 if (!dent) {
946 brelse(bh);
947 brelse(dibh);
948 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 }
Steven Whitehousec7526662006-03-20 12:30:04 -0500950 if (IS_ERR(dent)) {
951 brelse(bh);
952 brelse(dibh);
953 return PTR_ERR(dent);
954 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955
956 /* Adjust the last dirent's record length
957 (Remember that dent still points to the last entry.) */
958
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000959 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 sizeof(struct gfs2_dinode) -
Steven Whitehouse4dd651a2006-02-14 15:56:44 +0000961 sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962
963 brelse(bh);
964
965 /* We're done with the new leaf block, now setup the new
966 hash table. */
967
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000968 gfs2_trans_add_meta(dip->i_gl, dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
970
Al Virob44b84d2006-10-14 10:46:30 -0400971 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972
973 for (x = sdp->sd_hash_ptrs; x--; lp++)
974 *lp = cpu_to_be64(bn);
975
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100976 i_size_write(inode, sdp->sd_sb.sb_bsize / 2);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000977 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000978 dip->i_diskflags |= GFS2_DIF_EXHASH;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000979
980 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000981 dip->i_depth = y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000982
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500983 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984
985 brelse(dibh);
986
987 return 0;
988}
989
990/**
991 * dir_split_leaf - Split a leaf block into two
Bob Peterson3ae3a7d2021-03-22 08:38:57 -0400992 * @inode: The directory inode to be split
993 * @name: name of the dirent we're trying to insert
David Teiglandb3b94fa2006-01-16 16:50:04 +0000994 *
995 * Returns: 0 on success, error code on failure
996 */
997
Steven Whitehousec7526662006-03-20 12:30:04 -0500998static int dir_split_leaf(struct inode *inode, const struct qstr *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000999{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001000 struct gfs2_inode *dip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001 struct buffer_head *nbh, *obh, *dibh;
1002 struct gfs2_leaf *nleaf, *oleaf;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001003 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
Steven Whitehousecd915492006-09-04 12:49:07 -04001004 u32 start, len, half_len, divider;
Al Virob44b84d2006-10-14 10:46:30 -04001005 u64 bn, leaf_no;
1006 __be64 *lp;
Steven Whitehousecd915492006-09-04 12:49:07 -04001007 u32 index;
Colin Ian Kingd1b0cb92018-07-17 15:59:28 +01001008 int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001009 int error;
1010
Steven Whitehouse9a004502008-02-01 09:23:44 +00001011 index = name->hash >> (32 - dip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001012 error = get_leaf_nr(dip, index, &leaf_no);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001013 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -05001014 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015
1016 /* Get the old leaf block */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001017 error = get_leaf(dip, leaf_no, &obh);
1018 if (error)
Steven Whitehousee90deff2006-03-29 19:02:15 -05001019 return error;
1020
1021 oleaf = (struct gfs2_leaf *)obh->b_data;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001022 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
Steven Whitehousee90deff2006-03-29 19:02:15 -05001023 brelse(obh);
1024 return 1; /* can't split */
1025 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001027 gfs2_trans_add_meta(dip->i_gl, obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001028
Steven Whitehousec7526662006-03-20 12:30:04 -05001029 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
1030 if (!nleaf) {
1031 brelse(obh);
1032 return -ENOSPC;
1033 }
1034 bn = nbh->b_blocknr;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035
Steven Whitehousec7526662006-03-20 12:30:04 -05001036 /* Compute the start and len of leaf pointers in the hash table. */
Fabian Frederick47a9a522016-08-02 12:05:27 -05001037 len = BIT(dip->i_depth - be16_to_cpu(oleaf->lf_depth));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001038 half_len = len >> 1;
1039 if (!half_len) {
Bob Petersone54c78a2018-10-03 08:47:36 -05001040 fs_warn(GFS2_SB(inode), "i_depth %u lf_depth %u index %u\n",
Joe Perchesd77d1b52014-03-06 12:10:45 -08001041 dip->i_depth, be16_to_cpu(oleaf->lf_depth), index);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042 gfs2_consist_inode(dip);
1043 error = -EIO;
1044 goto fail_brelse;
1045 }
1046
1047 start = (index & ~(len - 1));
1048
1049 /* Change the pointers.
1050 Don't bother distinguishing stuffed from non-stuffed.
1051 This code is complicated enough already. */
Kees Cook6da2ec52018-06-12 13:55:00 -07001052 lp = kmalloc_array(half_len, sizeof(__be64), GFP_NOFS);
David Rientjes4244b522010-07-20 19:45:03 -07001053 if (!lp) {
1054 error = -ENOMEM;
1055 goto fail_brelse;
1056 }
1057
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 /* Change the pointers */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001059 for (x = 0; x < half_len; x++)
1060 lp[x] = cpu_to_be64(bn);
1061
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001062 gfs2_dir_hash_inval(dip);
1063
Steven Whitehousecd915492006-09-04 12:49:07 -04001064 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
1065 half_len * sizeof(u64));
1066 if (error != half_len * sizeof(u64)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 if (error >= 0)
1068 error = -EIO;
1069 goto fail_lpfree;
1070 }
1071
1072 kfree(lp);
1073
1074 /* Compute the divider */
Steven Whitehouse9a004502008-02-01 09:23:44 +00001075 divider = (start + half_len) << (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076
1077 /* Copy the entries */
Steven Whitehouse15793432009-11-06 11:06:37 +00001078 dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001079
1080 do {
1081 next = dent;
1082 if (dirent_next(dip, obh, &next))
1083 next = NULL;
1084
Steven Whitehouse5e7d65c2006-11-17 12:27:44 -05001085 if (!gfs2_dirent_sentinel(dent) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086 be32_to_cpu(dent->de_hash) < divider) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001087 struct qstr str;
Benjamin Marzinski34017472015-12-01 08:30:34 -06001088 void *ptr = ((char *)dent - obh->b_data) + nbh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -05001089 str.name = (char*)(dent+1);
1090 str.len = be16_to_cpu(dent->de_name_len);
1091 str.hash = be32_to_cpu(dent->de_hash);
Benjamin Marzinski34017472015-12-01 08:30:34 -06001092 new = gfs2_dirent_split_alloc(inode, nbh, &str, ptr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001093 if (IS_ERR(new)) {
1094 error = PTR_ERR(new);
1095 break;
1096 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001097
1098 new->de_inum = dent->de_inum; /* No endian worries */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001099 new->de_type = dent->de_type; /* No endian worries */
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001100 be16_add_cpu(&nleaf->lf_entries, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101
1102 dirent_del(dip, obh, prev, dent);
1103
1104 if (!oleaf->lf_entries)
1105 gfs2_consist_inode(dip);
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001106 be16_add_cpu(&oleaf->lf_entries, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107
1108 if (!prev)
1109 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001110 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001111 prev = dent;
Steven Whitehousec7526662006-03-20 12:30:04 -05001112 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113 dent = next;
Steven Whitehousec7526662006-03-20 12:30:04 -05001114 } while (dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115
Steven Whitehousec7526662006-03-20 12:30:04 -05001116 oleaf->lf_depth = nleaf->lf_depth;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001117
1118 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001119 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001120 gfs2_trans_add_meta(dip->i_gl, dibh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001121 gfs2_add_inode_blocks(&dip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001122 gfs2_dinode_out(dip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123 brelse(dibh);
1124 }
1125
1126 brelse(obh);
1127 brelse(nbh);
1128
1129 return error;
1130
Steven Whitehousee90deff2006-03-29 19:02:15 -05001131fail_lpfree:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001132 kfree(lp);
1133
Steven Whitehousee90deff2006-03-29 19:02:15 -05001134fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001135 brelse(obh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001136 brelse(nbh);
1137 return error;
1138}
1139
1140/**
1141 * dir_double_exhash - Double size of ExHash table
1142 * @dip: The GFS2 dinode
1143 *
1144 * Returns: 0 on success, error code on failure
1145 */
1146
1147static int dir_double_exhash(struct gfs2_inode *dip)
1148{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001149 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001150 u32 hsize;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001151 u32 hsize_bytes;
1152 __be64 *hc;
1153 __be64 *hc2, *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154 int x;
1155 int error = 0;
1156
Fabian Frederick47a9a522016-08-02 12:05:27 -05001157 hsize = BIT(dip->i_depth);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001158 hsize_bytes = hsize * sizeof(__be64);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001159
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001160 hc = gfs2_dir_get_hash_table(dip);
1161 if (IS_ERR(hc))
1162 return PTR_ERR(hc);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163
Kees Cook6da2ec52018-06-12 13:55:00 -07001164 hc2 = kmalloc_array(hsize_bytes, 2, GFP_NOFS | __GFP_NOWARN);
Bob Petersone8830d82013-05-30 09:48:56 -04001165 if (hc2 == NULL)
Christoph Hellwig88dca4c2020-06-01 21:51:40 -07001166 hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS);
Bob Petersone8830d82013-05-30 09:48:56 -04001167
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001168 if (!hc2)
David Rientjes4244b522010-07-20 19:45:03 -07001169 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170
Bob Peterson512cbf02013-06-14 08:39:18 -04001171 h = hc2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001172 error = gfs2_meta_inode_buffer(dip, &dibh);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001173 if (error)
1174 goto out_kfree;
1175
1176 for (x = 0; x < hsize; x++) {
1177 *h++ = *hc;
1178 *h++ = *hc;
1179 hc++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001180 }
1181
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001182 error = gfs2_dir_write_data(dip, (char *)hc2, 0, hsize_bytes * 2);
1183 if (error != (hsize_bytes * 2))
1184 goto fail;
1185
1186 gfs2_dir_hash_inval(dip);
1187 dip->i_hash_cache = hc2;
1188 dip->i_depth++;
1189 gfs2_dinode_out(dip, dibh->b_data);
1190 brelse(dibh);
1191 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001192
Steven Whitehousea91ea692006-09-04 12:04:26 -04001193fail:
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001194 /* Replace original hash table & size */
1195 gfs2_dir_write_data(dip, (char *)hc, 0, hsize_bytes);
1196 i_size_write(&dip->i_inode, hsize_bytes);
1197 gfs2_dinode_out(dip, dibh->b_data);
1198 brelse(dibh);
1199out_kfree:
Al Viro3cdcf632014-11-20 05:18:38 +00001200 kvfree(hc2);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001201 return error;
1202}
1203
1204/**
1205 * compare_dents - compare directory entries by hash value
1206 * @a: first dent
1207 * @b: second dent
1208 *
1209 * When comparing the hash entries of @a to @b:
1210 * gt: returns 1
1211 * lt: returns -1
1212 * eq: returns 0
1213 */
1214
1215static int compare_dents(const void *a, const void *b)
1216{
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001217 const struct gfs2_dirent *dent_a, *dent_b;
Steven Whitehousecd915492006-09-04 12:49:07 -04001218 u32 hash_a, hash_b;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001219 int ret = 0;
1220
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001221 dent_a = *(const struct gfs2_dirent **)a;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001222 hash_a = dent_a->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001223
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001224 dent_b = *(const struct gfs2_dirent **)b;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001225 hash_b = dent_b->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001226
1227 if (hash_a > hash_b)
1228 ret = 1;
1229 else if (hash_a < hash_b)
1230 ret = -1;
1231 else {
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001232 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1233 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234
1235 if (len_a > len_b)
1236 ret = 1;
1237 else if (len_a < len_b)
1238 ret = -1;
1239 else
Steven Whitehouse2bdbc5d2006-09-05 09:34:20 -04001240 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001241 }
1242
1243 return ret;
1244}
1245
1246/**
1247 * do_filldir_main - read out directory entries
1248 * @dip: The GFS2 inode
Al Virod81a8ef2013-05-16 14:14:48 -04001249 * @ctx: what to feed the entries to
David Teiglandb3b94fa2006-01-16 16:50:04 +00001250 * @darr: an array of struct gfs2_dirent pointers to read
1251 * @entries: the number of entries in darr
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04001252 * @sort_start: index of the directory array to start our sort
David Teiglandb3b94fa2006-01-16 16:50:04 +00001253 * @copied: pointer to int that's non-zero if a entry has been copied out
1254 *
1255 * Jump through some hoops to make sure that if there are hash collsions,
1256 * they are read out at the beginning of a buffer. We want to minimize
1257 * the possibility that they will fall into different readdir buffers or
1258 * that someone will want to seek to that location.
1259 *
Al Virod81a8ef2013-05-16 14:14:48 -04001260 * Returns: errno, >0 if the actor tells you to stop
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261 */
1262
Al Virod81a8ef2013-05-16 14:14:48 -04001263static int do_filldir_main(struct gfs2_inode *dip, struct dir_context *ctx,
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001264 struct gfs2_dirent **darr, u32 entries,
1265 u32 sort_start, int *copied)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001266{
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001267 const struct gfs2_dirent *dent, *dent_next;
Steven Whitehousecd915492006-09-04 12:49:07 -04001268 u64 off, off_next;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001269 unsigned int x, y;
1270 int run = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001272 if (sort_start < entries)
1273 sort(&darr[sort_start], entries - sort_start,
1274 sizeof(struct gfs2_dirent *), compare_dents, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275
1276 dent_next = darr[0];
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001277 off_next = dent_next->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278
1279 for (x = 0, y = 1; x < entries; x++, y++) {
1280 dent = dent_next;
1281 off = off_next;
1282
1283 if (y < entries) {
1284 dent_next = darr[y];
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001285 off_next = dent_next->de_cookie;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001286
Al Virod81a8ef2013-05-16 14:14:48 -04001287 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001289 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001290
1291 if (off_next == off) {
1292 if (*copied && !run)
1293 return 1;
1294 run = 1;
1295 } else
1296 run = 0;
1297 } else {
Al Virod81a8ef2013-05-16 14:14:48 -04001298 if (off < ctx->pos)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001299 continue;
Al Virod81a8ef2013-05-16 14:14:48 -04001300 ctx->pos = off;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001301 }
1302
Al Virod81a8ef2013-05-16 14:14:48 -04001303 if (!dir_emit(ctx, (const char *)(dent + 1),
Steven Whitehouse4dd651a2006-02-14 15:56:44 +00001304 be16_to_cpu(dent->de_name_len),
Al Virod81a8ef2013-05-16 14:14:48 -04001305 be64_to_cpu(dent->de_inum.no_addr),
1306 be16_to_cpu(dent->de_type)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001307 return 1;
1308
1309 *copied = 1;
1310 }
1311
Al Virod81a8ef2013-05-16 14:14:48 -04001312 /* Increment the ctx->pos by one, so the next time we come into the
David Teiglandb3b94fa2006-01-16 16:50:04 +00001313 do_filldir fxn, we get the next entry instead of the last one in the
1314 current leaf */
1315
Al Virod81a8ef2013-05-16 14:14:48 -04001316 ctx->pos++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001317
1318 return 0;
1319}
1320
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001321static void *gfs2_alloc_sort_buffer(unsigned size)
1322{
1323 void *ptr = NULL;
1324
1325 if (size < KMALLOC_MAX_SIZE)
1326 ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN);
1327 if (!ptr)
Christoph Hellwig88dca4c2020-06-01 21:51:40 -07001328 ptr = __vmalloc(size, GFP_NOFS);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001329 return ptr;
1330}
1331
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001332
1333static int gfs2_set_cookies(struct gfs2_sbd *sdp, struct buffer_head *bh,
1334 unsigned leaf_nr, struct gfs2_dirent **darr,
1335 unsigned entries)
1336{
1337 int sort_id = -1;
1338 int i;
1339
1340 for (i = 0; i < entries; i++) {
1341 unsigned offset;
1342
1343 darr[i]->de_cookie = be32_to_cpu(darr[i]->de_hash);
1344 darr[i]->de_cookie = gfs2_disk_hash2offset(darr[i]->de_cookie);
1345
1346 if (!sdp->sd_args.ar_loccookie)
1347 continue;
1348 offset = (char *)(darr[i]) -
Bob Petersone54c78a2018-10-03 08:47:36 -05001349 (bh->b_data + gfs2_dirent_offset(sdp, bh->b_data));
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001350 offset /= GFS2_MIN_DIRENT_SIZE;
1351 offset += leaf_nr * sdp->sd_max_dents_per_leaf;
1352 if (offset >= GFS2_USE_HASH_FLAG ||
1353 leaf_nr >= GFS2_USE_HASH_FLAG) {
1354 darr[i]->de_cookie |= GFS2_USE_HASH_FLAG;
1355 if (sort_id < 0)
1356 sort_id = i;
1357 continue;
1358 }
1359 darr[i]->de_cookie &= GFS2_HASH_INDEX_MASK;
1360 darr[i]->de_cookie |= offset;
1361 }
1362 return sort_id;
1363}
1364
1365
Al Virod81a8ef2013-05-16 14:14:48 -04001366static int gfs2_dir_read_leaf(struct inode *inode, struct dir_context *ctx,
1367 int *copied, unsigned *depth,
Steven Whitehouse3699e3a2007-01-17 15:09:20 +00001368 u64 leaf_no)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001369{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001370 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001371 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001372 struct buffer_head *bh;
1373 struct gfs2_leaf *lf;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001374 unsigned entries = 0, entries2 = 0;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001375 unsigned leaves = 0, leaf = 0, offset, sort_offset;
1376 struct gfs2_dirent **darr, *dent;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001377 struct dirent_gather g;
1378 struct buffer_head **larr;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001379 int error, i, need_sort = 0, sort_id;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001380 u64 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001381
David Teiglandb3b94fa2006-01-16 16:50:04 +00001382 do {
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001383 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001384 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001385 goto out;
1386 lf = (struct gfs2_leaf *)bh->b_data;
1387 if (leaves == 0)
1388 *depth = be16_to_cpu(lf->lf_depth);
1389 entries += be16_to_cpu(lf->lf_entries);
1390 leaves++;
1391 lfn = be64_to_cpu(lf->lf_next);
1392 brelse(bh);
1393 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001394
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001395 if (*depth < GFS2_DIR_MAX_DEPTH || !sdp->sd_args.ar_loccookie) {
1396 need_sort = 1;
1397 sort_offset = 0;
1398 }
1399
David Teiglandb3b94fa2006-01-16 16:50:04 +00001400 if (!entries)
1401 return 0;
1402
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001403 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001404 /*
1405 * The extra 99 entries are not normally used, but are a buffer
1406 * zone in case the number of entries in the leaf is corrupt.
1407 * 99 is the maximum number of entries that can fit in a single
1408 * leaf block.
1409 */
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001410 larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *));
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001411 if (!larr)
1412 goto out;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001413 darr = (struct gfs2_dirent **)(larr + leaves);
1414 g.pdent = (const struct gfs2_dirent **)darr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001415 g.offset = 0;
1416 lfn = leaf_no;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001417
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001418 do {
1419 error = get_leaf(ip, lfn, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001420 if (error)
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001421 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001422 lf = (struct gfs2_leaf *)bh->b_data;
1423 lfn = be64_to_cpu(lf->lf_next);
1424 if (lf->lf_entries) {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001425 offset = g.offset;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001426 entries2 += be16_to_cpu(lf->lf_entries);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001427 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1428 gfs2_dirent_gather, NULL, &g);
1429 error = PTR_ERR(dent);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001430 if (IS_ERR(dent))
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001431 goto out_free;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001432 if (entries2 != g.offset) {
akpm@linux-foundation.orgf391a4e2007-04-25 21:08:02 -07001433 fs_warn(sdp, "Number of entries corrupt in dir "
1434 "leaf %llu, entries2 (%u) != "
1435 "g.offset (%u)\n",
1436 (unsigned long long)bh->b_blocknr,
1437 entries2, g.offset);
Bob Petersond87d62b72017-05-26 08:28:56 -05001438 gfs2_consist_inode(ip);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001439 error = -EIO;
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001440 goto out_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001441 }
1442 error = 0;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001443 sort_id = gfs2_set_cookies(sdp, bh, leaf, &darr[offset],
1444 be16_to_cpu(lf->lf_entries));
1445 if (!need_sort && sort_id >= 0) {
1446 need_sort = 1;
1447 sort_offset = offset + sort_id;
1448 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001449 larr[leaf++] = bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001450 } else {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001451 larr[leaf++] = NULL;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001452 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001453 }
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001454 } while(lfn);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001455
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001456 BUG_ON(entries2 != entries);
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001457 error = do_filldir_main(ip, ctx, darr, entries, need_sort ?
1458 sort_offset : entries, copied);
Steven Whitehoused2a97a42010-07-28 17:56:23 +01001459out_free:
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001460 for(i = 0; i < leaf; i++)
Markus Elfringbccaef92019-09-03 15:10:05 +02001461 brelse(larr[i]);
Al Viro3cdcf632014-11-20 05:18:38 +00001462 kvfree(larr);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001463out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001464 return error;
1465}
1466
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001467/**
1468 * gfs2_dir_readahead - Issue read-ahead requests for leaf blocks.
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04001469 * @inode: the directory inode
1470 * @hsize: hash table size
1471 * @index: index into the hash table
1472 * @f_ra: read-ahead parameters
Bob Petersondfe4d342011-10-27 12:16:06 -04001473 *
1474 * Note: we can't calculate each index like dir_e_read can because we don't
1475 * have the leaf, and therefore we don't have the depth, and therefore we
1476 * don't have the length. So we have to just read enough ahead to make up
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001477 * for the loss of information.
1478 */
Bob Petersondfe4d342011-10-27 12:16:06 -04001479static void gfs2_dir_readahead(struct inode *inode, unsigned hsize, u32 index,
1480 struct file_ra_state *f_ra)
1481{
1482 struct gfs2_inode *ip = GFS2_I(inode);
1483 struct gfs2_glock *gl = ip->i_gl;
1484 struct buffer_head *bh;
1485 u64 blocknr = 0, last;
1486 unsigned count;
1487
1488 /* First check if we've already read-ahead for the whole range. */
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001489 if (index + MAX_RA_BLOCKS < f_ra->start)
Bob Petersondfe4d342011-10-27 12:16:06 -04001490 return;
1491
1492 f_ra->start = max((pgoff_t)index, f_ra->start);
1493 for (count = 0; count < MAX_RA_BLOCKS; count++) {
1494 if (f_ra->start >= hsize) /* if exceeded the hash table */
1495 break;
1496
1497 last = blocknr;
1498 blocknr = be64_to_cpu(ip->i_hash_cache[f_ra->start]);
1499 f_ra->start++;
1500 if (blocknr == last)
1501 continue;
1502
1503 bh = gfs2_getbuf(gl, blocknr, 1);
1504 if (trylock_buffer(bh)) {
1505 if (buffer_uptodate(bh)) {
1506 unlock_buffer(bh);
1507 brelse(bh);
1508 continue;
1509 }
1510 bh->b_end_io = end_buffer_read_sync;
Coly Lie477b242017-07-21 07:48:22 -05001511 submit_bh(REQ_OP_READ,
1512 REQ_RAHEAD | REQ_META | REQ_PRIO,
1513 bh);
Bob Petersondfe4d342011-10-27 12:16:06 -04001514 continue;
1515 }
1516 brelse(bh);
1517 }
1518}
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001519
David Teiglandb3b94fa2006-01-16 16:50:04 +00001520/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001521 * dir_e_read - Reads the entries from a directory into a filldir buffer
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04001522 * @inode: the directory inode
Al Virod81a8ef2013-05-16 14:14:48 -04001523 * @ctx: actor to feed the entries to
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04001524 * @f_ra: read-ahead parameters
David Teiglandb3b94fa2006-01-16 16:50:04 +00001525 *
1526 * Returns: errno
1527 */
1528
Al Virod81a8ef2013-05-16 14:14:48 -04001529static int dir_e_read(struct inode *inode, struct dir_context *ctx,
1530 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001531{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001532 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001533 u32 hsize, len = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -04001534 u32 hash, index;
Al Virob44b84d2006-10-14 10:46:30 -04001535 __be64 *lp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001536 int copied = 0;
1537 int error = 0;
Steven Whitehouse4da3c642006-07-11 13:19:13 -04001538 unsigned depth = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001539
Fabian Frederick47a9a522016-08-02 12:05:27 -05001540 hsize = BIT(dip->i_depth);
Al Virod81a8ef2013-05-16 14:14:48 -04001541 hash = gfs2_dir_offset2hash(ctx->pos);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001542 index = hash >> (32 - dip->i_depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001543
Steven Whitehouse79c4c372011-11-09 13:46:06 +00001544 if (dip->i_hash_cache == NULL)
Bob Petersondfe4d342011-10-27 12:16:06 -04001545 f_ra->start = 0;
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001546 lp = gfs2_dir_get_hash_table(dip);
1547 if (IS_ERR(lp))
1548 return PTR_ERR(lp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001549
Bob Petersondfe4d342011-10-27 12:16:06 -04001550 gfs2_dir_readahead(inode, hsize, index, f_ra);
1551
David Teiglandb3b94fa2006-01-16 16:50:04 +00001552 while (index < hsize) {
Al Virod81a8ef2013-05-16 14:14:48 -04001553 error = gfs2_dir_read_leaf(inode, ctx,
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001554 &copied, &depth,
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001555 be64_to_cpu(lp[index]));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001556 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001557 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001558
Fabian Frederick47a9a522016-08-02 12:05:27 -05001559 len = BIT(dip->i_depth - depth);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001560 index = (index & ~(len - 1)) + len;
1561 }
1562
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001563 if (error > 0)
1564 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001565 return error;
1566}
1567
Al Virod81a8ef2013-05-16 14:14:48 -04001568int gfs2_dir_read(struct inode *inode, struct dir_context *ctx,
1569 struct file_ra_state *f_ra)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001570{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001571 struct gfs2_inode *dip = GFS2_I(inode);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001572 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001573 struct dirent_gather g;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001574 struct gfs2_dirent **darr, *dent;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001575 struct buffer_head *dibh;
1576 int copied = 0;
1577 int error;
1578
Steven Whitehousead6203f22008-11-03 13:59:19 +00001579 if (!dip->i_entries)
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001580 return 0;
1581
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001582 if (dip->i_diskflags & GFS2_DIF_EXHASH)
Al Virod81a8ef2013-05-16 14:14:48 -04001583 return dir_e_read(inode, ctx, f_ra);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001584
David Teiglandb3b94fa2006-01-16 16:50:04 +00001585 if (!gfs2_is_stuffed(dip)) {
1586 gfs2_consist_inode(dip);
1587 return -EIO;
1588 }
1589
David Teiglandb3b94fa2006-01-16 16:50:04 +00001590 error = gfs2_meta_inode_buffer(dip, &dibh);
1591 if (error)
1592 return error;
1593
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001594 error = -ENOMEM;
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001595 /* 96 is max number of dirents which can be stuffed into an inode */
Kees Cook6da2ec52018-06-12 13:55:00 -07001596 darr = kmalloc_array(96, sizeof(struct gfs2_dirent *), GFP_NOFS);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001597 if (darr) {
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001598 g.pdent = (const struct gfs2_dirent **)darr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001599 g.offset = 0;
1600 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1601 gfs2_dirent_gather, NULL, &g);
1602 if (IS_ERR(dent)) {
1603 error = PTR_ERR(dent);
1604 goto out;
1605 }
Steven Whitehousead6203f22008-11-03 13:59:19 +00001606 if (dip->i_entries != g.offset) {
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001607 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
Steven Whitehousead6203f22008-11-03 13:59:19 +00001608 "ip->i_entries (%u) != g.offset (%u)\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001609 (unsigned long long)dip->i_no_addr,
Steven Whitehousead6203f22008-11-03 13:59:19 +00001610 dip->i_entries,
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001611 g.offset);
Bob Petersond87d62b72017-05-26 08:28:56 -05001612 gfs2_consist_inode(dip);
Steven Whitehousebdd19a22007-04-18 09:38:42 +01001613 error = -EIO;
1614 goto out;
1615 }
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001616 gfs2_set_cookies(sdp, dibh, 0, darr, dip->i_entries);
Al Virod81a8ef2013-05-16 14:14:48 -04001617 error = do_filldir_main(dip, ctx, darr,
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001618 dip->i_entries, 0, &copied);
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001619out:
1620 kfree(darr);
1621 }
1622
David Teiglandb3b94fa2006-01-16 16:50:04 +00001623 if (error > 0)
1624 error = 0;
1625
1626 brelse(dibh);
1627
1628 return error;
1629}
1630
David Teiglandb3b94fa2006-01-16 16:50:04 +00001631/**
1632 * gfs2_dir_search - Search a directory
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04001633 * @dir: The GFS2 directory inode
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001634 * @name: The name we are looking up
1635 * @fail_on_exist: Fail if the name exists rather than looking it up
David Teiglandb3b94fa2006-01-16 16:50:04 +00001636 *
1637 * This routine searches a directory for a file or another directory.
1638 * Assumes a glock is held on dip.
1639 *
1640 * Returns: errno
1641 */
1642
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001643struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name,
1644 bool fail_on_exist)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001645{
Steven Whitehousec7526662006-03-20 12:30:04 -05001646 struct buffer_head *bh;
1647 struct gfs2_dirent *dent;
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001648 u64 addr, formal_ino;
1649 u16 dtype;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001650
1651 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1652 if (dent) {
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001653 struct inode *inode;
1654 u16 rahead;
1655
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001656 if (IS_ERR(dent))
David Howellse231c2e2008-02-07 00:15:26 -08001657 return ERR_CAST(dent);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001658 dtype = be16_to_cpu(dent->de_type);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001659 rahead = be16_to_cpu(dent->de_rahead);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001660 addr = be64_to_cpu(dent->de_inum.no_addr);
1661 formal_ino = be64_to_cpu(dent->de_inum.no_formal_ino);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001662 brelse(bh);
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +01001663 if (fail_on_exist)
1664 return ERR_PTR(-EEXIST);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -05001665 inode = gfs2_inode_lookup(dir->i_sb, dtype, addr, formal_ino,
1666 GFS2_BLKST_FREE /* ignore */);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001667 if (!IS_ERR(inode))
1668 GFS2_I(inode)->i_rahead = rahead;
1669 return inode;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001670 }
1671 return ERR_PTR(-ENOENT);
1672}
1673
1674int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1675 const struct gfs2_inode *ip)
1676{
1677 struct buffer_head *bh;
1678 struct gfs2_dirent *dent;
1679 int ret = -ENOENT;
Steven Whitehousec7526662006-03-20 12:30:04 -05001680
1681 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1682 if (dent) {
1683 if (IS_ERR(dent))
1684 return PTR_ERR(dent);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001685 if (ip) {
1686 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1687 goto out;
1688 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1689 ip->i_no_formal_ino)
1690 goto out;
1691 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1692 be16_to_cpu(dent->de_type))) {
1693 gfs2_consist_inode(GFS2_I(dir));
1694 ret = -EIO;
1695 goto out;
1696 }
1697 }
1698 ret = 0;
1699out:
Steven Whitehousec7526662006-03-20 12:30:04 -05001700 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001701 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001702 return ret;
Steven Whitehousec7526662006-03-20 12:30:04 -05001703}
1704
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001705/**
1706 * dir_new_leaf - Add a new leaf onto hash chain
1707 * @inode: The directory
1708 * @name: The name we are adding
1709 *
1710 * This adds a new dir leaf onto an existing leaf when there is not
1711 * enough space to add a new dir entry. This is a last resort after
1712 * we've expanded the hash table to max size and also split existing
1713 * leaf blocks, so it will only occur for very large directories.
1714 *
1715 * The dist parameter is set to 1 for leaf blocks directly attached
1716 * to the hash table, 2 for one layer of indirection, 3 for two layers
1717 * etc. We are thus able to tell the difference between an old leaf
1718 * with dist set to zero (i.e. "don't know") and a new one where we
1719 * set this information for debug/fsck purposes.
1720 *
1721 * Returns: 0 on success, or -ve on error
1722 */
1723
Steven Whitehousec7526662006-03-20 12:30:04 -05001724static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1725{
1726 struct buffer_head *bh, *obh;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001727 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001728 struct gfs2_leaf *leaf, *oleaf;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001729 u32 dist = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001730 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -05001731 u32 index;
1732 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001733
Steven Whitehouse9a004502008-02-01 09:23:44 +00001734 index = name->hash >> (32 - ip->i_depth);
Steven Whitehousec7526662006-03-20 12:30:04 -05001735 error = get_first_leaf(ip, index, &obh);
1736 if (error)
1737 return error;
1738 do {
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001739 dist++;
Steven Whitehousec7526662006-03-20 12:30:04 -05001740 oleaf = (struct gfs2_leaf *)obh->b_data;
1741 bn = be64_to_cpu(oleaf->lf_next);
1742 if (!bn)
1743 break;
1744 brelse(obh);
1745 error = get_leaf(ip, bn, &obh);
1746 if (error)
1747 return error;
1748 } while(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001749
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001750 gfs2_trans_add_meta(ip->i_gl, obh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001751
1752 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1753 if (!leaf) {
1754 brelse(obh);
1755 return -ENOSPC;
1756 }
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001757 leaf->lf_dist = cpu_to_be32(dist);
Steven Whitehouse4d8012b2006-04-12 17:39:45 -04001758 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
Steven Whitehousec7526662006-03-20 12:30:04 -05001759 brelse(bh);
1760 brelse(obh);
1761
1762 error = gfs2_meta_inode_buffer(ip, &bh);
1763 if (error)
1764 return error;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001765 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001766 gfs2_add_inode_blocks(&ip->i_inode, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001767 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehousec7526662006-03-20 12:30:04 -05001768 brelse(bh);
1769 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001770}
1771
Steven Whitehouse44aaada2014-02-07 11:23:22 +00001772static u16 gfs2_inode_ra_len(const struct gfs2_inode *ip)
1773{
1774 u64 where = ip->i_no_addr + 1;
1775 if (ip->i_eattr == where)
1776 return 1;
1777 return 0;
1778}
1779
David Teiglandb3b94fa2006-01-16 16:50:04 +00001780/**
1781 * gfs2_dir_add - Add new filename into directory
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001782 * @inode: The directory inode
1783 * @name: The new name
1784 * @nip: The GFS2 inode to be linked in to the directory
1785 * @da: The directory addition info
1786 *
1787 * If the call to gfs2_diradd_alloc_required resulted in there being
1788 * no need to allocate any new directory blocks, then it will contain
1789 * a pointer to the directory entry and the bh in which it resides. We
1790 * can use that without having to repeat the search. If there was no
1791 * free space, then we must now create more space.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001792 *
1793 * Returns: 0 on success, error code on failure
1794 */
1795
Steven Whitehousec7526662006-03-20 12:30:04 -05001796int gfs2_dir_add(struct inode *inode, const struct qstr *name,
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001797 const struct gfs2_inode *nip, struct gfs2_diradd *da)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001798{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001799 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001800 struct buffer_head *bh = da->bh;
1801 struct gfs2_dirent *dent = da->dent;
Deepa Dinamani95582b02018-05-08 19:36:02 -07001802 struct timespec64 tv;
Steven Whitehousec7526662006-03-20 12:30:04 -05001803 struct gfs2_leaf *leaf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001804 int error;
1805
Steven Whitehousec7526662006-03-20 12:30:04 -05001806 while(1) {
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001807 if (da->bh == NULL) {
1808 dent = gfs2_dirent_search(inode, name,
1809 gfs2_dirent_find_space, &bh);
1810 }
Steven Whitehousec7526662006-03-20 12:30:04 -05001811 if (dent) {
1812 if (IS_ERR(dent))
1813 return PTR_ERR(dent);
1814 dent = gfs2_init_dirent(inode, dent, name, bh);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001815 gfs2_inum_out(nip, dent);
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001816 dent->de_type = cpu_to_be16(IF2DT(nip->i_inode.i_mode));
Steven Whitehouse44aaada2014-02-07 11:23:22 +00001817 dent->de_rahead = cpu_to_be16(gfs2_inode_ra_len(nip));
Deepa Dinamani078cd822016-09-14 07:48:04 -07001818 tv = current_time(&ip->i_inode);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001819 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001820 leaf = (struct gfs2_leaf *)bh->b_data;
Marcin Slusarzbb16b342008-02-13 00:06:10 +01001821 be16_add_cpu(&leaf->lf_entries, 1);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001822 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1823 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001824 }
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001825 da->dent = NULL;
1826 da->bh = NULL;
Steven Whitehousec7526662006-03-20 12:30:04 -05001827 brelse(bh);
Steven Whitehousead6203f22008-11-03 13:59:19 +00001828 ip->i_entries++;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001829 ip->i_inode.i_mtime = ip->i_inode.i_ctime = tv;
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001830 if (S_ISDIR(nip->i_inode.i_mode))
1831 inc_nlink(&ip->i_inode);
Bob Peterson343cd8f2012-11-12 13:04:54 -05001832 mark_inode_dirty(inode);
Steven Whitehousec7526662006-03-20 12:30:04 -05001833 error = 0;
1834 break;
1835 }
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001836 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001837 error = dir_make_exhash(inode);
1838 if (error)
1839 break;
1840 continue;
1841 }
1842 error = dir_split_leaf(inode, name);
1843 if (error == 0)
1844 continue;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001845 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001846 break;
Steven Whitehouse9a004502008-02-01 09:23:44 +00001847 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001848 error = dir_double_exhash(ip);
1849 if (error)
1850 break;
1851 error = dir_split_leaf(inode, name);
Steven Whitehousee90deff2006-03-29 19:02:15 -05001852 if (error < 0)
Steven Whitehousec7526662006-03-20 12:30:04 -05001853 break;
Steven Whitehousee90deff2006-03-29 19:02:15 -05001854 if (error == 0)
1855 continue;
Steven Whitehousec7526662006-03-20 12:30:04 -05001856 }
1857 error = dir_new_leaf(inode, name);
1858 if (!error)
1859 continue;
1860 error = -ENOSPC;
1861 break;
1862 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001863 return error;
1864}
1865
Steven Whitehousec7526662006-03-20 12:30:04 -05001866
David Teiglandb3b94fa2006-01-16 16:50:04 +00001867/**
1868 * gfs2_dir_del - Delete a directory entry
1869 * @dip: The GFS2 inode
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04001870 * @dentry: The directory entry we want to delete
David Teiglandb3b94fa2006-01-16 16:50:04 +00001871 *
1872 * Returns: 0 on success, error code on failure
1873 */
1874
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001875int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001876{
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001877 const struct qstr *name = &dentry->d_name;
Steven Whitehousec7526662006-03-20 12:30:04 -05001878 struct gfs2_dirent *dent, *prev = NULL;
1879 struct buffer_head *bh;
Deepa Dinamani95582b02018-05-08 19:36:02 -07001880 struct timespec64 tv = current_time(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001881
Steven Whitehousec7526662006-03-20 12:30:04 -05001882 /* Returns _either_ the entry (if its first in block) or the
1883 previous entry otherwise */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001884 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001885 if (!dent) {
1886 gfs2_consist_inode(dip);
1887 return -EIO;
1888 }
1889 if (IS_ERR(dent)) {
1890 gfs2_consist_inode(dip);
1891 return PTR_ERR(dent);
1892 }
1893 /* If not first in block, adjust pointers accordingly */
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001894 if (gfs2_dirent_find(dent, name, NULL) == 0) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001895 prev = dent;
1896 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1897 }
1898
1899 dirent_del(dip, bh, prev, dent);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001900 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
Steven Whitehousec7526662006-03-20 12:30:04 -05001901 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1902 u16 entries = be16_to_cpu(leaf->lf_entries);
1903 if (!entries)
1904 gfs2_consist_inode(dip);
1905 leaf->lf_entries = cpu_to_be16(--entries);
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001906 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1907 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
Steven Whitehousec7526662006-03-20 12:30:04 -05001908 }
Steven Whitehouseed386502006-04-07 16:28:07 -04001909 brelse(bh);
Steven Whitehousec7526662006-03-20 12:30:04 -05001910
Steven Whitehousead6203f22008-11-03 13:59:19 +00001911 if (!dip->i_entries)
Steven Whitehousec7526662006-03-20 12:30:04 -05001912 gfs2_consist_inode(dip);
Steven Whitehousead6203f22008-11-03 13:59:19 +00001913 dip->i_entries--;
Steven Whitehouse01bcb0d2014-01-08 12:14:57 +00001914 dip->i_inode.i_mtime = dip->i_inode.i_ctime = tv;
David Howellse36cb0b2015-01-29 12:02:35 +00001915 if (d_is_dir(dentry))
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001916 drop_nlink(&dip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001917 mark_inode_dirty(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001918
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001919 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001920}
1921
David Teiglandb3b94fa2006-01-16 16:50:04 +00001922/**
1923 * gfs2_dir_mvino - Change inode number of directory entry
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04001924 * @dip: The GFS2 directory inode
1925 * @filename: the filename to be moved
1926 * @nip: the new GFS2 inode
1927 * @new_type: the de_type of the new dirent
David Teiglandb3b94fa2006-01-16 16:50:04 +00001928 *
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 Peterson3ae3a7d2021-03-22 08:38:57 -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)
Christoph Hellwig88dca4c2020-06-01 21:51:40 -07001994 ht = __vmalloc(size, GFP_NOFS | __GFP_NOWARN | __GFP_ZERO);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001995 if (!ht)
1996 return -ENOMEM;
1997
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001998 error = gfs2_quota_hold(dip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001999 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04002000 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002001
David Teiglandb3b94fa2006-01-16 16:50:04 +00002002 /* Count the number of leaves */
Bob Petersonec038c82011-03-22 13:55:23 -04002003 bh = leaf_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002004
Steven Whitehousec7526662006-03-20 12:30:04 -05002005 for (blk = leaf_no; blk; blk = nblk) {
Bob Petersonec038c82011-03-22 13:55:23 -04002006 if (blk != leaf_no) {
2007 error = get_leaf(dip, blk, &bh);
2008 if (error)
2009 goto out_rlist;
2010 }
Steven Whitehousec7526662006-03-20 12:30:04 -05002011 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
2012 nblk = be64_to_cpu(tmp_leaf->lf_next);
Bob Petersonec038c82011-03-22 13:55:23 -04002013 if (blk != leaf_no)
2014 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002015
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002016 gfs2_rlist_add(dip, &rlist, blk);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002017 l_blocks++;
2018 }
2019
Bob Petersonc3abc292018-10-04 00:06:23 +01002020 gfs2_rlist_alloc(&rlist);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002021
2022 for (x = 0; x < rlist.rl_rgrps; x++) {
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -05002023 struct gfs2_rgrpd *rgd = gfs2_glock2rgrp(rlist.rl_ghs[x].gh_gl);
2024
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01002025 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002026 }
2027
2028 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
2029 if (error)
2030 goto out_rlist;
2031
2032 error = gfs2_trans_begin(sdp,
Steven Whitehouse5c676f62006-02-27 17:23:27 -05002033 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
Bob Petersoncc444572020-01-03 08:48:43 -06002034 RES_DINODE + RES_STATFS + RES_QUOTA, RES_DINODE +
2035 l_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002036 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
Bob Peterson3ae3a7d2021-03-22 08:38:57 -04002149 * @inode: the directory inode being written to
2150 * @name: 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