Thomas Gleixner | 7336d0e | 2019-05-31 01:09:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 4 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 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 | * |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 36 | * dip->i_diskflags & GFS2_DIF_EXHASH is true |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 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 | */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 52 | |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 53 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 54 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 55 | #include <linux/slab.h> |
| 56 | #include <linux/spinlock.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 57 | #include <linux/buffer_head.h> |
| 58 | #include <linux/sort.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 59 | #include <linux/gfs2_ondisk.h> |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 60 | #include <linux/crc32.h> |
Steven Whitehouse | fe1bded | 2006-04-18 10:09:15 -0400 | [diff] [blame] | 61 | #include <linux/vmalloc.h> |
Christoph Hellwig | 2f8b544 | 2016-11-01 07:40:13 -0600 | [diff] [blame] | 62 | #include <linux/bio.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 63 | |
| 64 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 65 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 66 | #include "dir.h" |
| 67 | #include "glock.h" |
| 68 | #include "inode.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 69 | #include "meta_io.h" |
| 70 | #include "quota.h" |
| 71 | #include "rgrp.h" |
| 72 | #include "trans.h" |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 73 | #include "bmap.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 74 | #include "util.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 75 | |
Bob Peterson | dfe4d34 | 2011-10-27 12:16:06 -0400 | [diff] [blame] | 76 | #define MAX_RA_BLOCKS 32 /* max read-ahead blocks */ |
| 77 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 78 | #define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1) |
| 79 | #define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1)) |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 80 | #define GFS2_HASH_INDEX_MASK 0xffffc000 |
| 81 | #define GFS2_USE_HASH_FLAG 0x2000 |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 82 | |
Steven Whitehouse | 8d12358 | 2010-09-17 12:30:23 +0100 | [diff] [blame] | 83 | struct qstr gfs2_qdot __read_mostly; |
| 84 | struct qstr gfs2_qdotdot __read_mostly; |
| 85 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 86 | typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent, |
| 87 | const struct qstr *name, void *opaque); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 88 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 89 | int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block, |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 90 | struct buffer_head **bhp) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 91 | { |
| 92 | struct buffer_head *bh; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 93 | |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 94 | bh = gfs2_meta_new(ip->i_gl, block); |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 95 | gfs2_trans_add_meta(ip->i_gl, bh); |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 96 | gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD); |
| 97 | gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header)); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 98 | *bhp = bh; |
| 99 | return 0; |
| 100 | } |
| 101 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 102 | static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block, |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 103 | struct buffer_head **bhp) |
| 104 | { |
| 105 | struct buffer_head *bh; |
| 106 | int error; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 107 | |
Andreas Gruenbacher | c8d5770 | 2015-11-11 15:00:35 -0600 | [diff] [blame] | 108 | error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, 0, &bh); |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 109 | if (error) |
| 110 | return error; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 111 | if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) { |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 112 | brelse(bh); |
| 113 | return -EIO; |
| 114 | } |
| 115 | *bhp = bh; |
| 116 | return 0; |
| 117 | } |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 118 | |
| 119 | static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf, |
| 120 | unsigned int offset, unsigned int size) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 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 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 129 | gfs2_trans_add_meta(ip->i_gl, dibh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 130 | memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size); |
Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 131 | if (ip->i_inode.i_size < offset + size) |
| 132 | i_size_write(&ip->i_inode, offset + size); |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 133 | ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode); |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 134 | gfs2_dinode_out(ip, dibh->b_data); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 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 | */ |
| 152 | static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf, |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 153 | u64 offset, unsigned int size) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 154 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 155 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 156 | struct buffer_head *dibh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 157 | u64 lblock, dblock; |
| 158 | u32 extlen = 0; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 159 | unsigned int o; |
| 160 | int copied = 0; |
| 161 | int error = 0; |
Andreas Gruenbacher | 9153dac | 2021-03-31 23:17:38 +0200 | [diff] [blame] | 162 | bool new = false; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 163 | |
| 164 | if (!size) |
| 165 | return 0; |
| 166 | |
Andreas Gruenbacher | 235628c | 2017-11-14 16:53:12 +0100 | [diff] [blame] | 167 | if (gfs2_is_stuffed(ip) && offset + size <= gfs2_max_stuffed_size(ip)) |
Steven Whitehouse | 568f4c9 | 2006-02-27 12:00:42 -0500 | [diff] [blame] | 168 | return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset, |
| 169 | size); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 170 | |
| 171 | if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip))) |
| 172 | return -EINVAL; |
| 173 | |
| 174 | if (gfs2_is_stuffed(ip)) { |
Andreas Gruenbacher | 7a607a4 | 2021-06-17 21:36:50 +0200 | [diff] [blame] | 175 | error = gfs2_unstuff_dinode(ip); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 176 | if (error) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 177 | return error; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 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; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 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) { |
Andreas Gruenbacher | 9153dac | 2021-03-31 23:17:38 +0200 | [diff] [blame] | 192 | extlen = 1; |
| 193 | error = gfs2_alloc_extent(&ip->i_inode, lblock, &dblock, |
| 194 | &extlen, &new); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 195 | if (error) |
| 196 | goto fail; |
| 197 | error = -EIO; |
| 198 | if (gfs2_assert_withdraw(sdp, dblock)) |
| 199 | goto fail; |
| 200 | } |
| 201 | |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 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 | |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 207 | if (error) |
| 208 | goto fail; |
| 209 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 210 | gfs2_trans_add_meta(ip->i_gl, bh); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 211 | memcpy(bh->b_data + o, buf, amount); |
| 212 | brelse(bh); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 213 | |
Steven Whitehouse | 899bb26 | 2006-08-01 15:28:57 -0400 | [diff] [blame] | 214 | buf += amount; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 215 | copied += amount; |
| 216 | lblock++; |
| 217 | dblock++; |
| 218 | extlen--; |
| 219 | |
| 220 | o = sizeof(struct gfs2_meta_header); |
| 221 | } |
| 222 | |
| 223 | out: |
| 224 | error = gfs2_meta_inode_buffer(ip, &dibh); |
| 225 | if (error) |
| 226 | return error; |
| 227 | |
Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 228 | if (ip->i_inode.i_size < offset + copied) |
| 229 | i_size_write(&ip->i_inode, offset + copied); |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 230 | ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 231 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 232 | gfs2_trans_add_meta(ip->i_gl, dibh); |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 233 | gfs2_dinode_out(ip, dibh->b_data); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 234 | brelse(dibh); |
| 235 | |
| 236 | return copied; |
| 237 | fail: |
| 238 | if (copied) |
| 239 | goto out; |
| 240 | return error; |
| 241 | } |
| 242 | |
Steven Whitehouse | 4c28d33 | 2011-07-26 09:17:28 +0100 | [diff] [blame] | 243 | static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, __be64 *buf, |
| 244 | unsigned int size) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 245 | { |
| 246 | struct buffer_head *dibh; |
| 247 | int error; |
| 248 | |
| 249 | error = gfs2_meta_inode_buffer(ip, &dibh); |
| 250 | if (!error) { |
Steven Whitehouse | 4c28d33 | 2011-07-26 09:17:28 +0100 | [diff] [blame] | 251 | memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 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 |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 263 | * @size: Amount of data to transfer |
| 264 | * |
| 265 | * Returns: The amount of data actually copied or the error |
| 266 | */ |
Steven Whitehouse | 4c28d33 | 2011-07-26 09:17:28 +0100 | [diff] [blame] | 267 | static int gfs2_dir_read_data(struct gfs2_inode *ip, __be64 *buf, |
| 268 | unsigned int size) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 269 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 270 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 271 | u64 lblock, dblock; |
| 272 | u32 extlen = 0; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 273 | unsigned int o; |
| 274 | int copied = 0; |
| 275 | int error = 0; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 276 | |
| 277 | if (gfs2_is_stuffed(ip)) |
Steven Whitehouse | 4c28d33 | 2011-07-26 09:17:28 +0100 | [diff] [blame] | 278 | return gfs2_dir_read_stuffed(ip, buf, size); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 279 | |
| 280 | if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip))) |
| 281 | return -EINVAL; |
| 282 | |
Steven Whitehouse | 4c28d33 | 2011-07-26 09:17:28 +0100 | [diff] [blame] | 283 | lblock = 0; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 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; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 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) { |
Andreas Gruenbacher | 9153dac | 2021-03-31 23:17:38 +0200 | [diff] [blame] | 295 | extlen = 32; |
| 296 | error = gfs2_get_extent(&ip->i_inode, lblock, |
Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 297 | &dblock, &extlen); |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 298 | if (error || !dblock) |
| 299 | goto fail; |
| 300 | BUG_ON(extlen < 1); |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 301 | bh = gfs2_meta_ra(ip->i_gl, dblock, extlen); |
Adrian Bunk | b7d8ac3 | 2006-10-19 16:02:07 +0200 | [diff] [blame] | 302 | } else { |
Andreas Gruenbacher | c8d5770 | 2015-11-11 15:00:35 -0600 | [diff] [blame] | 303 | error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, 0, &bh); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 304 | if (error) |
| 305 | goto fail; |
| 306 | } |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 307 | error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD); |
| 308 | if (error) { |
| 309 | brelse(bh); |
| 310 | goto fail; |
| 311 | } |
| 312 | dblock++; |
| 313 | extlen--; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 314 | memcpy(buf, bh->b_data + o, amount); |
| 315 | brelse(bh); |
Steven Whitehouse | 4c28d33 | 2011-07-26 09:17:28 +0100 | [diff] [blame] | 316 | buf += (amount/sizeof(__be64)); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 317 | copied += amount; |
| 318 | lblock++; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 319 | o = sizeof(struct gfs2_meta_header); |
| 320 | } |
| 321 | |
| 322 | return copied; |
| 323 | fail: |
| 324 | return (copied) ? copied : error; |
| 325 | } |
| 326 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 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 | |
| 334 | static __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 Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 347 | hsize = BIT(ip->i_depth); |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 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 | |
Bob Peterson | e8830d8 | 2013-05-30 09:48:56 -0400 | [diff] [blame] | 354 | hc = kmalloc(hsize, GFP_NOFS | __GFP_NOWARN); |
| 355 | if (hc == NULL) |
Christoph Hellwig | 88dca4c | 2020-06-01 21:51:40 -0700 | [diff] [blame] | 356 | hc = __vmalloc(hsize, GFP_NOFS); |
Bob Peterson | e8830d8 | 2013-05-30 09:48:56 -0400 | [diff] [blame] | 357 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 358 | if (hc == NULL) |
| 359 | return ERR_PTR(-ENOMEM); |
| 360 | |
Steven Whitehouse | 4c28d33 | 2011-07-26 09:17:28 +0100 | [diff] [blame] | 361 | ret = gfs2_dir_read_data(ip, hc, hsize); |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 362 | if (ret < 0) { |
Al Viro | 3cdcf63 | 2014-11-20 05:18:38 +0000 | [diff] [blame] | 363 | kvfree(hc); |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 364 | return ERR_PTR(ret); |
| 365 | } |
| 366 | |
| 367 | spin_lock(&inode->i_lock); |
Al Viro | 9265f1d | 2014-11-20 05:19:47 +0000 | [diff] [blame] | 368 | if (likely(!ip->i_hash_cache)) { |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 369 | ip->i_hash_cache = hc; |
Al Viro | 9265f1d | 2014-11-20 05:19:47 +0000 | [diff] [blame] | 370 | hc = NULL; |
| 371 | } |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 372 | spin_unlock(&inode->i_lock); |
Al Viro | 9265f1d | 2014-11-20 05:19:47 +0000 | [diff] [blame] | 373 | kvfree(hc); |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 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 | */ |
| 384 | void gfs2_dir_hash_inval(struct gfs2_inode *ip) |
| 385 | { |
Bob Peterson | c36b97e | 2015-10-29 10:03:41 -0500 | [diff] [blame] | 386 | __be64 *hc; |
| 387 | |
| 388 | spin_lock(&ip->i_inode.i_lock); |
| 389 | hc = ip->i_hash_cache; |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 390 | ip->i_hash_cache = NULL; |
Bob Peterson | c36b97e | 2015-10-29 10:03:41 -0500 | [diff] [blame] | 391 | spin_unlock(&ip->i_inode.i_lock); |
| 392 | |
Al Viro | 3cdcf63 | 2014-11-20 05:18:38 +0000 | [diff] [blame] | 393 | kvfree(hc); |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 394 | } |
| 395 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 396 | static 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 Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 401 | static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent, |
| 402 | const struct qstr *name, int ret) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 403 | { |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 404 | if (!gfs2_dirent_sentinel(dent) && |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 405 | be32_to_cpu(dent->de_hash) == name->hash && |
| 406 | be16_to_cpu(dent->de_name_len) == name->len && |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 407 | memcmp(dent+1, name->name, name->len) == 0) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 408 | return ret; |
| 409 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 412 | static int gfs2_dirent_find(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 413 | const struct qstr *name, |
| 414 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 415 | { |
| 416 | return __gfs2_dirent_find(dent, name, 1); |
| 417 | } |
| 418 | |
| 419 | static int gfs2_dirent_prev(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 420 | const struct qstr *name, |
| 421 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 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. |
| 429 | */ |
| 430 | static int gfs2_dirent_last(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 431 | const struct qstr *name, |
| 432 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 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 | } |
| 440 | |
Benjamin Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 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 */ |
| 443 | static 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 Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 462 | static int gfs2_dirent_find_space(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 463 | const struct qstr *name, |
| 464 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 465 | { |
| 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 Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 470 | if (gfs2_dirent_sentinel(dent)) |
Bob Peterson | 728a756 | 2010-07-14 18:12:26 -0400 | [diff] [blame] | 471 | actual = 0; |
Jan Engelhardt | c5392124 | 2006-09-05 14:30:40 +0200 | [diff] [blame] | 472 | if (totlen - actual >= required) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 473 | return 1; |
| 474 | return 0; |
| 475 | } |
| 476 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 477 | struct dirent_gather { |
| 478 | const struct gfs2_dirent **pdent; |
| 479 | unsigned offset; |
| 480 | }; |
| 481 | |
| 482 | static 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 Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 487 | if (!gfs2_dirent_sentinel(dent)) { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 488 | g->pdent[g->offset++] = dent; |
| 489 | } |
| 490 | return 0; |
| 491 | } |
| 492 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 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 | */ |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 502 | static int gfs2_check_dirent(struct gfs2_sbd *sdp, |
| 503 | struct gfs2_dirent *dent, unsigned int offset, |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 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"; |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 516 | if (unlikely(!first && gfs2_dirent_sentinel(dent))) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 517 | goto error; |
| 518 | msg = "name length is greater than space in dirent"; |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 519 | if (!gfs2_dirent_sentinel(dent) && |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 520 | unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) > |
| 521 | size)) |
| 522 | goto error; |
| 523 | return 0; |
| 524 | error: |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 525 | fs_warn(sdp, "%s: %s (%s)\n", |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 526 | __func__, msg, first ? "first in block" : "not first in block"); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 527 | return -EIO; |
| 528 | } |
| 529 | |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 530 | static int gfs2_dirent_offset(struct gfs2_sbd *sdp, const void *buf) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 531 | { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 532 | const struct gfs2_meta_header *h = buf; |
| 533 | int offset; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 534 | |
| 535 | BUG_ON(buf == NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 536 | |
Steven Whitehouse | e3167de | 2006-03-30 15:46:23 -0500 | [diff] [blame] | 537 | switch(be32_to_cpu(h->mh_type)) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 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 | } |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 547 | return offset; |
| 548 | wrong_type: |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 549 | fs_warn(sdp, "%s: wrong block type %u\n", __func__, |
| 550 | be32_to_cpu(h->mh_type)); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 551 | return -1; |
| 552 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 553 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 554 | static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 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; |
| 563 | |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 564 | ret = gfs2_dirent_offset(GFS2_SB(inode), buf); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 565 | if (ret < 0) |
| 566 | goto consist_inode; |
| 567 | |
| 568 | offset = ret; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 569 | prev = NULL; |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 570 | dent = buf + offset; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 571 | size = be16_to_cpu(dent->de_rec_len); |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 572 | if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size, len, 1)) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 573 | goto consist_inode; |
| 574 | do { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 575 | ret = scan(dent, name, opaque); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 576 | if (ret) |
| 577 | break; |
| 578 | offset += size; |
| 579 | if (offset == len) |
| 580 | break; |
| 581 | prev = dent; |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 582 | dent = buf + offset; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 583 | size = be16_to_cpu(dent->de_rec_len); |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 584 | if (gfs2_check_dirent(GFS2_SB(inode), dent, offset, size, |
| 585 | len, 0)) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 586 | 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 Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 601 | consist_inode: |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 602 | gfs2_consist_inode(GFS2_I(inode)); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 603 | return ERR_PTR(-EIO); |
| 604 | } |
| 605 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 606 | static 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; |
| 619 | broken: |
| 620 | gfs2_consist_inode(dip); |
| 621 | return -EIO; |
| 622 | } |
| 623 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 624 | /** |
| 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 | |
| 633 | static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh, |
| 634 | struct gfs2_dirent **dent) |
| 635 | { |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 636 | struct gfs2_dirent *cur = *dent, *tmp; |
| 637 | char *bh_end = bh->b_data + bh->b_size; |
| 638 | int ret; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 639 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 640 | ret = dirent_check_reclen(dip, cur, bh_end); |
| 641 | if (ret < 0) |
| 642 | return ret; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 643 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 644 | tmp = (void *)cur + ret; |
| 645 | ret = dirent_check_reclen(dip, tmp, bh_end); |
| 646 | if (ret == -EIO) |
| 647 | return ret; |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 648 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 649 | /* Only the first dent could ever have de_inum.no_addr == 0 */ |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 650 | if (gfs2_dirent_sentinel(tmp)) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 651 | gfs2_consist_inode(dip); |
| 652 | return -EIO; |
| 653 | } |
| 654 | |
| 655 | *dent = tmp; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 656 | 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 | |
| 668 | static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh, |
| 669 | struct gfs2_dirent *prev, struct gfs2_dirent *cur) |
| 670 | { |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 671 | u16 cur_rec_len, prev_rec_len; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 672 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 673 | if (gfs2_dirent_sentinel(cur)) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 674 | gfs2_consist_inode(dip); |
| 675 | return; |
| 676 | } |
| 677 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 678 | gfs2_trans_add_meta(dip->i_gl, bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 679 | |
| 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 Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 685 | cur->de_inum.no_addr = 0; |
| 686 | cur->de_inum.no_formal_ino = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 687 | return; |
| 688 | } |
| 689 | |
| 690 | /* Combine this dentry with the previous one. */ |
| 691 | |
Steven Whitehouse | fc69d0d | 2006-02-13 16:21:47 +0000 | [diff] [blame] | 692 | prev_rec_len = be16_to_cpu(prev->de_rec_len); |
| 693 | cur_rec_len = be16_to_cpu(cur->de_rec_len); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 694 | |
| 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 Whitehouse | fc69d0d | 2006-02-13 16:21:47 +0000 | [diff] [blame] | 701 | prev->de_rec_len = cpu_to_be16(prev_rec_len); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 702 | } |
| 703 | |
Benjamin Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 704 | |
| 705 | static 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 710 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 711 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 712 | struct gfs2_dirent *ndent; |
Benjamin Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 713 | unsigned totlen; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 714 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 715 | totlen = be16_to_cpu(dent->de_rec_len); |
| 716 | BUG_ON(offset + name->len > totlen); |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 717 | gfs2_trans_add_meta(ip->i_gl, bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 718 | 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 722 | } |
| 723 | |
Benjamin Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 724 | |
| 725 | /* |
| 726 | * Takes a dent from which to grab space as an argument. Returns the |
| 727 | * newly created dent. |
| 728 | */ |
| 729 | static 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 | |
| 741 | static struct gfs2_dirent *gfs2_dirent_split_alloc(struct inode *inode, |
| 742 | struct buffer_head *bh, |
| 743 | const struct qstr *name, |
| 744 | void *ptr) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 745 | { |
| 746 | struct gfs2_dirent *dent; |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 747 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, |
Benjamin Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 748 | gfs2_dirent_find_offset, name, ptr); |
Kefeng Wang | 15a798f | 2019-06-05 22:24:24 +0800 | [diff] [blame] | 749 | if (IS_ERR_OR_NULL(dent)) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 750 | return dent; |
Benjamin Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 751 | return do_init_dirent(inode, dent, name, bh, |
| 752 | (unsigned)(ptr - (void *)dent)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 753 | } |
| 754 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 755 | static int get_leaf(struct gfs2_inode *dip, u64 leaf_no, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 756 | struct buffer_head **bhp) |
| 757 | { |
| 758 | int error; |
| 759 | |
Andreas Gruenbacher | c8d5770 | 2015-11-11 15:00:35 -0600 | [diff] [blame] | 760 | error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, 0, bhp); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 761 | if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) { |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 762 | /* pr_info("block num=%llu\n", leaf_no); */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 763 | error = -EIO; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 764 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 765 | |
| 766 | return error; |
| 767 | } |
| 768 | |
| 769 | /** |
| 770 | * get_leaf_nr - Get a leaf number associated with the index |
| 771 | * @dip: The GFS2 inode |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 772 | * @index: hash table index of the targeted leaf |
| 773 | * @leaf_out: Resulting leaf block number |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 774 | * |
| 775 | * Returns: 0 on success, error code otherwise |
| 776 | */ |
| 777 | |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 778 | static int get_leaf_nr(struct gfs2_inode *dip, u32 index, u64 *leaf_out) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 779 | { |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 780 | __be64 *hash; |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 781 | int error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 782 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 783 | hash = gfs2_dir_get_hash_table(dip); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 784 | error = PTR_ERR_OR_ZERO(hash); |
| 785 | |
| 786 | if (!error) |
| 787 | *leaf_out = be64_to_cpu(*(hash + index)); |
| 788 | |
| 789 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 790 | } |
| 791 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 792 | static int get_first_leaf(struct gfs2_inode *dip, u32 index, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 793 | struct buffer_head **bh_out) |
| 794 | { |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 795 | u64 leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 796 | int error; |
| 797 | |
| 798 | error = get_leaf_nr(dip, index, &leaf_no); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 799 | if (!error) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 800 | error = get_leaf(dip, leaf_no, bh_out); |
| 801 | |
| 802 | return error; |
| 803 | } |
| 804 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 805 | static 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 809 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 810 | struct buffer_head *bh; |
| 811 | struct gfs2_dirent *dent; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 812 | struct gfs2_inode *ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 813 | int error; |
| 814 | |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 815 | if (ip->i_diskflags & GFS2_DIF_EXHASH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 816 | struct gfs2_leaf *leaf; |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 817 | unsigned int hsize = BIT(ip->i_depth); |
| 818 | unsigned int index; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 819 | u64 ln; |
Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 820 | if (hsize * sizeof(u64) != i_size_read(inode)) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 821 | gfs2_consist_inode(ip); |
| 822 | return ERR_PTR(-EIO); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 823 | } |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 824 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 825 | index = name->hash >> (32 - ip->i_depth); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 826 | 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 Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 831 | scan, name, NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 832 | if (dent) |
| 833 | goto got_dent; |
| 834 | leaf = (struct gfs2_leaf *)bh->b_data; |
| 835 | ln = be64_to_cpu(leaf->lf_next); |
Steven Whitehouse | f4154ea | 2006-04-11 14:49:06 -0400 | [diff] [blame] | 836 | brelse(bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 837 | if (!ln) |
| 838 | break; |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 839 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 840 | error = get_leaf(ip, ln, &bh); |
| 841 | } while(!error); |
| 842 | |
| 843 | return error ? ERR_PTR(error) : NULL; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 844 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 845 | |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 846 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 847 | error = gfs2_meta_inode_buffer(ip, &bh); |
| 848 | if (error) |
| 849 | return ERR_PTR(error); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 850 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 851 | got_dent: |
Kefeng Wang | 15a798f | 2019-06-05 22:24:24 +0800 | [diff] [blame] | 852 | if (IS_ERR_OR_NULL(dent)) { |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 853 | brelse(bh); |
| 854 | bh = NULL; |
| 855 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 856 | *pbh = bh; |
| 857 | return dent; |
| 858 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 859 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 860 | static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth) |
| 861 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 862 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | b45e41d | 2008-02-06 10:11:15 +0000 | [diff] [blame] | 863 | unsigned int n = 1; |
Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 864 | u64 bn; |
| 865 | int error; |
| 866 | struct buffer_head *bh; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 867 | struct gfs2_leaf *leaf; |
| 868 | struct gfs2_dirent *dent; |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 869 | struct timespec64 tv = current_time(inode); |
Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 870 | |
Bob Peterson | 6e87ed0 | 2011-11-18 10:58:32 -0500 | [diff] [blame] | 871 | error = gfs2_alloc_blocks(ip, &bn, &n, 0, NULL); |
Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 872 | if (error) |
| 873 | return NULL; |
| 874 | bh = gfs2_meta_new(ip->i_gl, bn); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 875 | if (!bh) |
| 876 | return NULL; |
Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 877 | |
Andreas Gruenbacher | fbb2787 | 2019-04-05 12:18:23 +0100 | [diff] [blame] | 878 | gfs2_trans_remove_revoke(GFS2_SB(inode), bn, 1); |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 879 | gfs2_trans_add_meta(ip->i_gl, bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 880 | 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 Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 883 | leaf->lf_entries = 0; |
Al Viro | a2d7d02 | 2006-10-14 16:49:30 +0100 | [diff] [blame] | 884 | leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE); |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 885 | leaf->lf_next = 0; |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 886 | 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 Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 891 | dent = (struct gfs2_dirent *)(leaf+1); |
David Howells | cdf0122 | 2017-07-04 17:25:22 +0100 | [diff] [blame] | 892 | gfs2_qstr2dirent(&empty_name, bh->b_size - sizeof(struct gfs2_leaf), dent); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 893 | *pbh = bh; |
| 894 | return leaf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 895 | } |
| 896 | |
| 897 | /** |
| 898 | * dir_make_exhash - Convert a stuffed directory into an ExHash directory |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 899 | * @inode: The directory inode to be converted to exhash |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 900 | * |
| 901 | * Returns: 0 on success, error code otherwise |
| 902 | */ |
| 903 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 904 | static int dir_make_exhash(struct inode *inode) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 905 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 906 | struct gfs2_inode *dip = GFS2_I(inode); |
| 907 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 908 | struct gfs2_dirent *dent; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 909 | struct qstr args; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 910 | struct buffer_head *bh, *dibh; |
| 911 | struct gfs2_leaf *leaf; |
| 912 | int y; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 913 | u32 x; |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 914 | __be64 *lp; |
| 915 | u64 bn; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 916 | int error; |
| 917 | |
| 918 | error = gfs2_meta_inode_buffer(dip, &dibh); |
| 919 | if (error) |
| 920 | return error; |
| 921 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 922 | /* Turn over a new leaf */ |
| 923 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 924 | leaf = new_leaf(inode, &bh, 0); |
| 925 | if (!leaf) |
| 926 | return -ENOSPC; |
| 927 | bn = bh->b_blocknr; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 928 | |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 929 | gfs2_assert(sdp, dip->i_entries < BIT(16)); |
Steven Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 930 | leaf->lf_entries = cpu_to_be16(dip->i_entries); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 931 | |
| 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 Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 940 | args.len = bh->b_size - sizeof(struct gfs2_dinode) + |
| 941 | sizeof(struct gfs2_leaf); |
| 942 | args.name = bh->b_data; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 943 | dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 944 | gfs2_dirent_last, &args, NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 945 | if (!dent) { |
| 946 | brelse(bh); |
| 947 | brelse(dibh); |
| 948 | return -EIO; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 949 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 950 | if (IS_ERR(dent)) { |
| 951 | brelse(bh); |
| 952 | brelse(dibh); |
| 953 | return PTR_ERR(dent); |
| 954 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 955 | |
| 956 | /* Adjust the last dirent's record length |
| 957 | (Remember that dent still points to the last entry.) */ |
| 958 | |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 959 | dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) + |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 960 | sizeof(struct gfs2_dinode) - |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 961 | sizeof(struct gfs2_leaf)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 962 | |
| 963 | brelse(bh); |
| 964 | |
| 965 | /* We're done with the new leaf block, now setup the new |
| 966 | hash table. */ |
| 967 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 968 | gfs2_trans_add_meta(dip->i_gl, dibh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 969 | gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode)); |
| 970 | |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 971 | lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 972 | |
| 973 | for (x = sdp->sd_hash_ptrs; x--; lp++) |
| 974 | *lp = cpu_to_be64(bn); |
| 975 | |
Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 976 | i_size_write(inode, sdp->sd_sb.sb_bsize / 2); |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 977 | gfs2_add_inode_blocks(&dip->i_inode, 1); |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 978 | dip->i_diskflags |= GFS2_DIF_EXHASH; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 979 | |
| 980 | for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 981 | dip->i_depth = y; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 982 | |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 983 | gfs2_dinode_out(dip, dibh->b_data); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 984 | |
| 985 | brelse(dibh); |
| 986 | |
| 987 | return 0; |
| 988 | } |
| 989 | |
| 990 | /** |
| 991 | * dir_split_leaf - Split a leaf block into two |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 992 | * @inode: The directory inode to be split |
| 993 | * @name: name of the dirent we're trying to insert |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 994 | * |
| 995 | * Returns: 0 on success, error code on failure |
| 996 | */ |
| 997 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 998 | static int dir_split_leaf(struct inode *inode, const struct qstr *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 999 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1000 | struct gfs2_inode *dip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1001 | struct buffer_head *nbh, *obh, *dibh; |
| 1002 | struct gfs2_leaf *nleaf, *oleaf; |
Steven Whitehouse | 4da3c64 | 2006-07-11 13:19:13 -0400 | [diff] [blame] | 1003 | struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1004 | u32 start, len, half_len, divider; |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 1005 | u64 bn, leaf_no; |
| 1006 | __be64 *lp; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1007 | u32 index; |
Colin Ian King | d1b0cb9 | 2018-07-17 15:59:28 +0100 | [diff] [blame] | 1008 | int x; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1009 | int error; |
| 1010 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1011 | index = name->hash >> (32 - dip->i_depth); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1012 | error = get_leaf_nr(dip, index, &leaf_no); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1013 | if (error) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1014 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1015 | |
| 1016 | /* Get the old leaf block */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1017 | error = get_leaf(dip, leaf_no, &obh); |
| 1018 | if (error) |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1019 | return error; |
| 1020 | |
| 1021 | oleaf = (struct gfs2_leaf *)obh->b_data; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1022 | if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) { |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1023 | brelse(obh); |
| 1024 | return 1; /* can't split */ |
| 1025 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1026 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 1027 | gfs2_trans_add_meta(dip->i_gl, obh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1028 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1029 | 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1035 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1036 | /* Compute the start and len of leaf pointers in the hash table. */ |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 1037 | len = BIT(dip->i_depth - be16_to_cpu(oleaf->lf_depth)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1038 | half_len = len >> 1; |
| 1039 | if (!half_len) { |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 1040 | fs_warn(GFS2_SB(inode), "i_depth %u lf_depth %u index %u\n", |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 1041 | dip->i_depth, be16_to_cpu(oleaf->lf_depth), index); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1042 | 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 Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 1052 | lp = kmalloc_array(half_len, sizeof(__be64), GFP_NOFS); |
David Rientjes | 4244b52 | 2010-07-20 19:45:03 -0700 | [diff] [blame] | 1053 | if (!lp) { |
| 1054 | error = -ENOMEM; |
| 1055 | goto fail_brelse; |
| 1056 | } |
| 1057 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1058 | /* Change the pointers */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1059 | for (x = 0; x < half_len; x++) |
| 1060 | lp[x] = cpu_to_be64(bn); |
| 1061 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1062 | gfs2_dir_hash_inval(dip); |
| 1063 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1064 | error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64), |
| 1065 | half_len * sizeof(u64)); |
| 1066 | if (error != half_len * sizeof(u64)) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1067 | if (error >= 0) |
| 1068 | error = -EIO; |
| 1069 | goto fail_lpfree; |
| 1070 | } |
| 1071 | |
| 1072 | kfree(lp); |
| 1073 | |
| 1074 | /* Compute the divider */ |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1075 | divider = (start + half_len) << (32 - dip->i_depth); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1076 | |
| 1077 | /* Copy the entries */ |
Steven Whitehouse | 1579343 | 2009-11-06 11:06:37 +0000 | [diff] [blame] | 1078 | dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1079 | |
| 1080 | do { |
| 1081 | next = dent; |
| 1082 | if (dirent_next(dip, obh, &next)) |
| 1083 | next = NULL; |
| 1084 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 1085 | if (!gfs2_dirent_sentinel(dent) && |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1086 | be32_to_cpu(dent->de_hash) < divider) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1087 | struct qstr str; |
Benjamin Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 1088 | void *ptr = ((char *)dent - obh->b_data) + nbh->b_data; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1089 | 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 Marzinski | 3401747 | 2015-12-01 08:30:34 -0600 | [diff] [blame] | 1092 | new = gfs2_dirent_split_alloc(inode, nbh, &str, ptr); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1093 | if (IS_ERR(new)) { |
| 1094 | error = PTR_ERR(new); |
| 1095 | break; |
| 1096 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1097 | |
| 1098 | new->de_inum = dent->de_inum; /* No endian worries */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1099 | new->de_type = dent->de_type; /* No endian worries */ |
Marcin Slusarz | bb16b34 | 2008-02-13 00:06:10 +0100 | [diff] [blame] | 1100 | be16_add_cpu(&nleaf->lf_entries, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1101 | |
| 1102 | dirent_del(dip, obh, prev, dent); |
| 1103 | |
| 1104 | if (!oleaf->lf_entries) |
| 1105 | gfs2_consist_inode(dip); |
Marcin Slusarz | bb16b34 | 2008-02-13 00:06:10 +0100 | [diff] [blame] | 1106 | be16_add_cpu(&oleaf->lf_entries, -1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1107 | |
| 1108 | if (!prev) |
| 1109 | prev = dent; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1110 | } else { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1111 | prev = dent; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1112 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1113 | dent = next; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1114 | } while (dent); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1115 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1116 | oleaf->lf_depth = nleaf->lf_depth; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1117 | |
| 1118 | error = gfs2_meta_inode_buffer(dip, &dibh); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1119 | if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) { |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 1120 | gfs2_trans_add_meta(dip->i_gl, dibh); |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 1121 | gfs2_add_inode_blocks(&dip->i_inode, 1); |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1122 | gfs2_dinode_out(dip, dibh->b_data); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1123 | brelse(dibh); |
| 1124 | } |
| 1125 | |
| 1126 | brelse(obh); |
| 1127 | brelse(nbh); |
| 1128 | |
| 1129 | return error; |
| 1130 | |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1131 | fail_lpfree: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1132 | kfree(lp); |
| 1133 | |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1134 | fail_brelse: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1135 | brelse(obh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1136 | 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 | |
| 1147 | static int dir_double_exhash(struct gfs2_inode *dip) |
| 1148 | { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1149 | struct buffer_head *dibh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1150 | u32 hsize; |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1151 | u32 hsize_bytes; |
| 1152 | __be64 *hc; |
| 1153 | __be64 *hc2, *h; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1154 | int x; |
| 1155 | int error = 0; |
| 1156 | |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 1157 | hsize = BIT(dip->i_depth); |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1158 | hsize_bytes = hsize * sizeof(__be64); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1159 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1160 | hc = gfs2_dir_get_hash_table(dip); |
| 1161 | if (IS_ERR(hc)) |
| 1162 | return PTR_ERR(hc); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1163 | |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 1164 | hc2 = kmalloc_array(hsize_bytes, 2, GFP_NOFS | __GFP_NOWARN); |
Bob Peterson | e8830d8 | 2013-05-30 09:48:56 -0400 | [diff] [blame] | 1165 | if (hc2 == NULL) |
Christoph Hellwig | 88dca4c | 2020-06-01 21:51:40 -0700 | [diff] [blame] | 1166 | hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS); |
Bob Peterson | e8830d8 | 2013-05-30 09:48:56 -0400 | [diff] [blame] | 1167 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1168 | if (!hc2) |
David Rientjes | 4244b52 | 2010-07-20 19:45:03 -0700 | [diff] [blame] | 1169 | return -ENOMEM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1170 | |
Bob Peterson | 512cbf0 | 2013-06-14 08:39:18 -0400 | [diff] [blame] | 1171 | h = hc2; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1172 | error = gfs2_meta_inode_buffer(dip, &dibh); |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1173 | if (error) |
| 1174 | goto out_kfree; |
| 1175 | |
| 1176 | for (x = 0; x < hsize; x++) { |
| 1177 | *h++ = *hc; |
| 1178 | *h++ = *hc; |
| 1179 | hc++; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1180 | } |
| 1181 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1182 | 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1192 | |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1193 | fail: |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1194 | /* 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); |
| 1199 | out_kfree: |
Al Viro | 3cdcf63 | 2014-11-20 05:18:38 +0000 | [diff] [blame] | 1200 | kvfree(hc2); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1201 | 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 | |
| 1215 | static int compare_dents(const void *a, const void *b) |
| 1216 | { |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1217 | const struct gfs2_dirent *dent_a, *dent_b; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1218 | u32 hash_a, hash_b; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1219 | int ret = 0; |
| 1220 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1221 | dent_a = *(const struct gfs2_dirent **)a; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1222 | hash_a = dent_a->de_cookie; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1223 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1224 | dent_b = *(const struct gfs2_dirent **)b; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1225 | hash_b = dent_b->de_cookie; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1226 | |
| 1227 | if (hash_a > hash_b) |
| 1228 | ret = 1; |
| 1229 | else if (hash_a < hash_b) |
| 1230 | ret = -1; |
| 1231 | else { |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 1232 | 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1234 | |
| 1235 | if (len_a > len_b) |
| 1236 | ret = 1; |
| 1237 | else if (len_a < len_b) |
| 1238 | ret = -1; |
| 1239 | else |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1240 | ret = memcmp(dent_a + 1, dent_b + 1, len_a); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1241 | } |
| 1242 | |
| 1243 | return ret; |
| 1244 | } |
| 1245 | |
| 1246 | /** |
| 1247 | * do_filldir_main - read out directory entries |
| 1248 | * @dip: The GFS2 inode |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1249 | * @ctx: what to feed the entries to |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1250 | * @darr: an array of struct gfs2_dirent pointers to read |
| 1251 | * @entries: the number of entries in darr |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1252 | * @sort_start: index of the directory array to start our sort |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1253 | * @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 Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1260 | * Returns: errno, >0 if the actor tells you to stop |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1261 | */ |
| 1262 | |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1263 | static int do_filldir_main(struct gfs2_inode *dip, struct dir_context *ctx, |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1264 | struct gfs2_dirent **darr, u32 entries, |
| 1265 | u32 sort_start, int *copied) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1266 | { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1267 | const struct gfs2_dirent *dent, *dent_next; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1268 | u64 off, off_next; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1269 | unsigned int x, y; |
| 1270 | int run = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1271 | |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1272 | if (sort_start < entries) |
| 1273 | sort(&darr[sort_start], entries - sort_start, |
| 1274 | sizeof(struct gfs2_dirent *), compare_dents, NULL); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1275 | |
| 1276 | dent_next = darr[0]; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1277 | off_next = dent_next->de_cookie; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1278 | |
| 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 Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1285 | off_next = dent_next->de_cookie; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1286 | |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1287 | if (off < ctx->pos) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1288 | continue; |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1289 | ctx->pos = off; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1290 | |
| 1291 | if (off_next == off) { |
| 1292 | if (*copied && !run) |
| 1293 | return 1; |
| 1294 | run = 1; |
| 1295 | } else |
| 1296 | run = 0; |
| 1297 | } else { |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1298 | if (off < ctx->pos) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1299 | continue; |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1300 | ctx->pos = off; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1301 | } |
| 1302 | |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1303 | if (!dir_emit(ctx, (const char *)(dent + 1), |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 1304 | be16_to_cpu(dent->de_name_len), |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1305 | be64_to_cpu(dent->de_inum.no_addr), |
| 1306 | be16_to_cpu(dent->de_type))) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1307 | return 1; |
| 1308 | |
| 1309 | *copied = 1; |
| 1310 | } |
| 1311 | |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1312 | /* Increment the ctx->pos by one, so the next time we come into the |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1313 | do_filldir fxn, we get the next entry instead of the last one in the |
| 1314 | current leaf */ |
| 1315 | |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1316 | ctx->pos++; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1317 | |
| 1318 | return 0; |
| 1319 | } |
| 1320 | |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame] | 1321 | static 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 Hellwig | 88dca4c | 2020-06-01 21:51:40 -0700 | [diff] [blame] | 1328 | ptr = __vmalloc(size, GFP_NOFS); |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame] | 1329 | return ptr; |
| 1330 | } |
| 1331 | |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1332 | |
| 1333 | static 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 Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 1349 | (bh->b_data + gfs2_dirent_offset(sdp, bh->b_data)); |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1350 | 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 Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1366 | static int gfs2_dir_read_leaf(struct inode *inode, struct dir_context *ctx, |
| 1367 | int *copied, unsigned *depth, |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 1368 | u64 leaf_no) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1369 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1370 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1371 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1372 | struct buffer_head *bh; |
| 1373 | struct gfs2_leaf *lf; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1374 | unsigned entries = 0, entries2 = 0; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1375 | unsigned leaves = 0, leaf = 0, offset, sort_offset; |
| 1376 | struct gfs2_dirent **darr, *dent; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1377 | struct dirent_gather g; |
| 1378 | struct buffer_head **larr; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1379 | int error, i, need_sort = 0, sort_id; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1380 | u64 lfn = leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1381 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1382 | do { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1383 | error = get_leaf(ip, lfn, &bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1384 | if (error) |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1385 | 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1394 | |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1395 | if (*depth < GFS2_DIR_MAX_DEPTH || !sdp->sd_args.ar_loccookie) { |
| 1396 | need_sort = 1; |
| 1397 | sort_offset = 0; |
| 1398 | } |
| 1399 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1400 | if (!entries) |
| 1401 | return 0; |
| 1402 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1403 | error = -ENOMEM; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1404 | /* |
| 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 Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame] | 1410 | larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *)); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1411 | if (!larr) |
| 1412 | goto out; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1413 | darr = (struct gfs2_dirent **)(larr + leaves); |
| 1414 | g.pdent = (const struct gfs2_dirent **)darr; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1415 | g.offset = 0; |
| 1416 | lfn = leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1417 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1418 | do { |
| 1419 | error = get_leaf(ip, lfn, &bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1420 | if (error) |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame] | 1421 | goto out_free; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1422 | lf = (struct gfs2_leaf *)bh->b_data; |
| 1423 | lfn = be64_to_cpu(lf->lf_next); |
| 1424 | if (lf->lf_entries) { |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1425 | offset = g.offset; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1426 | entries2 += be16_to_cpu(lf->lf_entries); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1427 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, |
| 1428 | gfs2_dirent_gather, NULL, &g); |
| 1429 | error = PTR_ERR(dent); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1430 | if (IS_ERR(dent)) |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame] | 1431 | goto out_free; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1432 | if (entries2 != g.offset) { |
akpm@linux-foundation.org | f391a4e | 2007-04-25 21:08:02 -0700 | [diff] [blame] | 1433 | 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 Peterson | d87d62b7 | 2017-05-26 08:28:56 -0500 | [diff] [blame] | 1438 | gfs2_consist_inode(ip); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1439 | error = -EIO; |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame] | 1440 | goto out_free; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1441 | } |
| 1442 | error = 0; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1443 | 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 Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1449 | larr[leaf++] = bh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1450 | } else { |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1451 | larr[leaf++] = NULL; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1452 | brelse(bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1453 | } |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1454 | } while(lfn); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1455 | |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1456 | BUG_ON(entries2 != entries); |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1457 | error = do_filldir_main(ip, ctx, darr, entries, need_sort ? |
| 1458 | sort_offset : entries, copied); |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame] | 1459 | out_free: |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1460 | for(i = 0; i < leaf; i++) |
Markus Elfring | bccaef9 | 2019-09-03 15:10:05 +0200 | [diff] [blame] | 1461 | brelse(larr[i]); |
Al Viro | 3cdcf63 | 2014-11-20 05:18:38 +0000 | [diff] [blame] | 1462 | kvfree(larr); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1463 | out: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1464 | return error; |
| 1465 | } |
| 1466 | |
Steven Whitehouse | 79c4c37 | 2011-11-09 13:46:06 +0000 | [diff] [blame] | 1467 | /** |
| 1468 | * gfs2_dir_readahead - Issue read-ahead requests for leaf blocks. |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1469 | * @inode: the directory inode |
| 1470 | * @hsize: hash table size |
| 1471 | * @index: index into the hash table |
| 1472 | * @f_ra: read-ahead parameters |
Bob Peterson | dfe4d34 | 2011-10-27 12:16:06 -0400 | [diff] [blame] | 1473 | * |
| 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 Whitehouse | 79c4c37 | 2011-11-09 13:46:06 +0000 | [diff] [blame] | 1477 | * for the loss of information. |
| 1478 | */ |
Bob Peterson | dfe4d34 | 2011-10-27 12:16:06 -0400 | [diff] [blame] | 1479 | static 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 Whitehouse | 79c4c37 | 2011-11-09 13:46:06 +0000 | [diff] [blame] | 1489 | if (index + MAX_RA_BLOCKS < f_ra->start) |
Bob Peterson | dfe4d34 | 2011-10-27 12:16:06 -0400 | [diff] [blame] | 1490 | 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 Li | e477b24 | 2017-07-21 07:48:22 -0500 | [diff] [blame] | 1511 | submit_bh(REQ_OP_READ, |
| 1512 | REQ_RAHEAD | REQ_META | REQ_PRIO, |
| 1513 | bh); |
Bob Peterson | dfe4d34 | 2011-10-27 12:16:06 -0400 | [diff] [blame] | 1514 | continue; |
| 1515 | } |
| 1516 | brelse(bh); |
| 1517 | } |
| 1518 | } |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1519 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1520 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1521 | * dir_e_read - Reads the entries from a directory into a filldir buffer |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1522 | * @inode: the directory inode |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1523 | * @ctx: actor to feed the entries to |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1524 | * @f_ra: read-ahead parameters |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1525 | * |
| 1526 | * Returns: errno |
| 1527 | */ |
| 1528 | |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1529 | static int dir_e_read(struct inode *inode, struct dir_context *ctx, |
| 1530 | struct file_ra_state *f_ra) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1531 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1532 | struct gfs2_inode *dip = GFS2_I(inode); |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1533 | u32 hsize, len = 0; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1534 | u32 hash, index; |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 1535 | __be64 *lp; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1536 | int copied = 0; |
| 1537 | int error = 0; |
Steven Whitehouse | 4da3c64 | 2006-07-11 13:19:13 -0400 | [diff] [blame] | 1538 | unsigned depth = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1539 | |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 1540 | hsize = BIT(dip->i_depth); |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1541 | hash = gfs2_dir_offset2hash(ctx->pos); |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1542 | index = hash >> (32 - dip->i_depth); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1543 | |
Steven Whitehouse | 79c4c37 | 2011-11-09 13:46:06 +0000 | [diff] [blame] | 1544 | if (dip->i_hash_cache == NULL) |
Bob Peterson | dfe4d34 | 2011-10-27 12:16:06 -0400 | [diff] [blame] | 1545 | f_ra->start = 0; |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1546 | lp = gfs2_dir_get_hash_table(dip); |
| 1547 | if (IS_ERR(lp)) |
| 1548 | return PTR_ERR(lp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1549 | |
Bob Peterson | dfe4d34 | 2011-10-27 12:16:06 -0400 | [diff] [blame] | 1550 | gfs2_dir_readahead(inode, hsize, index, f_ra); |
| 1551 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1552 | while (index < hsize) { |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1553 | error = gfs2_dir_read_leaf(inode, ctx, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1554 | &copied, &depth, |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 1555 | be64_to_cpu(lp[index])); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1556 | if (error) |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1557 | break; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1558 | |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 1559 | len = BIT(dip->i_depth - depth); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1560 | index = (index & ~(len - 1)) + len; |
| 1561 | } |
| 1562 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1563 | if (error > 0) |
| 1564 | error = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1565 | return error; |
| 1566 | } |
| 1567 | |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1568 | int gfs2_dir_read(struct inode *inode, struct dir_context *ctx, |
| 1569 | struct file_ra_state *f_ra) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1570 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1571 | struct gfs2_inode *dip = GFS2_I(inode); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1572 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1573 | struct dirent_gather g; |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1574 | struct gfs2_dirent **darr, *dent; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1575 | struct buffer_head *dibh; |
| 1576 | int copied = 0; |
| 1577 | int error; |
| 1578 | |
Steven Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1579 | if (!dip->i_entries) |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1580 | return 0; |
| 1581 | |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1582 | if (dip->i_diskflags & GFS2_DIF_EXHASH) |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1583 | return dir_e_read(inode, ctx, f_ra); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1584 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1585 | if (!gfs2_is_stuffed(dip)) { |
| 1586 | gfs2_consist_inode(dip); |
| 1587 | return -EIO; |
| 1588 | } |
| 1589 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1590 | error = gfs2_meta_inode_buffer(dip, &dibh); |
| 1591 | if (error) |
| 1592 | return error; |
| 1593 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1594 | error = -ENOMEM; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1595 | /* 96 is max number of dirents which can be stuffed into an inode */ |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 1596 | darr = kmalloc_array(96, sizeof(struct gfs2_dirent *), GFP_NOFS); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1597 | if (darr) { |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1598 | g.pdent = (const struct gfs2_dirent **)darr; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1599 | 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 Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1606 | if (dip->i_entries != g.offset) { |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1607 | fs_warn(sdp, "Number of entries corrupt in dir %llu, " |
Steven Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1608 | "ip->i_entries (%u) != g.offset (%u)\n", |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1609 | (unsigned long long)dip->i_no_addr, |
Steven Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1610 | dip->i_entries, |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1611 | g.offset); |
Bob Peterson | d87d62b7 | 2017-05-26 08:28:56 -0500 | [diff] [blame] | 1612 | gfs2_consist_inode(dip); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1613 | error = -EIO; |
| 1614 | goto out; |
| 1615 | } |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1616 | gfs2_set_cookies(sdp, dibh, 0, darr, dip->i_entries); |
Al Viro | d81a8ef | 2013-05-16 14:14:48 -0400 | [diff] [blame] | 1617 | error = do_filldir_main(dip, ctx, darr, |
Benjamin Marzinski | 471f3db | 2015-12-01 08:46:55 -0600 | [diff] [blame] | 1618 | dip->i_entries, 0, &copied); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1619 | out: |
| 1620 | kfree(darr); |
| 1621 | } |
| 1622 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1623 | if (error > 0) |
| 1624 | error = 0; |
| 1625 | |
| 1626 | brelse(dibh); |
| 1627 | |
| 1628 | return error; |
| 1629 | } |
| 1630 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1631 | /** |
| 1632 | * gfs2_dir_search - Search a directory |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1633 | * @dir: The GFS2 directory inode |
Steven Whitehouse | 5a00f3c | 2013-06-11 13:45:29 +0100 | [diff] [blame] | 1634 | * @name: The name we are looking up |
| 1635 | * @fail_on_exist: Fail if the name exists rather than looking it up |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1636 | * |
| 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 Whitehouse | 5a00f3c | 2013-06-11 13:45:29 +0100 | [diff] [blame] | 1643 | struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name, |
| 1644 | bool fail_on_exist) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1645 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1646 | struct buffer_head *bh; |
| 1647 | struct gfs2_dirent *dent; |
Steven Whitehouse | 5a00f3c | 2013-06-11 13:45:29 +0100 | [diff] [blame] | 1648 | u64 addr, formal_ino; |
| 1649 | u16 dtype; |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1650 | |
| 1651 | dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh); |
| 1652 | if (dent) { |
Andreas Gruenbacher | c8d5770 | 2015-11-11 15:00:35 -0600 | [diff] [blame] | 1653 | struct inode *inode; |
| 1654 | u16 rahead; |
| 1655 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1656 | if (IS_ERR(dent)) |
David Howells | e231c2e | 2008-02-07 00:15:26 -0800 | [diff] [blame] | 1657 | return ERR_CAST(dent); |
Steven Whitehouse | 5a00f3c | 2013-06-11 13:45:29 +0100 | [diff] [blame] | 1658 | dtype = be16_to_cpu(dent->de_type); |
Andreas Gruenbacher | c8d5770 | 2015-11-11 15:00:35 -0600 | [diff] [blame] | 1659 | rahead = be16_to_cpu(dent->de_rahead); |
Steven Whitehouse | 5a00f3c | 2013-06-11 13:45:29 +0100 | [diff] [blame] | 1660 | addr = be64_to_cpu(dent->de_inum.no_addr); |
| 1661 | formal_ino = be64_to_cpu(dent->de_inum.no_formal_ino); |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1662 | brelse(bh); |
Steven Whitehouse | 5a00f3c | 2013-06-11 13:45:29 +0100 | [diff] [blame] | 1663 | if (fail_on_exist) |
| 1664 | return ERR_PTR(-EEXIST); |
Andreas Gruenbacher | 3ce37b2 | 2016-06-14 12:22:27 -0500 | [diff] [blame] | 1665 | inode = gfs2_inode_lookup(dir->i_sb, dtype, addr, formal_ino, |
| 1666 | GFS2_BLKST_FREE /* ignore */); |
Andreas Gruenbacher | c8d5770 | 2015-11-11 15:00:35 -0600 | [diff] [blame] | 1667 | if (!IS_ERR(inode)) |
| 1668 | GFS2_I(inode)->i_rahead = rahead; |
| 1669 | return inode; |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1670 | } |
| 1671 | return ERR_PTR(-ENOENT); |
| 1672 | } |
| 1673 | |
| 1674 | int 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 Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1680 | |
| 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 Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1685 | 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; |
| 1699 | out: |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1700 | brelse(bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1701 | } |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1702 | return ret; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1703 | } |
| 1704 | |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1705 | /** |
| 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 Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1724 | static int dir_new_leaf(struct inode *inode, const struct qstr *name) |
| 1725 | { |
| 1726 | struct buffer_head *bh, *obh; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1727 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1728 | struct gfs2_leaf *leaf, *oleaf; |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1729 | u32 dist = 1; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1730 | int error; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1731 | u32 index; |
| 1732 | u64 bn; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1733 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1734 | index = name->hash >> (32 - ip->i_depth); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1735 | error = get_first_leaf(ip, index, &obh); |
| 1736 | if (error) |
| 1737 | return error; |
| 1738 | do { |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1739 | dist++; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1740 | 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1749 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 1750 | gfs2_trans_add_meta(ip->i_gl, obh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1751 | |
| 1752 | leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth)); |
| 1753 | if (!leaf) { |
| 1754 | brelse(obh); |
| 1755 | return -ENOSPC; |
| 1756 | } |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1757 | leaf->lf_dist = cpu_to_be32(dist); |
Steven Whitehouse | 4d8012b | 2006-04-12 17:39:45 -0400 | [diff] [blame] | 1758 | oleaf->lf_next = cpu_to_be64(bh->b_blocknr); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1759 | brelse(bh); |
| 1760 | brelse(obh); |
| 1761 | |
| 1762 | error = gfs2_meta_inode_buffer(ip, &bh); |
| 1763 | if (error) |
| 1764 | return error; |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 1765 | gfs2_trans_add_meta(ip->i_gl, bh); |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 1766 | gfs2_add_inode_blocks(&ip->i_inode, 1); |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1767 | gfs2_dinode_out(ip, bh->b_data); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1768 | brelse(bh); |
| 1769 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1770 | } |
| 1771 | |
Steven Whitehouse | 44aaada | 2014-02-07 11:23:22 +0000 | [diff] [blame] | 1772 | static 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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1780 | /** |
| 1781 | * gfs2_dir_add - Add new filename into directory |
Steven Whitehouse | 2b47dad | 2014-01-06 12:49:43 +0000 | [diff] [blame] | 1782 | * @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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1792 | * |
| 1793 | * Returns: 0 on success, error code on failure |
| 1794 | */ |
| 1795 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1796 | int gfs2_dir_add(struct inode *inode, const struct qstr *name, |
Steven Whitehouse | 2b47dad | 2014-01-06 12:49:43 +0000 | [diff] [blame] | 1797 | const struct gfs2_inode *nip, struct gfs2_diradd *da) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1798 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1799 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | 2b47dad | 2014-01-06 12:49:43 +0000 | [diff] [blame] | 1800 | struct buffer_head *bh = da->bh; |
| 1801 | struct gfs2_dirent *dent = da->dent; |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 1802 | struct timespec64 tv; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1803 | struct gfs2_leaf *leaf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1804 | int error; |
| 1805 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1806 | while(1) { |
Steven Whitehouse | 2b47dad | 2014-01-06 12:49:43 +0000 | [diff] [blame] | 1807 | if (da->bh == NULL) { |
| 1808 | dent = gfs2_dirent_search(inode, name, |
| 1809 | gfs2_dirent_find_space, &bh); |
| 1810 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1811 | if (dent) { |
| 1812 | if (IS_ERR(dent)) |
| 1813 | return PTR_ERR(dent); |
| 1814 | dent = gfs2_init_dirent(inode, dent, name, bh); |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1815 | gfs2_inum_out(nip, dent); |
Steven Whitehouse | 3d6ecb7 | 2011-05-09 13:30:08 +0100 | [diff] [blame] | 1816 | dent->de_type = cpu_to_be16(IF2DT(nip->i_inode.i_mode)); |
Steven Whitehouse | 44aaada | 2014-02-07 11:23:22 +0000 | [diff] [blame] | 1817 | dent->de_rahead = cpu_to_be16(gfs2_inode_ra_len(nip)); |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 1818 | tv = current_time(&ip->i_inode); |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1819 | if (ip->i_diskflags & GFS2_DIF_EXHASH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1820 | leaf = (struct gfs2_leaf *)bh->b_data; |
Marcin Slusarz | bb16b34 | 2008-02-13 00:06:10 +0100 | [diff] [blame] | 1821 | be16_add_cpu(&leaf->lf_entries, 1); |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1822 | leaf->lf_nsec = cpu_to_be32(tv.tv_nsec); |
| 1823 | leaf->lf_sec = cpu_to_be64(tv.tv_sec); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1824 | } |
Steven Whitehouse | 2b47dad | 2014-01-06 12:49:43 +0000 | [diff] [blame] | 1825 | da->dent = NULL; |
| 1826 | da->bh = NULL; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1827 | brelse(bh); |
Steven Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1828 | ip->i_entries++; |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1829 | ip->i_inode.i_mtime = ip->i_inode.i_ctime = tv; |
Steven Whitehouse | 3d6ecb7 | 2011-05-09 13:30:08 +0100 | [diff] [blame] | 1830 | if (S_ISDIR(nip->i_inode.i_mode)) |
| 1831 | inc_nlink(&ip->i_inode); |
Bob Peterson | 343cd8f | 2012-11-12 13:04:54 -0500 | [diff] [blame] | 1832 | mark_inode_dirty(inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1833 | error = 0; |
| 1834 | break; |
| 1835 | } |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1836 | if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1837 | 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 Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1845 | if (error < 0) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1846 | break; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1847 | if (ip->i_depth < GFS2_DIR_MAX_DEPTH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1848 | error = dir_double_exhash(ip); |
| 1849 | if (error) |
| 1850 | break; |
| 1851 | error = dir_split_leaf(inode, name); |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1852 | if (error < 0) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1853 | break; |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1854 | if (error == 0) |
| 1855 | continue; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1856 | } |
| 1857 | error = dir_new_leaf(inode, name); |
| 1858 | if (!error) |
| 1859 | continue; |
| 1860 | error = -ENOSPC; |
| 1861 | break; |
| 1862 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1863 | return error; |
| 1864 | } |
| 1865 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1866 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1867 | /** |
| 1868 | * gfs2_dir_del - Delete a directory entry |
| 1869 | * @dip: The GFS2 inode |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1870 | * @dentry: The directory entry we want to delete |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1871 | * |
| 1872 | * Returns: 0 on success, error code on failure |
| 1873 | */ |
| 1874 | |
Steven Whitehouse | 855d23c | 2011-05-09 16:42:37 +0100 | [diff] [blame] | 1875 | int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1876 | { |
Steven Whitehouse | 855d23c | 2011-05-09 16:42:37 +0100 | [diff] [blame] | 1877 | const struct qstr *name = &dentry->d_name; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1878 | struct gfs2_dirent *dent, *prev = NULL; |
| 1879 | struct buffer_head *bh; |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 1880 | struct timespec64 tv = current_time(&dip->i_inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1881 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1882 | /* Returns _either_ the entry (if its first in block) or the |
| 1883 | previous entry otherwise */ |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1884 | dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1885 | 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 Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1894 | if (gfs2_dirent_find(dent, name, NULL) == 0) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1895 | 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 Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1900 | if (dip->i_diskflags & GFS2_DIF_EXHASH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1901 | 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 Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1906 | leaf->lf_nsec = cpu_to_be32(tv.tv_nsec); |
| 1907 | leaf->lf_sec = cpu_to_be64(tv.tv_sec); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1908 | } |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 1909 | brelse(bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1910 | |
Steven Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1911 | if (!dip->i_entries) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1912 | gfs2_consist_inode(dip); |
Steven Whitehouse | ad6203f2 | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1913 | dip->i_entries--; |
Steven Whitehouse | 01bcb0d | 2014-01-08 12:14:57 +0000 | [diff] [blame] | 1914 | dip->i_inode.i_mtime = dip->i_inode.i_ctime = tv; |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 1915 | if (d_is_dir(dentry)) |
Steven Whitehouse | 855d23c | 2011-05-09 16:42:37 +0100 | [diff] [blame] | 1916 | drop_nlink(&dip->i_inode); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1917 | mark_inode_dirty(&dip->i_inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1918 | |
Steven Whitehouse | ab9bbda | 2011-08-15 14:20:36 +0100 | [diff] [blame] | 1919 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1920 | } |
| 1921 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1922 | /** |
| 1923 | * gfs2_dir_mvino - Change inode number of directory entry |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1924 | * @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 Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1928 | * |
| 1929 | * This routine changes the inode number of a directory entry. It's used |
| 1930 | * by rename to change ".." when a directory is moved. |
| 1931 | * Assumes a glock is held on dvp. |
| 1932 | * |
| 1933 | * Returns: errno |
| 1934 | */ |
| 1935 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1936 | int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename, |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1937 | const struct gfs2_inode *nip, unsigned int new_type) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1938 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1939 | struct buffer_head *bh; |
| 1940 | struct gfs2_dirent *dent; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1941 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1942 | dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1943 | if (!dent) { |
| 1944 | gfs2_consist_inode(dip); |
| 1945 | return -EIO; |
| 1946 | } |
| 1947 | if (IS_ERR(dent)) |
| 1948 | return PTR_ERR(dent); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1949 | |
Steven Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 1950 | gfs2_trans_add_meta(dip->i_gl, bh); |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1951 | gfs2_inum_out(nip, dent); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1952 | dent->de_type = cpu_to_be16(new_type); |
Andreas Gruenbacher | 83998cc | 2018-02-28 12:48:53 -0700 | [diff] [blame] | 1953 | brelse(bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1954 | |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 1955 | dip->i_inode.i_mtime = dip->i_inode.i_ctime = current_time(&dip->i_inode); |
Andreas Gruenbacher | 83998cc | 2018-02-28 12:48:53 -0700 | [diff] [blame] | 1956 | mark_inode_dirty_sync(&dip->i_inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1957 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1958 | } |
| 1959 | |
| 1960 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1961 | * 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 Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 1966 | * @leaf_bh: buffer_head for the starting leaf |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 1967 | * @last_dealloc: 1 if this is the final dealloc for the leaf, else 0 |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1968 | * |
| 1969 | * Returns: errno |
| 1970 | */ |
| 1971 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1972 | static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len, |
Bob Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 1973 | u64 leaf_no, struct buffer_head *leaf_bh, |
| 1974 | int last_dealloc) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1975 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1976 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1977 | struct gfs2_leaf *tmp_leaf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1978 | struct gfs2_rgrp_list rlist; |
| 1979 | struct buffer_head *bh, *dibh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1980 | u64 blk, nblk; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1981 | unsigned int rg_blocks = 0, l_blocks = 0; |
| 1982 | char *ht; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1983 | unsigned int x, size = len * sizeof(u64); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1984 | int error; |
| 1985 | |
Bob Peterson | 5e2f7d6 | 2012-04-04 22:11:16 -0400 | [diff] [blame] | 1986 | error = gfs2_rindex_update(sdp); |
| 1987 | if (error) |
| 1988 | return error; |
| 1989 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1990 | memset(&rlist, 0, sizeof(struct gfs2_rgrp_list)); |
| 1991 | |
Joe Perches | 8be04b9 | 2013-06-19 12:15:53 -0700 | [diff] [blame] | 1992 | ht = kzalloc(size, GFP_NOFS | __GFP_NOWARN); |
Bob Peterson | e8830d8 | 2013-05-30 09:48:56 -0400 | [diff] [blame] | 1993 | if (ht == NULL) |
Christoph Hellwig | 88dca4c | 2020-06-01 21:51:40 -0700 | [diff] [blame] | 1994 | ht = __vmalloc(size, GFP_NOFS | __GFP_NOWARN | __GFP_ZERO); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1995 | if (!ht) |
| 1996 | return -ENOMEM; |
| 1997 | |
Eric W. Biederman | f4108a6 | 2013-01-31 17:49:26 -0800 | [diff] [blame] | 1998 | error = gfs2_quota_hold(dip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1999 | if (error) |
Bob Peterson | 5407e24 | 2012-05-18 09:28:23 -0400 | [diff] [blame] | 2000 | goto out; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2001 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2002 | /* Count the number of leaves */ |
Bob Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 2003 | bh = leaf_bh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2004 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2005 | for (blk = leaf_no; blk; blk = nblk) { |
Bob Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 2006 | if (blk != leaf_no) { |
| 2007 | error = get_leaf(dip, blk, &bh); |
| 2008 | if (error) |
| 2009 | goto out_rlist; |
| 2010 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2011 | tmp_leaf = (struct gfs2_leaf *)bh->b_data; |
| 2012 | nblk = be64_to_cpu(tmp_leaf->lf_next); |
Bob Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 2013 | if (blk != leaf_no) |
| 2014 | brelse(bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2015 | |
Steven Whitehouse | 70b0c36 | 2011-09-02 16:08:09 +0100 | [diff] [blame] | 2016 | gfs2_rlist_add(dip, &rlist, blk); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2017 | l_blocks++; |
| 2018 | } |
| 2019 | |
Bob Peterson | c3abc29 | 2018-10-04 00:06:23 +0100 | [diff] [blame] | 2020 | gfs2_rlist_alloc(&rlist); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2021 | |
| 2022 | for (x = 0; x < rlist.rl_rgrps; x++) { |
Andreas Gruenbacher | 6f6597ba | 2017-06-30 07:55:08 -0500 | [diff] [blame] | 2023 | struct gfs2_rgrpd *rgd = gfs2_glock2rgrp(rlist.rl_ghs[x].gh_gl); |
| 2024 | |
Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame] | 2025 | rg_blocks += rgd->rd_length; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2026 | } |
| 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 Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 2033 | rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) + |
Bob Peterson | cc44457 | 2020-01-03 08:48:43 -0600 | [diff] [blame] | 2034 | RES_DINODE + RES_STATFS + RES_QUOTA, RES_DINODE + |
| 2035 | l_blocks); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2036 | if (error) |
| 2037 | goto out_rg_gunlock; |
| 2038 | |
Bob Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 2039 | bh = leaf_bh; |
| 2040 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2041 | for (blk = leaf_no; blk; blk = nblk) { |
Andreas Gruenbacher | 0ddeded | 2018-10-04 15:36:02 +0100 | [diff] [blame] | 2042 | struct gfs2_rgrpd *rgd; |
| 2043 | |
Bob Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 2044 | if (blk != leaf_no) { |
| 2045 | error = get_leaf(dip, blk, &bh); |
| 2046 | if (error) |
| 2047 | goto out_end_trans; |
| 2048 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2049 | tmp_leaf = (struct gfs2_leaf *)bh->b_data; |
| 2050 | nblk = be64_to_cpu(tmp_leaf->lf_next); |
Bob Peterson | ec038c8 | 2011-03-22 13:55:23 -0400 | [diff] [blame] | 2051 | if (blk != leaf_no) |
| 2052 | brelse(bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2053 | |
Andreas Gruenbacher | 0ddeded | 2018-10-04 15:36:02 +0100 | [diff] [blame] | 2054 | rgd = gfs2_blk2rgrpd(sdp, blk, true); |
| 2055 | gfs2_free_meta(dip, rgd, blk, 1); |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 2056 | gfs2_add_inode_blocks(&dip->i_inode, -1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2057 | } |
| 2058 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 2059 | error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2060 | 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 Whitehouse | 350a9b0 | 2012-12-14 12:36:02 +0000 | [diff] [blame] | 2070 | gfs2_trans_add_meta(dip->i_gl, dibh); |
Bob Peterson | d24a7a4 | 2011-03-22 13:54:03 -0400 | [diff] [blame] | 2071 | /* 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 Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 2075 | gfs2_dinode_out(dip, dibh->b_data); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2076 | brelse(dibh); |
| 2077 | |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 2078 | out_end_trans: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2079 | gfs2_trans_end(sdp); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 2080 | out_rg_gunlock: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2081 | gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 2082 | out_rlist: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2083 | gfs2_rlist_free(&rlist); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2084 | gfs2_quota_unhold(dip); |
Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 2085 | out: |
Al Viro | 3cdcf63 | 2014-11-20 05:18:38 +0000 | [diff] [blame] | 2086 | kvfree(ht); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2087 | 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 | |
| 2100 | int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip) |
| 2101 | { |
Bob Peterson | 556bb17 | 2011-03-22 13:56:37 -0400 | [diff] [blame] | 2102 | struct buffer_head *bh; |
| 2103 | struct gfs2_leaf *leaf; |
| 2104 | u32 hsize, len; |
Bob Peterson | 556bb17 | 2011-03-22 13:56:37 -0400 | [diff] [blame] | 2105 | u32 index = 0, next_index; |
| 2106 | __be64 *lp; |
| 2107 | u64 leaf_no; |
| 2108 | int error = 0, last; |
| 2109 | |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 2110 | hsize = BIT(dip->i_depth); |
Bob Peterson | 556bb17 | 2011-03-22 13:56:37 -0400 | [diff] [blame] | 2111 | |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 2112 | lp = gfs2_dir_get_hash_table(dip); |
| 2113 | if (IS_ERR(lp)) |
| 2114 | return PTR_ERR(lp); |
Bob Peterson | 556bb17 | 2011-03-22 13:56:37 -0400 | [diff] [blame] | 2115 | |
| 2116 | while (index < hsize) { |
Steven Whitehouse | 17d539f | 2011-06-15 10:29:37 +0100 | [diff] [blame] | 2117 | leaf_no = be64_to_cpu(lp[index]); |
Bob Peterson | 556bb17 | 2011-03-22 13:56:37 -0400 | [diff] [blame] | 2118 | 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 Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 2123 | len = BIT(dip->i_depth - be16_to_cpu(leaf->lf_depth)); |
Bob Peterson | 556bb17 | 2011-03-22 13:56:37 -0400 | [diff] [blame] | 2124 | |
| 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 | |
| 2142 | out: |
Bob Peterson | 556bb17 | 2011-03-22 13:56:37 -0400 | [diff] [blame] | 2143 | |
| 2144 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2145 | } |
| 2146 | |
| 2147 | /** |
| 2148 | * gfs2_diradd_alloc_required - find if adding entry will require an allocation |
Bob Peterson | 3ae3a7d | 2021-03-22 08:38:57 -0400 | [diff] [blame] | 2149 | * @inode: the directory inode being written to |
| 2150 | * @name: the filename that's going to be added |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2151 | * @da: The structure to return dir alloc info |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2152 | * |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2153 | * Returns: 0 if ok, -ve on error |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2154 | */ |
| 2155 | |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2156 | int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name, |
| 2157 | struct gfs2_diradd *da) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2158 | { |
Steven Whitehouse | 22b5a6c | 2014-01-08 11:05:29 +0000 | [diff] [blame] | 2159 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2160 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
Steven Whitehouse | 22b5a6c | 2014-01-08 11:05:29 +0000 | [diff] [blame] | 2161 | const unsigned int extra = sizeof(struct gfs2_dinode) - sizeof(struct gfs2_leaf); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2162 | struct gfs2_dirent *dent; |
| 2163 | struct buffer_head *bh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2164 | |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2165 | da->nr_blocks = 0; |
Steven Whitehouse | 2b47dad | 2014-01-06 12:49:43 +0000 | [diff] [blame] | 2166 | da->bh = NULL; |
| 2167 | da->dent = NULL; |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2168 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2169 | dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh); |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 2170 | if (!dent) { |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2171 | da->nr_blocks = sdp->sd_max_dirres; |
Steven Whitehouse | 22b5a6c | 2014-01-08 11:05:29 +0000 | [diff] [blame] | 2172 | if (!(ip->i_diskflags & GFS2_DIF_EXHASH) && |
| 2173 | (GFS2_DIRENT_SIZE(name->len) < extra)) |
| 2174 | da->nr_blocks = 1; |
Steven Whitehouse | 3c1c0ae | 2014-01-06 11:28:41 +0000 | [diff] [blame] | 2175 | return 0; |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 2176 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2177 | if (IS_ERR(dent)) |
| 2178 | return PTR_ERR(dent); |
Bob Peterson | 19aeb5a6 | 2014-09-29 08:52:04 -0400 | [diff] [blame] | 2179 | |
| 2180 | if (da->save_loc) { |
| 2181 | da->bh = bh; |
| 2182 | da->dent = dent; |
| 2183 | } else { |
| 2184 | brelse(bh); |
| 2185 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2186 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2187 | } |
| 2188 | |