]> Git Repo - linux.git/blame - fs/gfs2/dir.c
Linux 6.14-rc3
[linux.git] / fs / gfs2 / dir.c
CommitLineData
7336d0e6 1// SPDX-License-Identifier: GPL-2.0-only
b3b94faa
DT
2/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3a8a9a10 4 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
b3b94faa
DT
5 */
6
7/*
61e085a8
SW
8 * 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 *
383f01fb 36 * dip->i_diskflags & GFS2_DIF_EXHASH is true
61e085a8
SW
37 *
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 */
b3b94faa 52
d77d1b58
JP
53#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
b3b94faa
DT
55#include <linux/slab.h>
56#include <linux/spinlock.h>
b3b94faa
DT
57#include <linux/buffer_head.h>
58#include <linux/sort.h>
5c676f6d 59#include <linux/gfs2_ondisk.h>
71b86f56 60#include <linux/crc32.h>
fe1bdedc 61#include <linux/vmalloc.h>
2f8b5444 62#include <linux/bio.h>
b3b94faa
DT
63
64#include "gfs2.h"
5c676f6d 65#include "incore.h"
b3b94faa
DT
66#include "dir.h"
67#include "glock.h"
68#include "inode.h"
b3b94faa
DT
69#include "meta_io.h"
70#include "quota.h"
71#include "rgrp.h"
72#include "trans.h"
e13940ba 73#include "bmap.h"
5c676f6d 74#include "util.h"
b3b94faa 75
dfe4d34b
BP
76#define MAX_RA_BLOCKS 32 /* max read-ahead blocks */
77
cd915493
SW
78#define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
79#define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
471f3db2
BM
80#define GFS2_HASH_INDEX_MASK 0xffffc000
81#define GFS2_USE_HASH_FLAG 0x2000
b3b94faa 82
8d123585
SW
83struct qstr gfs2_qdot __read_mostly;
84struct qstr gfs2_qdotdot __read_mostly;
85
2bdbc5d7
SW
86typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
87 const struct qstr *name, void *opaque);
b3b94faa 88
cd915493 89int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
61e085a8 90 struct buffer_head **bhp)
e13940ba
SW
91{
92 struct buffer_head *bh;
e13940ba 93
61e085a8 94 bh = gfs2_meta_new(ip->i_gl, block);
350a9b0a 95 gfs2_trans_add_meta(ip->i_gl, bh);
61e085a8
SW
96 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
97 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
e13940ba
SW
98 *bhp = bh;
99 return 0;
100}
101
cd915493 102static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
61e085a8
SW
103 struct buffer_head **bhp)
104{
105 struct buffer_head *bh;
106 int error;
e13940ba 107
c8d57703 108 error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, 0, &bh);
61e085a8
SW
109 if (error)
110 return error;
feaa7bba 111 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
61e085a8
SW
112 brelse(bh);
113 return -EIO;
114 }
115 *bhp = bh;
116 return 0;
117}
e13940ba
SW
118
119static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
120 unsigned int offset, unsigned int size)
e13940ba
SW
121{
122 struct buffer_head *dibh;
123 int error;
124
125 error = gfs2_meta_inode_buffer(ip, &dibh);
126 if (error)
127 return error;
128
350a9b0a 129 gfs2_trans_add_meta(ip->i_gl, dibh);
c752666c 130 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
a2e0f799
SW
131 if (ip->i_inode.i_size < offset + size)
132 i_size_write(&ip->i_inode, offset + size);
580f721b 133 inode_set_mtime_to_ts(&ip->i_inode, inode_set_ctime_current(&ip->i_inode));
539e5d6b 134 gfs2_dinode_out(ip, dibh->b_data);
e13940ba
SW
135
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,
cd915493 153 u64 offset, unsigned int size)
e13940ba 154{
feaa7bba 155 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
e13940ba 156 struct buffer_head *dibh;
cd915493
SW
157 u64 lblock, dblock;
158 u32 extlen = 0;
e13940ba
SW
159 unsigned int o;
160 int copied = 0;
161 int error = 0;
9153dac1 162 bool new = false;
e13940ba
SW
163
164 if (!size)
165 return 0;
166
235628c5 167 if (gfs2_is_stuffed(ip) && offset + size <= gfs2_max_stuffed_size(ip))
568f4c96
SW
168 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
169 size);
e13940ba
SW
170
171 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
172 return -EINVAL;
173
174 if (gfs2_is_stuffed(ip)) {
7a607a41 175 error = gfs2_unstuff_dinode(ip);
e13940ba 176 if (error)
c752666c 177 return error;
e13940ba
SW
178 }
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;
e13940ba
SW
186
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) {
9153dac1
AG
192 extlen = 1;
193 error = gfs2_alloc_extent(&ip->i_inode, lblock, &dblock,
194 &extlen, &new);
e13940ba
SW
195 if (error)
196 goto fail;
197 error = -EIO;
198 if (gfs2_assert_withdraw(sdp, dblock))
199 goto fail;
200 }
201
61e085a8
SW
202 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
e13940ba
SW
207 if (error)
208 goto fail;
209
350a9b0a 210 gfs2_trans_add_meta(ip->i_gl, bh);
e13940ba
SW
211 memcpy(bh->b_data + o, buf, amount);
212 brelse(bh);
e13940ba 213
899bb264 214 buf += amount;
e13940ba
SW
215 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
a2e0f799
SW
228 if (ip->i_inode.i_size < offset + copied)
229 i_size_write(&ip->i_inode, offset + copied);
580f721b 230 inode_set_mtime_to_ts(&ip->i_inode, inode_set_ctime_current(&ip->i_inode));
e13940ba 231
350a9b0a 232 gfs2_trans_add_meta(ip->i_gl, dibh);
539e5d6b 233 gfs2_dinode_out(ip, dibh->b_data);
e13940ba
SW
234 brelse(dibh);
235
236 return copied;
237fail:
238 if (copied)
239 goto out;
240 return error;
241}
242
4c28d338
SW
243static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, __be64 *buf,
244 unsigned int size)
e13940ba
SW
245{
246 struct buffer_head *dibh;
247 int error;
248
249 error = gfs2_meta_inode_buffer(ip, &dibh);
250 if (!error) {
4c28d338 251 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
e13940ba
SW
252 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
e13940ba
SW
263 * @size: Amount of data to transfer
264 *
265 * Returns: The amount of data actually copied or the error
266 */
4c28d338
SW
267static int gfs2_dir_read_data(struct gfs2_inode *ip, __be64 *buf,
268 unsigned int size)
e13940ba 269{
feaa7bba 270 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
cd915493
SW
271 u64 lblock, dblock;
272 u32 extlen = 0;
e13940ba
SW
273 unsigned int o;
274 int copied = 0;
275 int error = 0;
e13940ba
SW
276
277 if (gfs2_is_stuffed(ip))
4c28d338 278 return gfs2_dir_read_stuffed(ip, buf, size);
e13940ba
SW
279
280 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
281 return -EINVAL;
282
4c28d338 283 lblock = 0;
e13940ba
SW
284 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;
e13940ba
SW
289
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) {
9153dac1
AG
295 extlen = 32;
296 error = gfs2_get_extent(&ip->i_inode, lblock,
fd88de56 297 &dblock, &extlen);
7276b3b0 298 if (error || !dblock)
e13940ba 299 goto fail;
7276b3b0 300 BUG_ON(extlen < 1);
7276b3b0 301 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
b7d8ac3e 302 } else {
c8d57703 303 error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, 0, &bh);
e13940ba
SW
304 if (error)
305 goto fail;
7276b3b0
SW
306 }
307 error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD);
308 if (error) {
309 brelse(bh);
310 goto fail;
311 }
312 dblock++;
313 extlen--;
e13940ba
SW
314 memcpy(buf, bh->b_data + o, amount);
315 brelse(bh);
4c28d338 316 buf += (amount/sizeof(__be64));
e13940ba
SW
317 copied += amount;
318 lblock++;
e13940ba
SW
319 o = sizeof(struct gfs2_meta_header);
320 }
321
322 return copied;
323fail:
324 return (copied) ? copied : error;
325}
326
17d539f0
SW
327/**
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
47a9a527 347 hsize = BIT(ip->i_depth);
17d539f0
SW
348 hsize *= sizeof(__be64);
349 if (hsize != i_size_read(&ip->i_inode)) {
350 gfs2_consist_inode(ip);
351 return ERR_PTR(-EIO);
352 }
353
e8830d88
BP
354 hc = kmalloc(hsize, GFP_NOFS | __GFP_NOWARN);
355 if (hc == NULL)
88dca4ca 356 hc = __vmalloc(hsize, GFP_NOFS);
e8830d88 357
17d539f0
SW
358 if (hc == NULL)
359 return ERR_PTR(-ENOMEM);
360
4c28d338 361 ret = gfs2_dir_read_data(ip, hc, hsize);
17d539f0 362 if (ret < 0) {
3cdcf63e 363 kvfree(hc);
17d539f0
SW
364 return ERR_PTR(ret);
365 }
366
367 spin_lock(&inode->i_lock);
9265f1d0 368 if (likely(!ip->i_hash_cache)) {
17d539f0 369 ip->i_hash_cache = hc;
9265f1d0
AV
370 hc = NULL;
371 }
17d539f0 372 spin_unlock(&inode->i_lock);
9265f1d0 373 kvfree(hc);
17d539f0
SW
374
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{
c36b97e9
BP
386 __be64 *hc;
387
388 spin_lock(&ip->i_inode.i_lock);
389 hc = ip->i_hash_cache;
17d539f0 390 ip->i_hash_cache = NULL;
c36b97e9
BP
391 spin_unlock(&ip->i_inode.i_lock);
392
3cdcf63e 393 kvfree(hc);
17d539f0
SW
394}
395
5e7d65cd
SW
396static 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
c752666c
SW
401static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
402 const struct qstr *name, int ret)
403{
5e7d65cd 404 if (!gfs2_dirent_sentinel(dent) &&
c752666c
SW
405 be32_to_cpu(dent->de_hash) == name->hash &&
406 be16_to_cpu(dent->de_name_len) == name->len &&
2bdbc5d7 407 memcmp(dent+1, name->name, name->len) == 0)
c752666c
SW
408 return ret;
409 return 0;
410}
411
412static int gfs2_dirent_find(const struct gfs2_dirent *dent,
71b86f56
SW
413 const struct qstr *name,
414 void *opaque)
c752666c
SW
415{
416 return __gfs2_dirent_find(dent, name, 1);
417}
418
419static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
71b86f56
SW
420 const struct qstr *name,
421 void *opaque)
c752666c
SW
422{
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.
b3b94faa 429 */
c752666c 430static int gfs2_dirent_last(const struct gfs2_dirent *dent,
71b86f56
SW
431 const struct qstr *name,
432 void *opaque)
c752666c
SW
433{
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}
b3b94faa 440
34017472
BM
441/* 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
c752666c 462static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
71b86f56
SW
463 const struct qstr *name,
464 void *opaque)
b3b94faa 465{
c752666c
SW
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
5e7d65cd 470 if (gfs2_dirent_sentinel(dent))
728a756b 471 actual = 0;
c5392124 472 if (totlen - actual >= required)
c752666c
SW
473 return 1;
474 return 0;
475}
476
71b86f56
SW
477struct 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;
5e7d65cd 487 if (!gfs2_dirent_sentinel(dent)) {
71b86f56
SW
488 g->pdent[g->offset++] = dent;
489 }
490 return 0;
491}
492
c752666c
SW
493/*
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 */
e54c78a2
BP
502static int gfs2_check_dirent(struct gfs2_sbd *sdp,
503 struct gfs2_dirent *dent, unsigned int offset,
c752666c
SW
504 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";
5e7d65cd 516 if (unlikely(!first && gfs2_dirent_sentinel(dent)))
c752666c
SW
517 goto error;
518 msg = "name length is greater than space in dirent";
5e7d65cd 519 if (!gfs2_dirent_sentinel(dent) &&
c752666c
SW
520 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
521 size))
522 goto error;
523 return 0;
524error:
e54c78a2 525 fs_warn(sdp, "%s: %s (%s)\n",
d77d1b58 526 __func__, msg, first ? "first in block" : "not first in block");
c752666c 527 return -EIO;
b3b94faa
DT
528}
529
e54c78a2 530static int gfs2_dirent_offset(struct gfs2_sbd *sdp, const void *buf)
c752666c 531{
71b86f56
SW
532 const struct gfs2_meta_header *h = buf;
533 int offset;
c752666c
SW
534
535 BUG_ON(buf == NULL);
c752666c 536
e3167ded 537 switch(be32_to_cpu(h->mh_type)) {
c752666c
SW
538 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 }
71b86f56
SW
547 return offset;
548wrong_type:
e54c78a2
BP
549 fs_warn(sdp, "%s: wrong block type %u\n", __func__,
550 be32_to_cpu(h->mh_type));
71b86f56
SW
551 return -1;
552}
553
2bdbc5d7 554static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
71b86f56
SW
555 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;
c752666c 563
e54c78a2 564 ret = gfs2_dirent_offset(GFS2_SB(inode), buf);
10398ef5
AP
565 if (ret < 0) {
566 gfs2_consist_inode(GFS2_I(inode));
567 return ERR_PTR(-EIO);
568 }
71b86f56 569 offset = ret;
c752666c 570 prev = NULL;
2bdbc5d7 571 dent = buf + offset;
c752666c 572 size = be16_to_cpu(dent->de_rec_len);
10398ef5
AP
573 if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size, len, 1)) {
574 gfs2_consist_inode(GFS2_I(inode));
575 return ERR_PTR(-EIO);
576 }
c752666c 577 do {
71b86f56 578 ret = scan(dent, name, opaque);
c752666c
SW
579 if (ret)
580 break;
581 offset += size;
582 if (offset == len)
583 break;
584 prev = dent;
2bdbc5d7 585 dent = buf + offset;
c752666c 586 size = be16_to_cpu(dent->de_rec_len);
e54c78a2 587 if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size,
10398ef5
AP
588 len, 0)) {
589 gfs2_consist_inode(GFS2_I(inode));
590 return ERR_PTR(-EIO);
591 }
c752666c
SW
592 } while(1);
593
594 switch(ret) {
595 case 0:
596 return NULL;
597 case 1:
598 return dent;
599 case 2:
600 return prev ? prev : dent;
601 default:
602 BUG_ON(ret > 0);
603 return ERR_PTR(ret);
604 }
c752666c
SW
605}
606
2bdbc5d7
SW
607static int dirent_check_reclen(struct gfs2_inode *dip,
608 const struct gfs2_dirent *d, const void *end_p)
609{
610 const void *ptr = d;
611 u16 rec_len = be16_to_cpu(d->de_rec_len);
612
10398ef5
AP
613 if (unlikely(rec_len < sizeof(struct gfs2_dirent))) {
614 gfs2_consist_inode(dip);
615 return -EIO;
616 }
2bdbc5d7
SW
617 ptr += rec_len;
618 if (ptr < end_p)
619 return rec_len;
620 if (ptr == end_p)
621 return -ENOENT;
10398ef5 622
2bdbc5d7
SW
623 gfs2_consist_inode(dip);
624 return -EIO;
625}
626
b3b94faa
DT
627/**
628 * dirent_next - Next dirent
629 * @dip: the directory
630 * @bh: The buffer
631 * @dent: Pointer to list of dirents
632 *
633 * Returns: 0 on success, error code otherwise
634 */
635
636static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
637 struct gfs2_dirent **dent)
638{
2bdbc5d7
SW
639 struct gfs2_dirent *cur = *dent, *tmp;
640 char *bh_end = bh->b_data + bh->b_size;
641 int ret;
b3b94faa 642
2bdbc5d7
SW
643 ret = dirent_check_reclen(dip, cur, bh_end);
644 if (ret < 0)
645 return ret;
4dd651ad 646
2bdbc5d7
SW
647 tmp = (void *)cur + ret;
648 ret = dirent_check_reclen(dip, tmp, bh_end);
649 if (ret == -EIO)
650 return ret;
4dd651ad 651
b3b94faa 652 /* Only the first dent could ever have de_inum.no_addr == 0 */
5e7d65cd 653 if (gfs2_dirent_sentinel(tmp)) {
b3b94faa
DT
654 gfs2_consist_inode(dip);
655 return -EIO;
656 }
657
658 *dent = tmp;
b3b94faa
DT
659 return 0;
660}
661
662/**
663 * dirent_del - Delete a dirent
664 * @dip: The GFS2 inode
665 * @bh: The buffer
666 * @prev: The previous dirent
667 * @cur: The current dirent
668 *
669 */
670
671static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
672 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
673{
cd915493 674 u16 cur_rec_len, prev_rec_len;
b3b94faa 675
5e7d65cd 676 if (gfs2_dirent_sentinel(cur)) {
b3b94faa
DT
677 gfs2_consist_inode(dip);
678 return;
679 }
680
350a9b0a 681 gfs2_trans_add_meta(dip->i_gl, bh);
b3b94faa
DT
682
683 /* If there is no prev entry, this is the first entry in the block.
684 The de_rec_len is already as big as it needs to be. Just zero
685 out the inode number and return. */
686
687 if (!prev) {
5e7d65cd
SW
688 cur->de_inum.no_addr = 0;
689 cur->de_inum.no_formal_ino = 0;
b3b94faa
DT
690 return;
691 }
692
693 /* Combine this dentry with the previous one. */
694
fc69d0d3
SW
695 prev_rec_len = be16_to_cpu(prev->de_rec_len);
696 cur_rec_len = be16_to_cpu(cur->de_rec_len);
b3b94faa
DT
697
698 if ((char *)prev + prev_rec_len != (char *)cur)
699 gfs2_consist_inode(dip);
700 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
701 gfs2_consist_inode(dip);
702
703 prev_rec_len += cur_rec_len;
fc69d0d3 704 prev->de_rec_len = cpu_to_be16(prev_rec_len);
b3b94faa
DT
705}
706
34017472
BM
707
708static struct gfs2_dirent *do_init_dirent(struct inode *inode,
709 struct gfs2_dirent *dent,
710 const struct qstr *name,
711 struct buffer_head *bh,
712 unsigned offset)
713{
714 struct gfs2_inode *ip = GFS2_I(inode);
715 struct gfs2_dirent *ndent;
716 unsigned totlen;
717
718 totlen = be16_to_cpu(dent->de_rec_len);
719 BUG_ON(offset + name->len > totlen);
720 gfs2_trans_add_meta(ip->i_gl, bh);
721 ndent = (struct gfs2_dirent *)((char *)dent + offset);
722 dent->de_rec_len = cpu_to_be16(offset);
723 gfs2_qstr2dirent(name, totlen - offset, ndent);
724 return ndent;
725}
726
727
c752666c
SW
728/*
729 * Takes a dent from which to grab space as an argument. Returns the
730 * newly created dent.
b3b94faa 731 */
08bc2dbc
AB
732static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
733 struct gfs2_dirent *dent,
734 const struct qstr *name,
735 struct buffer_head *bh)
b3b94faa 736{
34017472 737 unsigned offset = 0;
c752666c 738
5e7d65cd 739 if (!gfs2_dirent_sentinel(dent))
c752666c 740 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
34017472 741 return do_init_dirent(inode, dent, name, bh, offset);
b3b94faa
DT
742}
743
34017472
BM
744static struct gfs2_dirent *gfs2_dirent_split_alloc(struct inode *inode,
745 struct buffer_head *bh,
746 const struct qstr *name,
747 void *ptr)
b3b94faa
DT
748{
749 struct gfs2_dirent *dent;
907b9bce 750 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
34017472 751 gfs2_dirent_find_offset, name, ptr);
15a798f7 752 if (IS_ERR_OR_NULL(dent))
c752666c 753 return dent;
34017472
BM
754 return do_init_dirent(inode, dent, name, bh,
755 (unsigned)(ptr - (void *)dent));
b3b94faa
DT
756}
757
cd915493 758static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
b3b94faa
DT
759 struct buffer_head **bhp)
760{
761 int error;
762
c8d57703 763 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, 0, bhp);
feaa7bba 764 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
d77d1b58 765 /* pr_info("block num=%llu\n", leaf_no); */
b3b94faa 766 error = -EIO;
feaa7bba 767 }
b3b94faa
DT
768
769 return error;
770}
771
772/**
773 * get_leaf_nr - Get a leaf number associated with the index
774 * @dip: The GFS2 inode
3ae3a7d6
BP
775 * @index: hash table index of the targeted leaf
776 * @leaf_out: Resulting leaf block number
b3b94faa
DT
777 *
778 * Returns: 0 on success, error code otherwise
779 */
780
3ae3a7d6 781static int get_leaf_nr(struct gfs2_inode *dip, u32 index, u64 *leaf_out)
b3b94faa 782{
17d539f0 783 __be64 *hash;
287980e4 784 int error;
b3b94faa 785
17d539f0 786 hash = gfs2_dir_get_hash_table(dip);
287980e4
AB
787 error = PTR_ERR_OR_ZERO(hash);
788
789 if (!error)
790 *leaf_out = be64_to_cpu(*(hash + index));
791
792 return error;
b3b94faa
DT
793}
794
cd915493 795static int get_first_leaf(struct gfs2_inode *dip, u32 index,
b3b94faa
DT
796 struct buffer_head **bh_out)
797{
cd915493 798 u64 leaf_no;
b3b94faa
DT
799 int error;
800
801 error = get_leaf_nr(dip, index, &leaf_no);
287980e4 802 if (!error)
b3b94faa
DT
803 error = get_leaf(dip, leaf_no, bh_out);
804
805 return error;
806}
807
c752666c
SW
808static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
809 const struct qstr *name,
810 gfs2_dscan_t scan,
811 struct buffer_head **pbh)
b3b94faa 812{
c752666c
SW
813 struct buffer_head *bh;
814 struct gfs2_dirent *dent;
feaa7bba 815 struct gfs2_inode *ip = GFS2_I(inode);
b3b94faa
DT
816 int error;
817
383f01fb 818 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
c752666c 819 struct gfs2_leaf *leaf;
47a9a527
FF
820 unsigned int hsize = BIT(ip->i_depth);
821 unsigned int index;
c752666c 822 u64 ln;
a2e0f799 823 if (hsize * sizeof(u64) != i_size_read(inode)) {
c752666c
SW
824 gfs2_consist_inode(ip);
825 return ERR_PTR(-EIO);
826 }
907b9bce 827
9a004508 828 index = name->hash >> (32 - ip->i_depth);
c752666c
SW
829 error = get_first_leaf(ip, index, &bh);
830 if (error)
831 return ERR_PTR(error);
832 do {
833 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
71b86f56 834 scan, name, NULL);
c752666c
SW
835 if (dent)
836 goto got_dent;
837 leaf = (struct gfs2_leaf *)bh->b_data;
838 ln = be64_to_cpu(leaf->lf_next);
f4154ea0 839 brelse(bh);
c752666c
SW
840 if (!ln)
841 break;
907b9bce 842
c752666c
SW
843 error = get_leaf(ip, ln, &bh);
844 } while(!error);
b3b94faa 845
c752666c 846 return error ? ERR_PTR(error) : NULL;
b3b94faa 847 }
b3b94faa 848
907b9bce 849
c752666c
SW
850 error = gfs2_meta_inode_buffer(ip, &bh);
851 if (error)
852 return ERR_PTR(error);
71b86f56 853 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
c752666c 854got_dent:
15a798f7 855 if (IS_ERR_OR_NULL(dent)) {
ed386507
SW
856 brelse(bh);
857 bh = NULL;
858 }
c752666c
SW
859 *pbh = bh;
860 return dent;
861}
b3b94faa 862
c752666c
SW
863static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
864{
feaa7bba 865 struct gfs2_inode *ip = GFS2_I(inode);
b45e41d7 866 unsigned int n = 1;
09010978
SW
867 u64 bn;
868 int error;
869 struct buffer_head *bh;
c752666c
SW
870 struct gfs2_leaf *leaf;
871 struct gfs2_dirent *dent;
95582b00 872 struct timespec64 tv = current_time(inode);
09010978 873
4c7b3f7f 874 error = gfs2_alloc_blocks(ip, &bn, &n, 0);
09010978
SW
875 if (error)
876 return NULL;
877 bh = gfs2_meta_new(ip->i_gl, bn);
c752666c
SW
878 if (!bh)
879 return NULL;
09010978 880
fbb27873 881 gfs2_trans_remove_revoke(GFS2_SB(inode), bn, 1);
350a9b0a 882 gfs2_trans_add_meta(ip->i_gl, bh);
c752666c
SW
883 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
884 leaf = (struct gfs2_leaf *)bh->b_data;
885 leaf->lf_depth = cpu_to_be16(depth);
2bdbc5d7 886 leaf->lf_entries = 0;
a2d7d021 887 leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
2bdbc5d7 888 leaf->lf_next = 0;
01bcb0de
SW
889 leaf->lf_inode = cpu_to_be64(ip->i_no_addr);
890 leaf->lf_dist = cpu_to_be32(1);
891 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
892 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
893 memset(leaf->lf_reserved2, 0, sizeof(leaf->lf_reserved2));
c752666c 894 dent = (struct gfs2_dirent *)(leaf+1);
cdf01226 895 gfs2_qstr2dirent(&empty_name, bh->b_size - sizeof(struct gfs2_leaf), dent);
c752666c
SW
896 *pbh = bh;
897 return leaf;
b3b94faa
DT
898}
899
900/**
901 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
3ae3a7d6 902 * @inode: The directory inode to be converted to exhash
b3b94faa
DT
903 *
904 * Returns: 0 on success, error code otherwise
905 */
906
c752666c 907static int dir_make_exhash(struct inode *inode)
b3b94faa 908{
feaa7bba
SW
909 struct gfs2_inode *dip = GFS2_I(inode);
910 struct gfs2_sbd *sdp = GFS2_SB(inode);
b3b94faa 911 struct gfs2_dirent *dent;
c752666c 912 struct qstr args;
b3b94faa
DT
913 struct buffer_head *bh, *dibh;
914 struct gfs2_leaf *leaf;
915 int y;
cd915493 916 u32 x;
b44b84d7
AV
917 __be64 *lp;
918 u64 bn;
b3b94faa
DT
919 int error;
920
921 error = gfs2_meta_inode_buffer(dip, &dibh);
922 if (error)
923 return error;
924
b3b94faa
DT
925 /* Turn over a new leaf */
926
c752666c
SW
927 leaf = new_leaf(inode, &bh, 0);
928 if (!leaf)
929 return -ENOSPC;
930 bn = bh->b_blocknr;
b3b94faa 931
47a9a527 932 gfs2_assert(sdp, dip->i_entries < BIT(16));
ad6203f2 933 leaf->lf_entries = cpu_to_be16(dip->i_entries);
b3b94faa
DT
934
935 /* Copy dirents */
936
937 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
938 sizeof(struct gfs2_dinode));
939
940 /* Find last entry */
941
942 x = 0;
c752666c
SW
943 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
944 sizeof(struct gfs2_leaf);
945 args.name = bh->b_data;
feaa7bba 946 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
71b86f56 947 gfs2_dirent_last, &args, NULL);
c752666c
SW
948 if (!dent) {
949 brelse(bh);
950 brelse(dibh);
951 return -EIO;
952 }
953 if (IS_ERR(dent)) {
954 brelse(bh);
955 brelse(dibh);
956 return PTR_ERR(dent);
b3b94faa 957 }
b3b94faa
DT
958
959 /* Adjust the last dirent's record length
960 (Remember that dent still points to the last entry.) */
961
4dd651ad 962 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
b3b94faa 963 sizeof(struct gfs2_dinode) -
4dd651ad 964 sizeof(struct gfs2_leaf));
b3b94faa
DT
965
966 brelse(bh);
967
968 /* We're done with the new leaf block, now setup the new
969 hash table. */
970
350a9b0a 971 gfs2_trans_add_meta(dip->i_gl, dibh);
b3b94faa
DT
972 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
973
b44b84d7 974 lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
b3b94faa
DT
975
976 for (x = sdp->sd_hash_ptrs; x--; lp++)
977 *lp = cpu_to_be64(bn);
978
a2e0f799 979 i_size_write(inode, sdp->sd_sb.sb_bsize / 2);
77658aad 980 gfs2_add_inode_blocks(&dip->i_inode, 1);
383f01fb 981 dip->i_diskflags |= GFS2_DIF_EXHASH;
b3b94faa
DT
982
983 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
9a004508 984 dip->i_depth = y;
b3b94faa 985
539e5d6b 986 gfs2_dinode_out(dip, dibh->b_data);
b3b94faa
DT
987
988 brelse(dibh);
989
990 return 0;
991}
992
993/**
994 * dir_split_leaf - Split a leaf block into two
3ae3a7d6
BP
995 * @inode: The directory inode to be split
996 * @name: name of the dirent we're trying to insert
b3b94faa
DT
997 *
998 * Returns: 0 on success, error code on failure
999 */
1000
c752666c 1001static int dir_split_leaf(struct inode *inode, const struct qstr *name)
b3b94faa 1002{
feaa7bba 1003 struct gfs2_inode *dip = GFS2_I(inode);
b3b94faa
DT
1004 struct buffer_head *nbh, *obh, *dibh;
1005 struct gfs2_leaf *nleaf, *oleaf;
4da3c646 1006 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
cd915493 1007 u32 start, len, half_len, divider;
b44b84d7
AV
1008 u64 bn, leaf_no;
1009 __be64 *lp;
cd915493 1010 u32 index;
d1b0cb93 1011 int x;
b3b94faa
DT
1012 int error;
1013
9a004508 1014 index = name->hash >> (32 - dip->i_depth);
c752666c 1015 error = get_leaf_nr(dip, index, &leaf_no);
287980e4 1016 if (error)
c752666c 1017 return error;
b3b94faa
DT
1018
1019 /* Get the old leaf block */
b3b94faa
DT
1020 error = get_leaf(dip, leaf_no, &obh);
1021 if (error)
e90deff5 1022 return error;
b3b94faa 1023
b3b94faa 1024 oleaf = (struct gfs2_leaf *)obh->b_data;
9a004508 1025 if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) {
e90deff5
SW
1026 brelse(obh);
1027 return 1; /* can't split */
1028 }
1029
350a9b0a 1030 gfs2_trans_add_meta(dip->i_gl, obh);
b3b94faa 1031
c752666c
SW
1032 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
1033 if (!nleaf) {
1034 brelse(obh);
1035 return -ENOSPC;
1036 }
1037 bn = nbh->b_blocknr;
b3b94faa 1038
c752666c 1039 /* Compute the start and len of leaf pointers in the hash table. */
47a9a527 1040 len = BIT(dip->i_depth - be16_to_cpu(oleaf->lf_depth));
b3b94faa
DT
1041 half_len = len >> 1;
1042 if (!half_len) {
e54c78a2 1043 fs_warn(GFS2_SB(inode), "i_depth %u lf_depth %u index %u\n",
d77d1b58 1044 dip->i_depth, be16_to_cpu(oleaf->lf_depth), index);
b3b94faa
DT
1045 gfs2_consist_inode(dip);
1046 error = -EIO;
1047 goto fail_brelse;
1048 }
1049
1050 start = (index & ~(len - 1));
1051
1052 /* Change the pointers.
1053 Don't bother distinguishing stuffed from non-stuffed.
1054 This code is complicated enough already. */
6da2ec56 1055 lp = kmalloc_array(half_len, sizeof(__be64), GFP_NOFS);
4244b52e
DR
1056 if (!lp) {
1057 error = -ENOMEM;
1058 goto fail_brelse;
1059 }
1060
b3b94faa 1061 /* Change the pointers */
b3b94faa
DT
1062 for (x = 0; x < half_len; x++)
1063 lp[x] = cpu_to_be64(bn);
1064
17d539f0
SW
1065 gfs2_dir_hash_inval(dip);
1066
cd915493
SW
1067 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
1068 half_len * sizeof(u64));
1069 if (error != half_len * sizeof(u64)) {
b3b94faa
DT
1070 if (error >= 0)
1071 error = -EIO;
1072 goto fail_lpfree;
1073 }
1074
1075 kfree(lp);
1076
1077 /* Compute the divider */
9a004508 1078 divider = (start + half_len) << (32 - dip->i_depth);
b3b94faa
DT
1079
1080 /* Copy the entries */
1579343a 1081 dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf));
b3b94faa
DT
1082
1083 do {
1084 next = dent;
1085 if (dirent_next(dip, obh, &next))
1086 next = NULL;
1087
5e7d65cd 1088 if (!gfs2_dirent_sentinel(dent) &&
b3b94faa 1089 be32_to_cpu(dent->de_hash) < divider) {
c752666c 1090 struct qstr str;
34017472 1091 void *ptr = ((char *)dent - obh->b_data) + nbh->b_data;
c752666c
SW
1092 str.name = (char*)(dent+1);
1093 str.len = be16_to_cpu(dent->de_name_len);
1094 str.hash = be32_to_cpu(dent->de_hash);
34017472 1095 new = gfs2_dirent_split_alloc(inode, nbh, &str, ptr);
c752666c
SW
1096 if (IS_ERR(new)) {
1097 error = PTR_ERR(new);
1098 break;
1099 }
b3b94faa
DT
1100
1101 new->de_inum = dent->de_inum; /* No endian worries */
b3b94faa 1102 new->de_type = dent->de_type; /* No endian worries */
bb16b342 1103 be16_add_cpu(&nleaf->lf_entries, 1);
b3b94faa
DT
1104
1105 dirent_del(dip, obh, prev, dent);
1106
1107 if (!oleaf->lf_entries)
1108 gfs2_consist_inode(dip);
bb16b342 1109 be16_add_cpu(&oleaf->lf_entries, -1);
b3b94faa
DT
1110
1111 if (!prev)
1112 prev = dent;
c752666c 1113 } else {
b3b94faa 1114 prev = dent;
c752666c 1115 }
b3b94faa 1116 dent = next;
c752666c 1117 } while (dent);
b3b94faa 1118
c752666c 1119 oleaf->lf_depth = nleaf->lf_depth;
b3b94faa
DT
1120
1121 error = gfs2_meta_inode_buffer(dip, &dibh);
feaa7bba 1122 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
350a9b0a 1123 gfs2_trans_add_meta(dip->i_gl, dibh);
77658aad 1124 gfs2_add_inode_blocks(&dip->i_inode, 1);
539e5d6b 1125 gfs2_dinode_out(dip, dibh->b_data);
b3b94faa
DT
1126 brelse(dibh);
1127 }
1128
1129 brelse(obh);
1130 brelse(nbh);
1131
1132 return error;
1133
e90deff5 1134fail_lpfree:
b3b94faa
DT
1135 kfree(lp);
1136
e90deff5 1137fail_brelse:
b3b94faa 1138 brelse(obh);
b3b94faa
DT
1139 brelse(nbh);
1140 return error;
1141}
1142
1143/**
1144 * dir_double_exhash - Double size of ExHash table
1145 * @dip: The GFS2 dinode
1146 *
1147 * Returns: 0 on success, error code on failure
1148 */
1149
1150static int dir_double_exhash(struct gfs2_inode *dip)
1151{
b3b94faa 1152 struct buffer_head *dibh;
cd915493 1153 u32 hsize;
17d539f0
SW
1154 u32 hsize_bytes;
1155 __be64 *hc;
1156 __be64 *hc2, *h;
b3b94faa
DT
1157 int x;
1158 int error = 0;
1159
47a9a527 1160 hsize = BIT(dip->i_depth);
17d539f0 1161 hsize_bytes = hsize * sizeof(__be64);
b3b94faa 1162
17d539f0
SW
1163 hc = gfs2_dir_get_hash_table(dip);
1164 if (IS_ERR(hc))
1165 return PTR_ERR(hc);
b3b94faa 1166
6da2ec56 1167 hc2 = kmalloc_array(hsize_bytes, 2, GFP_NOFS | __GFP_NOWARN);
e8830d88 1168 if (hc2 == NULL)
88dca4ca 1169 hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS);
e8830d88 1170
17d539f0 1171 if (!hc2)
4244b52e 1172 return -ENOMEM;
b3b94faa 1173
512cbf02 1174 h = hc2;
17d539f0
SW
1175 error = gfs2_meta_inode_buffer(dip, &dibh);
1176 if (error)
1177 goto out_kfree;
b3b94faa 1178
17d539f0
SW
1179 for (x = 0; x < hsize; x++) {
1180 *h++ = *hc;
1181 *h++ = *hc;
1182 hc++;
b3b94faa
DT
1183 }
1184
17d539f0
SW
1185 error = gfs2_dir_write_data(dip, (char *)hc2, 0, hsize_bytes * 2);
1186 if (error != (hsize_bytes * 2))
1187 goto fail;
b3b94faa 1188
17d539f0
SW
1189 gfs2_dir_hash_inval(dip);
1190 dip->i_hash_cache = hc2;
1191 dip->i_depth++;
1192 gfs2_dinode_out(dip, dibh->b_data);
1193 brelse(dibh);
1194 return 0;
b3b94faa 1195
a91ea69f 1196fail:
17d539f0
SW
1197 /* Replace original hash table & size */
1198 gfs2_dir_write_data(dip, (char *)hc, 0, hsize_bytes);
1199 i_size_write(&dip->i_inode, hsize_bytes);
1200 gfs2_dinode_out(dip, dibh->b_data);
1201 brelse(dibh);
1202out_kfree:
3cdcf63e 1203 kvfree(hc2);
b3b94faa
DT
1204 return error;
1205}
1206
1207/**
1208 * compare_dents - compare directory entries by hash value
1209 * @a: first dent
1210 * @b: second dent
1211 *
1212 * When comparing the hash entries of @a to @b:
1213 * gt: returns 1
1214 * lt: returns -1
1215 * eq: returns 0
1216 */
1217
1218static int compare_dents(const void *a, const void *b)
1219{
2bdbc5d7 1220 const struct gfs2_dirent *dent_a, *dent_b;
cd915493 1221 u32 hash_a, hash_b;
b3b94faa
DT
1222 int ret = 0;
1223
2bdbc5d7 1224 dent_a = *(const struct gfs2_dirent **)a;
471f3db2 1225 hash_a = dent_a->de_cookie;
b3b94faa 1226
2bdbc5d7 1227 dent_b = *(const struct gfs2_dirent **)b;
471f3db2 1228 hash_b = dent_b->de_cookie;
b3b94faa
DT
1229
1230 if (hash_a > hash_b)
1231 ret = 1;
1232 else if (hash_a < hash_b)
1233 ret = -1;
1234 else {
4dd651ad
SW
1235 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1236 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
b3b94faa
DT
1237
1238 if (len_a > len_b)
1239 ret = 1;
1240 else if (len_a < len_b)
1241 ret = -1;
1242 else
2bdbc5d7 1243 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
b3b94faa
DT
1244 }
1245
1246 return ret;
1247}
1248
1249/**
1250 * do_filldir_main - read out directory entries
1251 * @dip: The GFS2 inode
d81a8ef5 1252 * @ctx: what to feed the entries to
b3b94faa
DT
1253 * @darr: an array of struct gfs2_dirent pointers to read
1254 * @entries: the number of entries in darr
3ae3a7d6 1255 * @sort_start: index of the directory array to start our sort
b3b94faa
DT
1256 * @copied: pointer to int that's non-zero if a entry has been copied out
1257 *
1258 * Jump through some hoops to make sure that if there are hash collsions,
1259 * they are read out at the beginning of a buffer. We want to minimize
1260 * the possibility that they will fall into different readdir buffers or
1261 * that someone will want to seek to that location.
1262 *
d81a8ef5 1263 * Returns: errno, >0 if the actor tells you to stop
b3b94faa
DT
1264 */
1265
d81a8ef5 1266static int do_filldir_main(struct gfs2_inode *dip, struct dir_context *ctx,
471f3db2
BM
1267 struct gfs2_dirent **darr, u32 entries,
1268 u32 sort_start, int *copied)
b3b94faa 1269{
71b86f56 1270 const struct gfs2_dirent *dent, *dent_next;
cd915493 1271 u64 off, off_next;
b3b94faa
DT
1272 unsigned int x, y;
1273 int run = 0;
b3b94faa 1274
471f3db2
BM
1275 if (sort_start < entries)
1276 sort(&darr[sort_start], entries - sort_start,
1277 sizeof(struct gfs2_dirent *), compare_dents, NULL);
b3b94faa
DT
1278
1279 dent_next = darr[0];
471f3db2 1280 off_next = dent_next->de_cookie;
b3b94faa
DT
1281
1282 for (x = 0, y = 1; x < entries; x++, y++) {
1283 dent = dent_next;
1284 off = off_next;
1285
1286 if (y < entries) {
1287 dent_next = darr[y];
471f3db2 1288 off_next = dent_next->de_cookie;
b3b94faa 1289
d81a8ef5 1290 if (off < ctx->pos)
b3b94faa 1291 continue;
d81a8ef5 1292 ctx->pos = off;
b3b94faa
DT
1293
1294 if (off_next == off) {
1295 if (*copied && !run)
1296 return 1;
1297 run = 1;
1298 } else
1299 run = 0;
1300 } else {
d81a8ef5 1301 if (off < ctx->pos)
b3b94faa 1302 continue;
d81a8ef5 1303 ctx->pos = off;
b3b94faa
DT
1304 }
1305
d81a8ef5 1306 if (!dir_emit(ctx, (const char *)(dent + 1),
4dd651ad 1307 be16_to_cpu(dent->de_name_len),
d81a8ef5
AV
1308 be64_to_cpu(dent->de_inum.no_addr),
1309 be16_to_cpu(dent->de_type)))
b3b94faa
DT
1310 return 1;
1311
1312 *copied = 1;
1313 }
1314
d81a8ef5 1315 /* Increment the ctx->pos by one, so the next time we come into the
b3b94faa
DT
1316 do_filldir fxn, we get the next entry instead of the last one in the
1317 current leaf */
1318
d81a8ef5 1319 ctx->pos++;
b3b94faa
DT
1320
1321 return 0;
1322}
1323
d2a97a4e
SW
1324static void *gfs2_alloc_sort_buffer(unsigned size)
1325{
1326 void *ptr = NULL;
1327
1328 if (size < KMALLOC_MAX_SIZE)
1329 ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN);
1330 if (!ptr)
88dca4ca 1331 ptr = __vmalloc(size, GFP_NOFS);
d2a97a4e
SW
1332 return ptr;
1333}
1334
471f3db2
BM
1335
1336static int gfs2_set_cookies(struct gfs2_sbd *sdp, struct buffer_head *bh,
1337 unsigned leaf_nr, struct gfs2_dirent **darr,
1338 unsigned entries)
1339{
1340 int sort_id = -1;
1341 int i;
1342
1343 for (i = 0; i < entries; i++) {
1344 unsigned offset;
1345
1346 darr[i]->de_cookie = be32_to_cpu(darr[i]->de_hash);
1347 darr[i]->de_cookie = gfs2_disk_hash2offset(darr[i]->de_cookie);
1348
1349 if (!sdp->sd_args.ar_loccookie)
1350 continue;
1351 offset = (char *)(darr[i]) -
e54c78a2 1352 (bh->b_data + gfs2_dirent_offset(sdp, bh->b_data));
471f3db2
BM
1353 offset /= GFS2_MIN_DIRENT_SIZE;
1354 offset += leaf_nr * sdp->sd_max_dents_per_leaf;
1355 if (offset >= GFS2_USE_HASH_FLAG ||
1356 leaf_nr >= GFS2_USE_HASH_FLAG) {
1357 darr[i]->de_cookie |= GFS2_USE_HASH_FLAG;
1358 if (sort_id < 0)
1359 sort_id = i;
1360 continue;
1361 }
1362 darr[i]->de_cookie &= GFS2_HASH_INDEX_MASK;
1363 darr[i]->de_cookie |= offset;
1364 }
1365 return sort_id;
1366}
1367
1368
d81a8ef5
AV
1369static int gfs2_dir_read_leaf(struct inode *inode, struct dir_context *ctx,
1370 int *copied, unsigned *depth,
3699e3a4 1371 u64 leaf_no)
b3b94faa 1372{
feaa7bba 1373 struct gfs2_inode *ip = GFS2_I(inode);
bdd19a22 1374 struct gfs2_sbd *sdp = GFS2_SB(inode);
71b86f56
SW
1375 struct buffer_head *bh;
1376 struct gfs2_leaf *lf;
bdd19a22 1377 unsigned entries = 0, entries2 = 0;
471f3db2
BM
1378 unsigned leaves = 0, leaf = 0, offset, sort_offset;
1379 struct gfs2_dirent **darr, *dent;
71b86f56
SW
1380 struct dirent_gather g;
1381 struct buffer_head **larr;
471f3db2 1382 int error, i, need_sort = 0, sort_id;
71b86f56 1383 u64 lfn = leaf_no;
b3b94faa 1384
b3b94faa 1385 do {
71b86f56 1386 error = get_leaf(ip, lfn, &bh);
b3b94faa 1387 if (error)
71b86f56
SW
1388 goto out;
1389 lf = (struct gfs2_leaf *)bh->b_data;
1390 if (leaves == 0)
1391 *depth = be16_to_cpu(lf->lf_depth);
1392 entries += be16_to_cpu(lf->lf_entries);
1393 leaves++;
1394 lfn = be64_to_cpu(lf->lf_next);
1395 brelse(bh);
1396 } while(lfn);
b3b94faa 1397
471f3db2
BM
1398 if (*depth < GFS2_DIR_MAX_DEPTH || !sdp->sd_args.ar_loccookie) {
1399 need_sort = 1;
1400 sort_offset = 0;
1401 }
1402
b3b94faa
DT
1403 if (!entries)
1404 return 0;
1405
71b86f56 1406 error = -ENOMEM;
bdd19a22
SW
1407 /*
1408 * The extra 99 entries are not normally used, but are a buffer
1409 * zone in case the number of entries in the leaf is corrupt.
1410 * 99 is the maximum number of entries that can fit in a single
1411 * leaf block.
1412 */
d2a97a4e 1413 larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *));
71b86f56
SW
1414 if (!larr)
1415 goto out;
471f3db2
BM
1416 darr = (struct gfs2_dirent **)(larr + leaves);
1417 g.pdent = (const struct gfs2_dirent **)darr;
71b86f56
SW
1418 g.offset = 0;
1419 lfn = leaf_no;
b3b94faa 1420
71b86f56
SW
1421 do {
1422 error = get_leaf(ip, lfn, &bh);
b3b94faa 1423 if (error)
d2a97a4e 1424 goto out_free;
71b86f56
SW
1425 lf = (struct gfs2_leaf *)bh->b_data;
1426 lfn = be64_to_cpu(lf->lf_next);
1427 if (lf->lf_entries) {
471f3db2 1428 offset = g.offset;
bdd19a22 1429 entries2 += be16_to_cpu(lf->lf_entries);
71b86f56
SW
1430 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1431 gfs2_dirent_gather, NULL, &g);
1432 error = PTR_ERR(dent);
bdd19a22 1433 if (IS_ERR(dent))
d2a97a4e 1434 goto out_free;
bdd19a22 1435 if (entries2 != g.offset) {
f391a4ea
AM
1436 fs_warn(sdp, "Number of entries corrupt in dir "
1437 "leaf %llu, entries2 (%u) != "
1438 "g.offset (%u)\n",
1439 (unsigned long long)bh->b_blocknr,
1440 entries2, g.offset);
d87d62b7 1441 gfs2_consist_inode(ip);
bdd19a22 1442 error = -EIO;
d2a97a4e 1443 goto out_free;
71b86f56
SW
1444 }
1445 error = 0;
471f3db2
BM
1446 sort_id = gfs2_set_cookies(sdp, bh, leaf, &darr[offset],
1447 be16_to_cpu(lf->lf_entries));
1448 if (!need_sort && sort_id >= 0) {
1449 need_sort = 1;
1450 sort_offset = offset + sort_id;
1451 }
71b86f56 1452 larr[leaf++] = bh;
b3b94faa 1453 } else {
471f3db2 1454 larr[leaf++] = NULL;
71b86f56 1455 brelse(bh);
b3b94faa 1456 }
71b86f56 1457 } while(lfn);
b3b94faa 1458
bdd19a22 1459 BUG_ON(entries2 != entries);
471f3db2
BM
1460 error = do_filldir_main(ip, ctx, darr, entries, need_sort ?
1461 sort_offset : entries, copied);
d2a97a4e 1462out_free:
71b86f56 1463 for(i = 0; i < leaf; i++)
bccaef90 1464 brelse(larr[i]);
3cdcf63e 1465 kvfree(larr);
71b86f56 1466out:
b3b94faa
DT
1467 return error;
1468}
1469
79c4c379
SW
1470/**
1471 * gfs2_dir_readahead - Issue read-ahead requests for leaf blocks.
3ae3a7d6
BP
1472 * @inode: the directory inode
1473 * @hsize: hash table size
1474 * @index: index into the hash table
1475 * @f_ra: read-ahead parameters
dfe4d34b
BP
1476 *
1477 * Note: we can't calculate each index like dir_e_read can because we don't
1478 * have the leaf, and therefore we don't have the depth, and therefore we
1479 * don't have the length. So we have to just read enough ahead to make up
79c4c379
SW
1480 * for the loss of information.
1481 */
dfe4d34b
BP
1482static void gfs2_dir_readahead(struct inode *inode, unsigned hsize, u32 index,
1483 struct file_ra_state *f_ra)
1484{
1485 struct gfs2_inode *ip = GFS2_I(inode);
1486 struct gfs2_glock *gl = ip->i_gl;
1487 struct buffer_head *bh;
1488 u64 blocknr = 0, last;
1489 unsigned count;
1490
1491 /* First check if we've already read-ahead for the whole range. */
79c4c379 1492 if (index + MAX_RA_BLOCKS < f_ra->start)
dfe4d34b
BP
1493 return;
1494
1495 f_ra->start = max((pgoff_t)index, f_ra->start);
1496 for (count = 0; count < MAX_RA_BLOCKS; count++) {
1497 if (f_ra->start >= hsize) /* if exceeded the hash table */
1498 break;
1499
1500 last = blocknr;
1501 blocknr = be64_to_cpu(ip->i_hash_cache[f_ra->start]);
1502 f_ra->start++;
1503 if (blocknr == last)
1504 continue;
1505
1506 bh = gfs2_getbuf(gl, blocknr, 1);
1507 if (trylock_buffer(bh)) {
1508 if (buffer_uptodate(bh)) {
1509 unlock_buffer(bh);
1510 brelse(bh);
1511 continue;
1512 }
1513 bh->b_end_io = end_buffer_read_sync;
1420c4a5
BVA
1514 submit_bh(REQ_OP_READ | REQ_RAHEAD | REQ_META |
1515 REQ_PRIO, bh);
dfe4d34b
BP
1516 continue;
1517 }
1518 brelse(bh);
1519 }
1520}
17d539f0 1521
b3b94faa 1522/**
c752666c 1523 * dir_e_read - Reads the entries from a directory into a filldir buffer
3ae3a7d6 1524 * @inode: the directory inode
d81a8ef5 1525 * @ctx: actor to feed the entries to
3ae3a7d6 1526 * @f_ra: read-ahead parameters
b3b94faa 1527 *
c752666c 1528 * Returns: errno
b3b94faa
DT
1529 */
1530
d81a8ef5
AV
1531static int dir_e_read(struct inode *inode, struct dir_context *ctx,
1532 struct file_ra_state *f_ra)
b3b94faa 1533{
feaa7bba 1534 struct gfs2_inode *dip = GFS2_I(inode);
cd915493 1535 u32 hsize, len = 0;
cd915493 1536 u32 hash, index;
b44b84d7 1537 __be64 *lp;
c752666c
SW
1538 int copied = 0;
1539 int error = 0;
4da3c646 1540 unsigned depth = 0;
b3b94faa 1541
47a9a527 1542 hsize = BIT(dip->i_depth);
d81a8ef5 1543 hash = gfs2_dir_offset2hash(ctx->pos);
9a004508 1544 index = hash >> (32 - dip->i_depth);
b3b94faa 1545
79c4c379 1546 if (dip->i_hash_cache == NULL)
dfe4d34b 1547 f_ra->start = 0;
17d539f0
SW
1548 lp = gfs2_dir_get_hash_table(dip);
1549 if (IS_ERR(lp))
1550 return PTR_ERR(lp);
b3b94faa 1551
dfe4d34b
BP
1552 gfs2_dir_readahead(inode, hsize, index, f_ra);
1553
b3b94faa 1554 while (index < hsize) {
d81a8ef5 1555 error = gfs2_dir_read_leaf(inode, ctx,
71b86f56 1556 &copied, &depth,
17d539f0 1557 be64_to_cpu(lp[index]));
b3b94faa 1558 if (error)
71b86f56 1559 break;
b3b94faa 1560
47a9a527 1561 len = BIT(dip->i_depth - depth);
b3b94faa
DT
1562 index = (index & ~(len - 1)) + len;
1563 }
1564
71b86f56
SW
1565 if (error > 0)
1566 error = 0;
b3b94faa
DT
1567 return error;
1568}
1569
d81a8ef5
AV
1570int gfs2_dir_read(struct inode *inode, struct dir_context *ctx,
1571 struct file_ra_state *f_ra)
b3b94faa 1572{
feaa7bba 1573 struct gfs2_inode *dip = GFS2_I(inode);
bdd19a22 1574 struct gfs2_sbd *sdp = GFS2_SB(inode);
71b86f56 1575 struct dirent_gather g;
471f3db2 1576 struct gfs2_dirent **darr, *dent;
b3b94faa
DT
1577 struct buffer_head *dibh;
1578 int copied = 0;
1579 int error;
1580
ad6203f2 1581 if (!dip->i_entries)
71b86f56
SW
1582 return 0;
1583
383f01fb 1584 if (dip->i_diskflags & GFS2_DIF_EXHASH)
d81a8ef5 1585 return dir_e_read(inode, ctx, f_ra);
71b86f56 1586
b3b94faa
DT
1587 if (!gfs2_is_stuffed(dip)) {
1588 gfs2_consist_inode(dip);
1589 return -EIO;
1590 }
1591
b3b94faa
DT
1592 error = gfs2_meta_inode_buffer(dip, &dibh);
1593 if (error)
1594 return error;
1595
71b86f56 1596 error = -ENOMEM;
bdd19a22 1597 /* 96 is max number of dirents which can be stuffed into an inode */
6da2ec56 1598 darr = kmalloc_array(96, sizeof(struct gfs2_dirent *), GFP_NOFS);
71b86f56 1599 if (darr) {
471f3db2 1600 g.pdent = (const struct gfs2_dirent **)darr;
71b86f56
SW
1601 g.offset = 0;
1602 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1603 gfs2_dirent_gather, NULL, &g);
1604 if (IS_ERR(dent)) {
1605 error = PTR_ERR(dent);
1606 goto out;
1607 }
ad6203f2 1608 if (dip->i_entries != g.offset) {
bdd19a22 1609 fs_warn(sdp, "Number of entries corrupt in dir %llu, "
ad6203f2 1610 "ip->i_entries (%u) != g.offset (%u)\n",
dbb7cae2 1611 (unsigned long long)dip->i_no_addr,
ad6203f2 1612 dip->i_entries,
bdd19a22 1613 g.offset);
d87d62b7 1614 gfs2_consist_inode(dip);
bdd19a22
SW
1615 error = -EIO;
1616 goto out;
1617 }
471f3db2 1618 gfs2_set_cookies(sdp, dibh, 0, darr, dip->i_entries);
d81a8ef5 1619 error = do_filldir_main(dip, ctx, darr,
471f3db2 1620 dip->i_entries, 0, &copied);
71b86f56
SW
1621out:
1622 kfree(darr);
1623 }
1624
b3b94faa
DT
1625 if (error > 0)
1626 error = 0;
1627
1628 brelse(dibh);
1629
1630 return error;
1631}
1632
b3b94faa
DT
1633/**
1634 * gfs2_dir_search - Search a directory
3ae3a7d6 1635 * @dir: The GFS2 directory inode
5a00f3cc
SW
1636 * @name: The name we are looking up
1637 * @fail_on_exist: Fail if the name exists rather than looking it up
b3b94faa
DT
1638 *
1639 * This routine searches a directory for a file or another directory.
1640 * Assumes a glock is held on dip.
1641 *
1642 * Returns: errno
1643 */
1644
5a00f3cc
SW
1645struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name,
1646 bool fail_on_exist)
b3b94faa 1647{
c752666c
SW
1648 struct buffer_head *bh;
1649 struct gfs2_dirent *dent;
5a00f3cc
SW
1650 u64 addr, formal_ino;
1651 u16 dtype;
dbb7cae2
SW
1652
1653 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1654 if (dent) {
c8d57703
AG
1655 struct inode *inode;
1656 u16 rahead;
1657
dbb7cae2 1658 if (IS_ERR(dent))
e231c2ee 1659 return ERR_CAST(dent);
5a00f3cc 1660 dtype = be16_to_cpu(dent->de_type);
c8d57703 1661 rahead = be16_to_cpu(dent->de_rahead);
5a00f3cc
SW
1662 addr = be64_to_cpu(dent->de_inum.no_addr);
1663 formal_ino = be64_to_cpu(dent->de_inum.no_formal_ino);
dbb7cae2 1664 brelse(bh);
5a00f3cc
SW
1665 if (fail_on_exist)
1666 return ERR_PTR(-EEXIST);
3ce37b2c
AG
1667 inode = gfs2_inode_lookup(dir->i_sb, dtype, addr, formal_ino,
1668 GFS2_BLKST_FREE /* ignore */);
c8d57703
AG
1669 if (!IS_ERR(inode))
1670 GFS2_I(inode)->i_rahead = rahead;
1671 return inode;
dbb7cae2
SW
1672 }
1673 return ERR_PTR(-ENOENT);
1674}
1675
1676int gfs2_dir_check(struct inode *dir, const struct qstr *name,
1677 const struct gfs2_inode *ip)
1678{
1679 struct buffer_head *bh;
1680 struct gfs2_dirent *dent;
1681 int ret = -ENOENT;
c752666c
SW
1682
1683 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1684 if (dent) {
1685 if (IS_ERR(dent))
1686 return PTR_ERR(dent);
dbb7cae2
SW
1687 if (ip) {
1688 if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr)
1689 goto out;
1690 if (be64_to_cpu(dent->de_inum.no_formal_ino) !=
1691 ip->i_no_formal_ino)
1692 goto out;
1693 if (unlikely(IF2DT(ip->i_inode.i_mode) !=
1694 be16_to_cpu(dent->de_type))) {
1695 gfs2_consist_inode(GFS2_I(dir));
1696 ret = -EIO;
1697 goto out;
1698 }
1699 }
1700 ret = 0;
1701out:
c752666c 1702 brelse(bh);
c752666c 1703 }
dbb7cae2 1704 return ret;
c752666c
SW
1705}
1706
01bcb0de
SW
1707/**
1708 * dir_new_leaf - Add a new leaf onto hash chain
1709 * @inode: The directory
1710 * @name: The name we are adding
1711 *
1712 * This adds a new dir leaf onto an existing leaf when there is not
1713 * enough space to add a new dir entry. This is a last resort after
1714 * we've expanded the hash table to max size and also split existing
1715 * leaf blocks, so it will only occur for very large directories.
1716 *
1717 * The dist parameter is set to 1 for leaf blocks directly attached
1718 * to the hash table, 2 for one layer of indirection, 3 for two layers
1719 * etc. We are thus able to tell the difference between an old leaf
1720 * with dist set to zero (i.e. "don't know") and a new one where we
1721 * set this information for debug/fsck purposes.
1722 *
1723 * Returns: 0 on success, or -ve on error
1724 */
1725
c752666c
SW
1726static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1727{
1728 struct buffer_head *bh, *obh;
feaa7bba 1729 struct gfs2_inode *ip = GFS2_I(inode);
c752666c 1730 struct gfs2_leaf *leaf, *oleaf;
01bcb0de 1731 u32 dist = 1;
b3b94faa 1732 int error;
c752666c
SW
1733 u32 index;
1734 u64 bn;
b3b94faa 1735
9a004508 1736 index = name->hash >> (32 - ip->i_depth);
c752666c
SW
1737 error = get_first_leaf(ip, index, &obh);
1738 if (error)
1739 return error;
1740 do {
01bcb0de 1741 dist++;
c752666c
SW
1742 oleaf = (struct gfs2_leaf *)obh->b_data;
1743 bn = be64_to_cpu(oleaf->lf_next);
1744 if (!bn)
1745 break;
1746 brelse(obh);
1747 error = get_leaf(ip, bn, &obh);
1748 if (error)
1749 return error;
1750 } while(1);
b3b94faa 1751
350a9b0a 1752 gfs2_trans_add_meta(ip->i_gl, obh);
c752666c
SW
1753
1754 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1755 if (!leaf) {
1756 brelse(obh);
1757 return -ENOSPC;
1758 }
01bcb0de 1759 leaf->lf_dist = cpu_to_be32(dist);
4d8012b6 1760 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
c752666c
SW
1761 brelse(bh);
1762 brelse(obh);
1763
1764 error = gfs2_meta_inode_buffer(ip, &bh);
1765 if (error)
1766 return error;
350a9b0a 1767 gfs2_trans_add_meta(ip->i_gl, bh);
77658aad 1768 gfs2_add_inode_blocks(&ip->i_inode, 1);
539e5d6b 1769 gfs2_dinode_out(ip, bh->b_data);
c752666c
SW
1770 brelse(bh);
1771 return 0;
b3b94faa
DT
1772}
1773
44aaada9
SW
1774static u16 gfs2_inode_ra_len(const struct gfs2_inode *ip)
1775{
1776 u64 where = ip->i_no_addr + 1;
1777 if (ip->i_eattr == where)
1778 return 1;
1779 return 0;
1780}
1781
b3b94faa
DT
1782/**
1783 * gfs2_dir_add - Add new filename into directory
2b47dad8
SW
1784 * @inode: The directory inode
1785 * @name: The new name
1786 * @nip: The GFS2 inode to be linked in to the directory
1787 * @da: The directory addition info
1788 *
1789 * If the call to gfs2_diradd_alloc_required resulted in there being
1790 * no need to allocate any new directory blocks, then it will contain
1791 * a pointer to the directory entry and the bh in which it resides. We
1792 * can use that without having to repeat the search. If there was no
1793 * free space, then we must now create more space.
b3b94faa
DT
1794 *
1795 * Returns: 0 on success, error code on failure
1796 */
1797
c752666c 1798int gfs2_dir_add(struct inode *inode, const struct qstr *name,
2b47dad8 1799 const struct gfs2_inode *nip, struct gfs2_diradd *da)
b3b94faa 1800{
feaa7bba 1801 struct gfs2_inode *ip = GFS2_I(inode);
2b47dad8
SW
1802 struct buffer_head *bh = da->bh;
1803 struct gfs2_dirent *dent = da->dent;
95582b00 1804 struct timespec64 tv;
c752666c 1805 struct gfs2_leaf *leaf;
b3b94faa
DT
1806 int error;
1807
c752666c 1808 while(1) {
2b47dad8
SW
1809 if (da->bh == NULL) {
1810 dent = gfs2_dirent_search(inode, name,
1811 gfs2_dirent_find_space, &bh);
1812 }
c752666c
SW
1813 if (dent) {
1814 if (IS_ERR(dent))
1815 return PTR_ERR(dent);
1816 dent = gfs2_init_dirent(inode, dent, name, bh);
dbb7cae2 1817 gfs2_inum_out(nip, dent);
3d6ecb7d 1818 dent->de_type = cpu_to_be16(IF2DT(nip->i_inode.i_mode));
44aaada9 1819 dent->de_rahead = cpu_to_be16(gfs2_inode_ra_len(nip));
8a8b8d91 1820 tv = inode_set_ctime_current(&ip->i_inode);
383f01fb 1821 if (ip->i_diskflags & GFS2_DIF_EXHASH) {
c752666c 1822 leaf = (struct gfs2_leaf *)bh->b_data;
bb16b342 1823 be16_add_cpu(&leaf->lf_entries, 1);
01bcb0de
SW
1824 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1825 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
c752666c 1826 }
2b47dad8
SW
1827 da->dent = NULL;
1828 da->bh = NULL;
c752666c 1829 brelse(bh);
ad6203f2 1830 ip->i_entries++;
580f721b 1831 inode_set_mtime_to_ts(&ip->i_inode, tv);
3d6ecb7d
SW
1832 if (S_ISDIR(nip->i_inode.i_mode))
1833 inc_nlink(&ip->i_inode);
343cd8f0 1834 mark_inode_dirty(inode);
c752666c
SW
1835 error = 0;
1836 break;
1837 }
383f01fb 1838 if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) {
c752666c
SW
1839 error = dir_make_exhash(inode);
1840 if (error)
1841 break;
1842 continue;
1843 }
1844 error = dir_split_leaf(inode, name);
1845 if (error == 0)
1846 continue;
e90deff5 1847 if (error < 0)
c752666c 1848 break;
9a004508 1849 if (ip->i_depth < GFS2_DIR_MAX_DEPTH) {
c752666c
SW
1850 error = dir_double_exhash(ip);
1851 if (error)
1852 break;
1853 error = dir_split_leaf(inode, name);
e90deff5 1854 if (error < 0)
c752666c 1855 break;
e90deff5
SW
1856 if (error == 0)
1857 continue;
c752666c
SW
1858 }
1859 error = dir_new_leaf(inode, name);
1860 if (!error)
1861 continue;
1862 error = -ENOSPC;
1863 break;
1864 }
b3b94faa
DT
1865 return error;
1866}
1867
c752666c 1868
b3b94faa
DT
1869/**
1870 * gfs2_dir_del - Delete a directory entry
1871 * @dip: The GFS2 inode
3ae3a7d6 1872 * @dentry: The directory entry we want to delete
b3b94faa
DT
1873 *
1874 * Returns: 0 on success, error code on failure
1875 */
1876
855d23ce 1877int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry)
b3b94faa 1878{
855d23ce 1879 const struct qstr *name = &dentry->d_name;
c752666c
SW
1880 struct gfs2_dirent *dent, *prev = NULL;
1881 struct buffer_head *bh;
8a8b8d91 1882 struct timespec64 tv;
b3b94faa 1883
c752666c
SW
1884 /* Returns _either_ the entry (if its first in block) or the
1885 previous entry otherwise */
feaa7bba 1886 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
c752666c
SW
1887 if (!dent) {
1888 gfs2_consist_inode(dip);
1889 return -EIO;
1890 }
1891 if (IS_ERR(dent)) {
1892 gfs2_consist_inode(dip);
1893 return PTR_ERR(dent);
1894 }
1895 /* If not first in block, adjust pointers accordingly */
71b86f56 1896 if (gfs2_dirent_find(dent, name, NULL) == 0) {
c752666c
SW
1897 prev = dent;
1898 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1899 }
1900
1901 dirent_del(dip, bh, prev, dent);
8a8b8d91 1902 tv = inode_set_ctime_current(&dip->i_inode);
383f01fb 1903 if (dip->i_diskflags & GFS2_DIF_EXHASH) {
c752666c
SW
1904 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1905 u16 entries = be16_to_cpu(leaf->lf_entries);
1906 if (!entries)
1907 gfs2_consist_inode(dip);
1908 leaf->lf_entries = cpu_to_be16(--entries);
01bcb0de
SW
1909 leaf->lf_nsec = cpu_to_be32(tv.tv_nsec);
1910 leaf->lf_sec = cpu_to_be64(tv.tv_sec);
c752666c 1911 }
ed386507 1912 brelse(bh);
c752666c 1913
ad6203f2 1914 if (!dip->i_entries)
c752666c 1915 gfs2_consist_inode(dip);
ad6203f2 1916 dip->i_entries--;
580f721b 1917 inode_set_mtime_to_ts(&dip->i_inode, tv);
e36cb0b8 1918 if (d_is_dir(dentry))
855d23ce 1919 drop_nlink(&dip->i_inode);
feaa7bba 1920 mark_inode_dirty(&dip->i_inode);
b3b94faa 1921
ab9bbda0 1922 return 0;
b3b94faa
DT
1923}
1924
b3b94faa
DT
1925/**
1926 * gfs2_dir_mvino - Change inode number of directory entry
3ae3a7d6
BP
1927 * @dip: The GFS2 directory inode
1928 * @filename: the filename to be moved
1929 * @nip: the new GFS2 inode
1930 * @new_type: the de_type of the new dirent
b3b94faa
DT
1931 *
1932 * This routine changes the inode number of a directory entry. It's used
1933 * by rename to change ".." when a directory is moved.
1934 * Assumes a glock is held on dvp.
1935 *
1936 * Returns: errno
1937 */
1938
c752666c 1939int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
dbb7cae2 1940 const struct gfs2_inode *nip, unsigned int new_type)
b3b94faa 1941{
c752666c
SW
1942 struct buffer_head *bh;
1943 struct gfs2_dirent *dent;
b3b94faa 1944
feaa7bba 1945 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
c752666c
SW
1946 if (!dent) {
1947 gfs2_consist_inode(dip);
1948 return -EIO;
1949 }
1950 if (IS_ERR(dent))
1951 return PTR_ERR(dent);
b3b94faa 1952
350a9b0a 1953 gfs2_trans_add_meta(dip->i_gl, bh);
dbb7cae2 1954 gfs2_inum_out(nip, dent);
c752666c 1955 dent->de_type = cpu_to_be16(new_type);
83998ccd 1956 brelse(bh);
c752666c 1957
580f721b 1958 inode_set_mtime_to_ts(&dip->i_inode, inode_set_ctime_current(&dip->i_inode));
83998ccd 1959 mark_inode_dirty_sync(&dip->i_inode);
c752666c 1960 return 0;
b3b94faa
DT
1961}
1962
b3b94faa
DT
1963/**
1964 * leaf_dealloc - Deallocate a directory leaf
1965 * @dip: the directory
1966 * @index: the hash table offset in the directory
1967 * @len: the number of pointers to this leaf
1968 * @leaf_no: the leaf number
ec038c82 1969 * @leaf_bh: buffer_head for the starting leaf
3ae3a7d6 1970 * @last_dealloc: 1 if this is the final dealloc for the leaf, else 0
b3b94faa
DT
1971 *
1972 * Returns: errno
1973 */
1974
cd915493 1975static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
ec038c82
BP
1976 u64 leaf_no, struct buffer_head *leaf_bh,
1977 int last_dealloc)
b3b94faa 1978{
feaa7bba 1979 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
c752666c 1980 struct gfs2_leaf *tmp_leaf;
b3b94faa
DT
1981 struct gfs2_rgrp_list rlist;
1982 struct buffer_head *bh, *dibh;
cd915493 1983 u64 blk, nblk;
b3b94faa
DT
1984 unsigned int rg_blocks = 0, l_blocks = 0;
1985 char *ht;
cd915493 1986 unsigned int x, size = len * sizeof(u64);
b3b94faa
DT
1987 int error;
1988
5e2f7d61
BP
1989 error = gfs2_rindex_update(sdp);
1990 if (error)
1991 return error;
1992
b3b94faa
DT
1993 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1994
8be04b93 1995 ht = kzalloc(size, GFP_NOFS | __GFP_NOWARN);
e8830d88 1996 if (ht == NULL)
88dca4ca 1997 ht = __vmalloc(size, GFP_NOFS | __GFP_NOWARN | __GFP_ZERO);
b3b94faa
DT
1998 if (!ht)
1999 return -ENOMEM;
2000
f4108a60 2001 error = gfs2_quota_hold(dip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
b3b94faa 2002 if (error)
5407e242 2003 goto out;
b3b94faa 2004
b3b94faa 2005 /* Count the number of leaves */
ec038c82 2006 bh = leaf_bh;
b3b94faa 2007
c752666c 2008 for (blk = leaf_no; blk; blk = nblk) {
ec038c82
BP
2009 if (blk != leaf_no) {
2010 error = get_leaf(dip, blk, &bh);
2011 if (error)
2012 goto out_rlist;
2013 }
c752666c
SW
2014 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
2015 nblk = be64_to_cpu(tmp_leaf->lf_next);
ec038c82
BP
2016 if (blk != leaf_no)
2017 brelse(bh);
b3b94faa 2018
70b0c365 2019 gfs2_rlist_add(dip, &rlist, blk);
b3b94faa
DT
2020 l_blocks++;
2021 }
2022
44dab005 2023 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, LM_FLAG_NODE_SCOPE);
b3b94faa
DT
2024
2025 for (x = 0; x < rlist.rl_rgrps; x++) {
6f6597ba
AG
2026 struct gfs2_rgrpd *rgd = gfs2_glock2rgrp(rlist.rl_ghs[x].gh_gl);
2027
bb8d8a6f 2028 rg_blocks += rgd->rd_length;
b3b94faa
DT
2029 }
2030
2031 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
2032 if (error)
2033 goto out_rlist;
2034
2035 error = gfs2_trans_begin(sdp,
5c676f6d 2036 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
cc44457f
BP
2037 RES_DINODE + RES_STATFS + RES_QUOTA, RES_DINODE +
2038 l_blocks);
b3b94faa
DT
2039 if (error)
2040 goto out_rg_gunlock;
2041
ec038c82
BP
2042 bh = leaf_bh;
2043
c752666c 2044 for (blk = leaf_no; blk; blk = nblk) {
0ddeded4
AG
2045 struct gfs2_rgrpd *rgd;
2046
ec038c82
BP
2047 if (blk != leaf_no) {
2048 error = get_leaf(dip, blk, &bh);
2049 if (error)
2050 goto out_end_trans;
2051 }
c752666c
SW
2052 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
2053 nblk = be64_to_cpu(tmp_leaf->lf_next);
ec038c82
BP
2054 if (blk != leaf_no)
2055 brelse(bh);
b3b94faa 2056
0ddeded4
AG
2057 rgd = gfs2_blk2rgrpd(sdp, blk, true);
2058 gfs2_free_meta(dip, rgd, blk, 1);
77658aad 2059 gfs2_add_inode_blocks(&dip->i_inode, -1);
b3b94faa
DT
2060 }
2061
cd915493 2062 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
b3b94faa
DT
2063 if (error != size) {
2064 if (error >= 0)
2065 error = -EIO;
2066 goto out_end_trans;
2067 }
2068
2069 error = gfs2_meta_inode_buffer(dip, &dibh);
2070 if (error)
2071 goto out_end_trans;
2072
350a9b0a 2073 gfs2_trans_add_meta(dip->i_gl, dibh);
d24a7a43
BP
2074 /* On the last dealloc, make this a regular file in case we crash.
2075 (We don't want to free these blocks a second time.) */
2076 if (last_dealloc)
2077 dip->i_inode.i_mode = S_IFREG;
539e5d6b 2078 gfs2_dinode_out(dip, dibh->b_data);
b3b94faa
DT
2079 brelse(dibh);
2080
a91ea69f 2081out_end_trans:
b3b94faa 2082 gfs2_trans_end(sdp);
a91ea69f 2083out_rg_gunlock:
b3b94faa 2084 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
a91ea69f 2085out_rlist:
b3b94faa 2086 gfs2_rlist_free(&rlist);
b3b94faa 2087 gfs2_quota_unhold(dip);
182fe5ab 2088out:
3cdcf63e 2089 kvfree(ht);
b3b94faa
DT
2090 return error;
2091}
2092
2093/**
2094 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
2095 * @dip: the directory
2096 *
2097 * Dealloc all on-disk directory leaves to FREEMETA state
2098 * Change on-disk inode type to "regular file"
2099 *
2100 * Returns: errno
2101 */
2102
2103int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
2104{
556bb179
BP
2105 struct buffer_head *bh;
2106 struct gfs2_leaf *leaf;
2107 u32 hsize, len;
556bb179
BP
2108 u32 index = 0, next_index;
2109 __be64 *lp;
2110 u64 leaf_no;
2111 int error = 0, last;
2112
47a9a527 2113 hsize = BIT(dip->i_depth);
556bb179 2114
17d539f0
SW
2115 lp = gfs2_dir_get_hash_table(dip);
2116 if (IS_ERR(lp))
2117 return PTR_ERR(lp);
556bb179
BP
2118
2119 while (index < hsize) {
17d539f0 2120 leaf_no = be64_to_cpu(lp[index]);
556bb179
BP
2121 if (leaf_no) {
2122 error = get_leaf(dip, leaf_no, &bh);
2123 if (error)
2124 goto out;
2125 leaf = (struct gfs2_leaf *)bh->b_data;
47a9a527 2126 len = BIT(dip->i_depth - be16_to_cpu(leaf->lf_depth));
556bb179
BP
2127
2128 next_index = (index & ~(len - 1)) + len;
2129 last = ((next_index >= hsize) ? 1 : 0);
2130 error = leaf_dealloc(dip, index, len, leaf_no, bh,
2131 last);
2132 brelse(bh);
2133 if (error)
2134 goto out;
2135 index = next_index;
2136 } else
2137 index++;
2138 }
2139
2140 if (index != hsize) {
2141 gfs2_consist_inode(dip);
2142 error = -EIO;
2143 }
2144
2145out:
556bb179
BP
2146
2147 return error;
b3b94faa
DT
2148}
2149
2150/**
2151 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
3ae3a7d6
BP
2152 * @inode: the directory inode being written to
2153 * @name: the filename that's going to be added
3c1c0ae1 2154 * @da: The structure to return dir alloc info
b3b94faa 2155 *
3c1c0ae1 2156 * Returns: 0 if ok, -ve on error
b3b94faa
DT
2157 */
2158
3c1c0ae1
SW
2159int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name,
2160 struct gfs2_diradd *da)
b3b94faa 2161{
22b5a6c0 2162 struct gfs2_inode *ip = GFS2_I(inode);
3c1c0ae1 2163 struct gfs2_sbd *sdp = GFS2_SB(inode);
22b5a6c0 2164 const unsigned int extra = sizeof(struct gfs2_dinode) - sizeof(struct gfs2_leaf);
c752666c
SW
2165 struct gfs2_dirent *dent;
2166 struct buffer_head *bh;
b3b94faa 2167
3c1c0ae1 2168 da->nr_blocks = 0;
2b47dad8
SW
2169 da->bh = NULL;
2170 da->dent = NULL;
3c1c0ae1 2171
c752666c 2172 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
ed386507 2173 if (!dent) {
3c1c0ae1 2174 da->nr_blocks = sdp->sd_max_dirres;
22b5a6c0
SW
2175 if (!(ip->i_diskflags & GFS2_DIF_EXHASH) &&
2176 (GFS2_DIRENT_SIZE(name->len) < extra))
2177 da->nr_blocks = 1;
3c1c0ae1 2178 return 0;
ed386507 2179 }
c752666c
SW
2180 if (IS_ERR(dent))
2181 return PTR_ERR(dent);
19aeb5a6
BP
2182
2183 if (da->save_loc) {
2184 da->bh = bh;
2185 da->dent = dent;
2186 } else {
2187 brelse(bh);
2188 }
c752666c 2189 return 0;
b3b94faa
DT
2190}
2191
This page took 1.638968 seconds and 4 git commands to generate.