David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 | * |
| 5 | * This copyrighted material is made available to anyone wishing to use, |
| 6 | * modify, copy, or redistribute it subject to the terms and conditions |
Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 | * of the GNU General Public License version 2. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | /* |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 11 | * Implements Extendible Hashing as described in: |
| 12 | * "Extendible Hashing" by Fagin, et al in |
| 13 | * __ACM Trans. on Database Systems__, Sept 1979. |
| 14 | * |
| 15 | * |
| 16 | * Here's the layout of dirents which is essentially the same as that of ext2 |
| 17 | * within a single block. The field de_name_len is the number of bytes |
| 18 | * actually required for the name (no null terminator). The field de_rec_len |
| 19 | * is the number of bytes allocated to the dirent. The offset of the next |
| 20 | * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is |
| 21 | * deleted, the preceding dirent inherits its allocated space, ie |
| 22 | * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained |
| 23 | * by adding de_rec_len to the current dirent, this essentially causes the |
| 24 | * deleted dirent to get jumped over when iterating through all the dirents. |
| 25 | * |
| 26 | * When deleting the first dirent in a block, there is no previous dirent so |
| 27 | * the field de_ino is set to zero to designate it as deleted. When allocating |
| 28 | * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the |
| 29 | * first dirent has (de_ino == 0) and de_rec_len is large enough, this first |
| 30 | * dirent is allocated. Otherwise it must go through all the 'used' dirents |
| 31 | * searching for one in which the amount of total space minus the amount of |
| 32 | * used space will provide enough space for the new dirent. |
| 33 | * |
| 34 | * There are two types of blocks in which dirents reside. In a stuffed dinode, |
| 35 | * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of |
| 36 | * the block. In leaves, they begin at offset sizeof(struct gfs2_leaf) from the |
| 37 | * beginning of the leaf block. The dirents reside in leaves when |
| 38 | * |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 39 | * dip->i_diskflags & GFS2_DIF_EXHASH is true |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 40 | * |
| 41 | * Otherwise, the dirents are "linear", within a single stuffed dinode block. |
| 42 | * |
| 43 | * When the dirents are in leaves, the actual contents of the directory file are |
| 44 | * used as an array of 64-bit block pointers pointing to the leaf blocks. The |
| 45 | * dirents are NOT in the directory file itself. There can be more than one |
| 46 | * block pointer in the array that points to the same leaf. In fact, when a |
| 47 | * directory is first converted from linear to exhash, all of the pointers |
| 48 | * point to the same leaf. |
| 49 | * |
| 50 | * When a leaf is completely full, the size of the hash table can be |
| 51 | * doubled unless it is already at the maximum size which is hard coded into |
| 52 | * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list, |
| 53 | * but never before the maximum hash table size has been reached. |
| 54 | */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 55 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 56 | #include <linux/slab.h> |
| 57 | #include <linux/spinlock.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 58 | #include <linux/buffer_head.h> |
| 59 | #include <linux/sort.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 60 | #include <linux/gfs2_ondisk.h> |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 61 | #include <linux/crc32.h> |
Steven Whitehouse | fe1bded | 2006-04-18 10:09:15 -0400 | [diff] [blame] | 62 | #include <linux/vmalloc.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 | |
| 76 | #define IS_LEAF 1 /* Hashed (leaf) directory */ |
| 77 | #define IS_DINODE 2 /* Linear (stuffed dinode block) directory */ |
| 78 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 79 | #define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1) |
| 80 | #define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1)) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 81 | |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 82 | typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len, |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 83 | u64 leaf_no, void *data); |
| 84 | typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent, |
| 85 | const struct qstr *name, void *opaque); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 86 | |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 87 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 88 | int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block, |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 89 | struct buffer_head **bhp) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 90 | { |
| 91 | struct buffer_head *bh; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 92 | |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 93 | bh = gfs2_meta_new(ip->i_gl, block); |
| 94 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
| 95 | gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD); |
| 96 | gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header)); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 97 | *bhp = bh; |
| 98 | return 0; |
| 99 | } |
| 100 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 101 | 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] | 102 | struct buffer_head **bhp) |
| 103 | { |
| 104 | struct buffer_head *bh; |
| 105 | int error; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 106 | |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 107 | error = gfs2_meta_read(ip->i_gl, block, DIO_WAIT, &bh); |
Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 108 | if (error) |
| 109 | return error; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 110 | 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] | 111 | brelse(bh); |
| 112 | return -EIO; |
| 113 | } |
| 114 | *bhp = bh; |
| 115 | return 0; |
| 116 | } |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 117 | |
| 118 | static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf, |
| 119 | unsigned int offset, unsigned int size) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 120 | { |
| 121 | struct buffer_head *dibh; |
| 122 | int error; |
| 123 | |
| 124 | error = gfs2_meta_inode_buffer(ip, &dibh); |
| 125 | if (error) |
| 126 | return error; |
| 127 | |
| 128 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 129 | memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size); |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 130 | if (ip->i_disksize < offset + size) |
| 131 | ip->i_disksize = offset + size; |
Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 132 | ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 133 | gfs2_dinode_out(ip, dibh->b_data); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 134 | |
| 135 | brelse(dibh); |
| 136 | |
| 137 | return size; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | |
| 142 | /** |
| 143 | * gfs2_dir_write_data - Write directory information to the inode |
| 144 | * @ip: The GFS2 inode |
| 145 | * @buf: The buffer containing information to be written |
| 146 | * @offset: The file offset to start writing at |
| 147 | * @size: The amount of data to write |
| 148 | * |
| 149 | * Returns: The number of bytes correctly written or error code |
| 150 | */ |
| 151 | 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] | 152 | u64 offset, unsigned int size) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 153 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 154 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 155 | struct buffer_head *dibh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 156 | u64 lblock, dblock; |
| 157 | u32 extlen = 0; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 158 | unsigned int o; |
| 159 | int copied = 0; |
| 160 | int error = 0; |
Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 161 | int new = 0; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 162 | |
| 163 | if (!size) |
| 164 | return 0; |
| 165 | |
| 166 | if (gfs2_is_stuffed(ip) && |
| 167 | offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) |
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)) { |
Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 175 | error = gfs2_unstuff_dinode(ip, NULL); |
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) { |
| 192 | new = 1; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 193 | error = gfs2_extent_map(&ip->i_inode, lblock, &new, |
Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 194 | &dblock, &extlen); |
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 | |
| 210 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
| 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 | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 228 | if (ip->i_disksize < offset + copied) |
| 229 | ip->i_disksize = offset + copied; |
Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 230 | ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 231 | |
| 232 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); |
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 | |
| 243 | static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf, |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 244 | u64 offset, 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) { |
| 251 | offset += sizeof(struct gfs2_dinode); |
| 252 | memcpy(buf, dibh->b_data + offset, size); |
| 253 | brelse(dibh); |
| 254 | } |
| 255 | |
| 256 | return (error) ? error : size; |
| 257 | } |
| 258 | |
| 259 | |
| 260 | /** |
| 261 | * gfs2_dir_read_data - Read a data from a directory inode |
| 262 | * @ip: The GFS2 Inode |
| 263 | * @buf: The buffer to place result into |
| 264 | * @offset: File offset to begin jdata_readng from |
| 265 | * @size: Amount of data to transfer |
| 266 | * |
| 267 | * Returns: The amount of data actually copied or the error |
| 268 | */ |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 269 | static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, u64 offset, |
| 270 | unsigned int size, unsigned ra) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 271 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 272 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 273 | u64 lblock, dblock; |
| 274 | u32 extlen = 0; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 275 | unsigned int o; |
| 276 | int copied = 0; |
| 277 | int error = 0; |
| 278 | |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 279 | if (offset >= ip->i_disksize) |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 280 | return 0; |
| 281 | |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 282 | if (offset + size > ip->i_disksize) |
| 283 | size = ip->i_disksize - offset; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 284 | |
| 285 | if (!size) |
| 286 | return 0; |
| 287 | |
| 288 | if (gfs2_is_stuffed(ip)) |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 289 | return gfs2_dir_read_stuffed(ip, buf, offset, size); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 290 | |
| 291 | if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip))) |
| 292 | return -EINVAL; |
| 293 | |
| 294 | lblock = offset; |
| 295 | o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header); |
| 296 | |
| 297 | while (copied < size) { |
| 298 | unsigned int amount; |
| 299 | struct buffer_head *bh; |
| 300 | int new; |
| 301 | |
| 302 | amount = size - copied; |
| 303 | if (amount > sdp->sd_sb.sb_bsize - o) |
| 304 | amount = sdp->sd_sb.sb_bsize - o; |
| 305 | |
| 306 | if (!extlen) { |
| 307 | new = 0; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 308 | error = gfs2_extent_map(&ip->i_inode, lblock, &new, |
Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 309 | &dblock, &extlen); |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 310 | if (error || !dblock) |
| 311 | goto fail; |
| 312 | BUG_ON(extlen < 1); |
| 313 | if (!ra) |
| 314 | extlen = 1; |
| 315 | bh = gfs2_meta_ra(ip->i_gl, dblock, extlen); |
Adrian Bunk | b7d8ac3 | 2006-10-19 16:02:07 +0200 | [diff] [blame] | 316 | } else { |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 317 | error = gfs2_meta_read(ip->i_gl, dblock, DIO_WAIT, &bh); |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 318 | if (error) |
| 319 | goto fail; |
| 320 | } |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 321 | error = gfs2_metatype_check(sdp, bh, GFS2_METATYPE_JD); |
| 322 | if (error) { |
| 323 | brelse(bh); |
| 324 | goto fail; |
| 325 | } |
| 326 | dblock++; |
| 327 | extlen--; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 328 | memcpy(buf, bh->b_data + o, amount); |
| 329 | brelse(bh); |
Steven Whitehouse | 899bb26 | 2006-08-01 15:28:57 -0400 | [diff] [blame] | 330 | buf += amount; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 331 | copied += amount; |
| 332 | lblock++; |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 333 | o = sizeof(struct gfs2_meta_header); |
| 334 | } |
| 335 | |
| 336 | return copied; |
| 337 | fail: |
| 338 | return (copied) ? copied : error; |
| 339 | } |
| 340 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 341 | static inline int gfs2_dirent_sentinel(const struct gfs2_dirent *dent) |
| 342 | { |
| 343 | return dent->de_inum.no_addr == 0 || dent->de_inum.no_formal_ino == 0; |
| 344 | } |
| 345 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 346 | static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent, |
| 347 | const struct qstr *name, int ret) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 348 | { |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 349 | if (!gfs2_dirent_sentinel(dent) && |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 350 | be32_to_cpu(dent->de_hash) == name->hash && |
| 351 | be16_to_cpu(dent->de_name_len) == name->len && |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 352 | memcmp(dent+1, name->name, name->len) == 0) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 353 | return ret; |
| 354 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 357 | static int gfs2_dirent_find(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 358 | const struct qstr *name, |
| 359 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 360 | { |
| 361 | return __gfs2_dirent_find(dent, name, 1); |
| 362 | } |
| 363 | |
| 364 | static int gfs2_dirent_prev(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 365 | const struct qstr *name, |
| 366 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 367 | { |
| 368 | return __gfs2_dirent_find(dent, name, 2); |
| 369 | } |
| 370 | |
| 371 | /* |
| 372 | * name->name holds ptr to start of block. |
| 373 | * name->len holds size of block. |
| 374 | */ |
| 375 | static int gfs2_dirent_last(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 376 | const struct qstr *name, |
| 377 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 378 | { |
| 379 | const char *start = name->name; |
| 380 | const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len); |
| 381 | if (name->len == (end - start)) |
| 382 | return 1; |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | static int gfs2_dirent_find_space(const struct gfs2_dirent *dent, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 387 | const struct qstr *name, |
| 388 | void *opaque) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 389 | { |
| 390 | unsigned required = GFS2_DIRENT_SIZE(name->len); |
| 391 | unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len)); |
| 392 | unsigned totlen = be16_to_cpu(dent->de_rec_len); |
| 393 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 394 | if (gfs2_dirent_sentinel(dent)) |
Bob Peterson | 728a756 | 2010-07-14 18:12:26 -0400 | [diff] [blame] | 395 | actual = 0; |
Jan Engelhardt | c539212 | 2006-09-05 14:30:40 +0200 | [diff] [blame] | 396 | if (totlen - actual >= required) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 397 | return 1; |
| 398 | return 0; |
| 399 | } |
| 400 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 401 | struct dirent_gather { |
| 402 | const struct gfs2_dirent **pdent; |
| 403 | unsigned offset; |
| 404 | }; |
| 405 | |
| 406 | static int gfs2_dirent_gather(const struct gfs2_dirent *dent, |
| 407 | const struct qstr *name, |
| 408 | void *opaque) |
| 409 | { |
| 410 | struct dirent_gather *g = opaque; |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 411 | if (!gfs2_dirent_sentinel(dent)) { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 412 | g->pdent[g->offset++] = dent; |
| 413 | } |
| 414 | return 0; |
| 415 | } |
| 416 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 417 | /* |
| 418 | * Other possible things to check: |
| 419 | * - Inode located within filesystem size (and on valid block) |
| 420 | * - Valid directory entry type |
| 421 | * Not sure how heavy-weight we want to make this... could also check |
| 422 | * hash is correct for example, but that would take a lot of extra time. |
| 423 | * For now the most important thing is to check that the various sizes |
| 424 | * are correct. |
| 425 | */ |
| 426 | static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset, |
| 427 | unsigned int size, unsigned int len, int first) |
| 428 | { |
| 429 | const char *msg = "gfs2_dirent too small"; |
| 430 | if (unlikely(size < sizeof(struct gfs2_dirent))) |
| 431 | goto error; |
| 432 | msg = "gfs2_dirent misaligned"; |
| 433 | if (unlikely(offset & 0x7)) |
| 434 | goto error; |
| 435 | msg = "gfs2_dirent points beyond end of block"; |
| 436 | if (unlikely(offset + size > len)) |
| 437 | goto error; |
| 438 | msg = "zero inode number"; |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 439 | if (unlikely(!first && gfs2_dirent_sentinel(dent))) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 440 | goto error; |
| 441 | msg = "name length is greater than space in dirent"; |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 442 | if (!gfs2_dirent_sentinel(dent) && |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 443 | unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) > |
| 444 | size)) |
| 445 | goto error; |
| 446 | return 0; |
| 447 | error: |
| 448 | printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg, |
| 449 | first ? "first in block" : "not first in block"); |
| 450 | return -EIO; |
| 451 | } |
| 452 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 453 | static int gfs2_dirent_offset(const void *buf) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 454 | { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 455 | const struct gfs2_meta_header *h = buf; |
| 456 | int offset; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 457 | |
| 458 | BUG_ON(buf == NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 459 | |
Steven Whitehouse | e3167de | 2006-03-30 15:46:23 -0500 | [diff] [blame] | 460 | switch(be32_to_cpu(h->mh_type)) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 461 | case GFS2_METATYPE_LF: |
| 462 | offset = sizeof(struct gfs2_leaf); |
| 463 | break; |
| 464 | case GFS2_METATYPE_DI: |
| 465 | offset = sizeof(struct gfs2_dinode); |
| 466 | break; |
| 467 | default: |
| 468 | goto wrong_type; |
| 469 | } |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 470 | return offset; |
| 471 | wrong_type: |
| 472 | printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n", |
Steven Whitehouse | e3167de | 2006-03-30 15:46:23 -0500 | [diff] [blame] | 473 | be32_to_cpu(h->mh_type)); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 474 | return -1; |
| 475 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 476 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 477 | static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 478 | unsigned int len, gfs2_dscan_t scan, |
| 479 | const struct qstr *name, |
| 480 | void *opaque) |
| 481 | { |
| 482 | struct gfs2_dirent *dent, *prev; |
| 483 | unsigned offset; |
| 484 | unsigned size; |
| 485 | int ret = 0; |
| 486 | |
| 487 | ret = gfs2_dirent_offset(buf); |
| 488 | if (ret < 0) |
| 489 | goto consist_inode; |
| 490 | |
| 491 | offset = ret; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 492 | prev = NULL; |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 493 | dent = buf + offset; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 494 | size = be16_to_cpu(dent->de_rec_len); |
| 495 | if (gfs2_check_dirent(dent, offset, size, len, 1)) |
| 496 | goto consist_inode; |
| 497 | do { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 498 | ret = scan(dent, name, opaque); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 499 | if (ret) |
| 500 | break; |
| 501 | offset += size; |
| 502 | if (offset == len) |
| 503 | break; |
| 504 | prev = dent; |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 505 | dent = buf + offset; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 506 | size = be16_to_cpu(dent->de_rec_len); |
| 507 | if (gfs2_check_dirent(dent, offset, size, len, 0)) |
| 508 | goto consist_inode; |
| 509 | } while(1); |
| 510 | |
| 511 | switch(ret) { |
| 512 | case 0: |
| 513 | return NULL; |
| 514 | case 1: |
| 515 | return dent; |
| 516 | case 2: |
| 517 | return prev ? prev : dent; |
| 518 | default: |
| 519 | BUG_ON(ret > 0); |
| 520 | return ERR_PTR(ret); |
| 521 | } |
| 522 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 523 | consist_inode: |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 524 | gfs2_consist_inode(GFS2_I(inode)); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 525 | return ERR_PTR(-EIO); |
| 526 | } |
| 527 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 528 | static int dirent_check_reclen(struct gfs2_inode *dip, |
| 529 | const struct gfs2_dirent *d, const void *end_p) |
| 530 | { |
| 531 | const void *ptr = d; |
| 532 | u16 rec_len = be16_to_cpu(d->de_rec_len); |
| 533 | |
| 534 | if (unlikely(rec_len < sizeof(struct gfs2_dirent))) |
| 535 | goto broken; |
| 536 | ptr += rec_len; |
| 537 | if (ptr < end_p) |
| 538 | return rec_len; |
| 539 | if (ptr == end_p) |
| 540 | return -ENOENT; |
| 541 | broken: |
| 542 | gfs2_consist_inode(dip); |
| 543 | return -EIO; |
| 544 | } |
| 545 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 546 | /** |
| 547 | * dirent_next - Next dirent |
| 548 | * @dip: the directory |
| 549 | * @bh: The buffer |
| 550 | * @dent: Pointer to list of dirents |
| 551 | * |
| 552 | * Returns: 0 on success, error code otherwise |
| 553 | */ |
| 554 | |
| 555 | static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh, |
| 556 | struct gfs2_dirent **dent) |
| 557 | { |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 558 | struct gfs2_dirent *cur = *dent, *tmp; |
| 559 | char *bh_end = bh->b_data + bh->b_size; |
| 560 | int ret; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 561 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 562 | ret = dirent_check_reclen(dip, cur, bh_end); |
| 563 | if (ret < 0) |
| 564 | return ret; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 565 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 566 | tmp = (void *)cur + ret; |
| 567 | ret = dirent_check_reclen(dip, tmp, bh_end); |
| 568 | if (ret == -EIO) |
| 569 | return ret; |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 570 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 571 | /* Only the first dent could ever have de_inum.no_addr == 0 */ |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 572 | if (gfs2_dirent_sentinel(tmp)) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 573 | gfs2_consist_inode(dip); |
| 574 | return -EIO; |
| 575 | } |
| 576 | |
| 577 | *dent = tmp; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 578 | return 0; |
| 579 | } |
| 580 | |
| 581 | /** |
| 582 | * dirent_del - Delete a dirent |
| 583 | * @dip: The GFS2 inode |
| 584 | * @bh: The buffer |
| 585 | * @prev: The previous dirent |
| 586 | * @cur: The current dirent |
| 587 | * |
| 588 | */ |
| 589 | |
| 590 | static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh, |
| 591 | struct gfs2_dirent *prev, struct gfs2_dirent *cur) |
| 592 | { |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 593 | u16 cur_rec_len, prev_rec_len; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 594 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 595 | if (gfs2_dirent_sentinel(cur)) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 596 | gfs2_consist_inode(dip); |
| 597 | return; |
| 598 | } |
| 599 | |
Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 600 | gfs2_trans_add_bh(dip->i_gl, bh, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 601 | |
| 602 | /* If there is no prev entry, this is the first entry in the block. |
| 603 | The de_rec_len is already as big as it needs to be. Just zero |
| 604 | out the inode number and return. */ |
| 605 | |
| 606 | if (!prev) { |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 607 | cur->de_inum.no_addr = 0; |
| 608 | cur->de_inum.no_formal_ino = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 609 | return; |
| 610 | } |
| 611 | |
| 612 | /* Combine this dentry with the previous one. */ |
| 613 | |
Steven Whitehouse | fc69d0d | 2006-02-13 16:21:47 +0000 | [diff] [blame] | 614 | prev_rec_len = be16_to_cpu(prev->de_rec_len); |
| 615 | cur_rec_len = be16_to_cpu(cur->de_rec_len); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 616 | |
| 617 | if ((char *)prev + prev_rec_len != (char *)cur) |
| 618 | gfs2_consist_inode(dip); |
| 619 | if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size) |
| 620 | gfs2_consist_inode(dip); |
| 621 | |
| 622 | prev_rec_len += cur_rec_len; |
Steven Whitehouse | fc69d0d | 2006-02-13 16:21:47 +0000 | [diff] [blame] | 623 | prev->de_rec_len = cpu_to_be16(prev_rec_len); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 624 | } |
| 625 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 626 | /* |
| 627 | * Takes a dent from which to grab space as an argument. Returns the |
| 628 | * newly created dent. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 629 | */ |
Adrian Bunk | 08bc2db | 2006-04-28 10:59:12 -0400 | [diff] [blame] | 630 | static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode, |
| 631 | struct gfs2_dirent *dent, |
| 632 | const struct qstr *name, |
| 633 | struct buffer_head *bh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 634 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 635 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 636 | struct gfs2_dirent *ndent; |
| 637 | unsigned offset = 0, totlen; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 638 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 639 | if (!gfs2_dirent_sentinel(dent)) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 640 | offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len)); |
| 641 | totlen = be16_to_cpu(dent->de_rec_len); |
| 642 | BUG_ON(offset + name->len > totlen); |
| 643 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
| 644 | ndent = (struct gfs2_dirent *)((char *)dent + offset); |
| 645 | dent->de_rec_len = cpu_to_be16(offset); |
| 646 | gfs2_qstr2dirent(name, totlen - offset, ndent); |
| 647 | return ndent; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 648 | } |
| 649 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 650 | static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode, |
| 651 | struct buffer_head *bh, |
| 652 | const struct qstr *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 653 | { |
| 654 | struct gfs2_dirent *dent; |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 655 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 656 | gfs2_dirent_find_space, name, NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 657 | if (!dent || IS_ERR(dent)) |
| 658 | return dent; |
| 659 | return gfs2_init_dirent(inode, dent, name, bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 662 | static int get_leaf(struct gfs2_inode *dip, u64 leaf_no, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 663 | struct buffer_head **bhp) |
| 664 | { |
| 665 | int error; |
| 666 | |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 667 | error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 668 | if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) { |
| 669 | /* printk(KERN_INFO "block num=%llu\n", leaf_no); */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 670 | error = -EIO; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 671 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 672 | |
| 673 | return error; |
| 674 | } |
| 675 | |
| 676 | /** |
| 677 | * get_leaf_nr - Get a leaf number associated with the index |
| 678 | * @dip: The GFS2 inode |
| 679 | * @index: |
| 680 | * @leaf_out: |
| 681 | * |
| 682 | * Returns: 0 on success, error code otherwise |
| 683 | */ |
| 684 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 685 | static int get_leaf_nr(struct gfs2_inode *dip, u32 index, |
| 686 | u64 *leaf_out) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 687 | { |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 688 | __be64 leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 689 | int error; |
| 690 | |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 691 | error = gfs2_dir_read_data(dip, (char *)&leaf_no, |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 692 | index * sizeof(__be64), |
| 693 | sizeof(__be64), 0); |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 694 | if (error != sizeof(u64)) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 695 | return (error < 0) ? error : -EIO; |
| 696 | |
| 697 | *leaf_out = be64_to_cpu(leaf_no); |
| 698 | |
| 699 | return 0; |
| 700 | } |
| 701 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 702 | static int get_first_leaf(struct gfs2_inode *dip, u32 index, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 703 | struct buffer_head **bh_out) |
| 704 | { |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 705 | u64 leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 706 | int error; |
| 707 | |
| 708 | error = get_leaf_nr(dip, index, &leaf_no); |
| 709 | if (!error) |
| 710 | error = get_leaf(dip, leaf_no, bh_out); |
| 711 | |
| 712 | return error; |
| 713 | } |
| 714 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 715 | static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode, |
| 716 | const struct qstr *name, |
| 717 | gfs2_dscan_t scan, |
| 718 | struct buffer_head **pbh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 719 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 720 | struct buffer_head *bh; |
| 721 | struct gfs2_dirent *dent; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 722 | struct gfs2_inode *ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 723 | int error; |
| 724 | |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 725 | if (ip->i_diskflags & GFS2_DIF_EXHASH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 726 | struct gfs2_leaf *leaf; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 727 | unsigned hsize = 1 << ip->i_depth; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 728 | unsigned index; |
| 729 | u64 ln; |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 730 | if (hsize * sizeof(u64) != ip->i_disksize) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 731 | gfs2_consist_inode(ip); |
| 732 | return ERR_PTR(-EIO); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 733 | } |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 734 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 735 | index = name->hash >> (32 - ip->i_depth); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 736 | error = get_first_leaf(ip, index, &bh); |
| 737 | if (error) |
| 738 | return ERR_PTR(error); |
| 739 | do { |
| 740 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 741 | scan, name, NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 742 | if (dent) |
| 743 | goto got_dent; |
| 744 | leaf = (struct gfs2_leaf *)bh->b_data; |
| 745 | ln = be64_to_cpu(leaf->lf_next); |
Steven Whitehouse | f4154ea | 2006-04-11 14:49:06 -0400 | [diff] [blame] | 746 | brelse(bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 747 | if (!ln) |
| 748 | break; |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 749 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 750 | error = get_leaf(ip, ln, &bh); |
| 751 | } while(!error); |
| 752 | |
| 753 | return error ? ERR_PTR(error) : NULL; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 754 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 755 | |
Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 756 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 757 | error = gfs2_meta_inode_buffer(ip, &bh); |
| 758 | if (error) |
| 759 | return ERR_PTR(error); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 760 | 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] | 761 | got_dent: |
Steven Whitehouse | f4154ea | 2006-04-11 14:49:06 -0400 | [diff] [blame] | 762 | if (unlikely(dent == NULL || IS_ERR(dent))) { |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 763 | brelse(bh); |
| 764 | bh = NULL; |
| 765 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 766 | *pbh = bh; |
| 767 | return dent; |
| 768 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 769 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 770 | static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth) |
| 771 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 772 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | b45e41d | 2008-02-06 10:11:15 +0000 | [diff] [blame] | 773 | unsigned int n = 1; |
Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 774 | u64 bn; |
| 775 | int error; |
| 776 | struct buffer_head *bh; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 777 | struct gfs2_leaf *leaf; |
| 778 | struct gfs2_dirent *dent; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 779 | struct qstr name = { .name = "", .len = 0, .hash = 0 }; |
Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 780 | |
| 781 | error = gfs2_alloc_block(ip, &bn, &n); |
| 782 | if (error) |
| 783 | return NULL; |
| 784 | bh = gfs2_meta_new(ip->i_gl, bn); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 785 | if (!bh) |
| 786 | return NULL; |
Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 787 | |
Steven Whitehouse | 5731be5 | 2008-02-01 13:16:55 +0000 | [diff] [blame] | 788 | gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, 1); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 789 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
| 790 | gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF); |
| 791 | leaf = (struct gfs2_leaf *)bh->b_data; |
| 792 | leaf->lf_depth = cpu_to_be16(depth); |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 793 | leaf->lf_entries = 0; |
Al Viro | a2d7d02 | 2006-10-14 16:49:30 +0100 | [diff] [blame] | 794 | leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE); |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 795 | leaf->lf_next = 0; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 796 | memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved)); |
| 797 | dent = (struct gfs2_dirent *)(leaf+1); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 798 | gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 799 | *pbh = bh; |
| 800 | return leaf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | /** |
| 804 | * dir_make_exhash - Convert a stuffed directory into an ExHash directory |
| 805 | * @dip: The GFS2 inode |
| 806 | * |
| 807 | * Returns: 0 on success, error code otherwise |
| 808 | */ |
| 809 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 810 | static int dir_make_exhash(struct inode *inode) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 811 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 812 | struct gfs2_inode *dip = GFS2_I(inode); |
| 813 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 814 | struct gfs2_dirent *dent; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 815 | struct qstr args; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 816 | struct buffer_head *bh, *dibh; |
| 817 | struct gfs2_leaf *leaf; |
| 818 | int y; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 819 | u32 x; |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 820 | __be64 *lp; |
| 821 | u64 bn; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 822 | int error; |
| 823 | |
| 824 | error = gfs2_meta_inode_buffer(dip, &dibh); |
| 825 | if (error) |
| 826 | return error; |
| 827 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 828 | /* Turn over a new leaf */ |
| 829 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 830 | leaf = new_leaf(inode, &bh, 0); |
| 831 | if (!leaf) |
| 832 | return -ENOSPC; |
| 833 | bn = bh->b_blocknr; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 834 | |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 835 | gfs2_assert(sdp, dip->i_entries < (1 << 16)); |
| 836 | leaf->lf_entries = cpu_to_be16(dip->i_entries); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 837 | |
| 838 | /* Copy dirents */ |
| 839 | |
| 840 | gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh, |
| 841 | sizeof(struct gfs2_dinode)); |
| 842 | |
| 843 | /* Find last entry */ |
| 844 | |
| 845 | x = 0; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 846 | args.len = bh->b_size - sizeof(struct gfs2_dinode) + |
| 847 | sizeof(struct gfs2_leaf); |
| 848 | args.name = bh->b_data; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 849 | 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] | 850 | gfs2_dirent_last, &args, NULL); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 851 | if (!dent) { |
| 852 | brelse(bh); |
| 853 | brelse(dibh); |
| 854 | return -EIO; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 855 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 856 | if (IS_ERR(dent)) { |
| 857 | brelse(bh); |
| 858 | brelse(dibh); |
| 859 | return PTR_ERR(dent); |
| 860 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 861 | |
| 862 | /* Adjust the last dirent's record length |
| 863 | (Remember that dent still points to the last entry.) */ |
| 864 | |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 865 | 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] | 866 | sizeof(struct gfs2_dinode) - |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 867 | sizeof(struct gfs2_leaf)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 868 | |
| 869 | brelse(bh); |
| 870 | |
| 871 | /* We're done with the new leaf block, now setup the new |
| 872 | hash table. */ |
| 873 | |
Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 874 | gfs2_trans_add_bh(dip->i_gl, dibh, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 875 | gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode)); |
| 876 | |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 877 | lp = (__be64 *)(dibh->b_data + sizeof(struct gfs2_dinode)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 878 | |
| 879 | for (x = sdp->sd_hash_ptrs; x--; lp++) |
| 880 | *lp = cpu_to_be64(bn); |
| 881 | |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 882 | dip->i_disksize = sdp->sd_sb.sb_bsize / 2; |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 883 | gfs2_add_inode_blocks(&dip->i_inode, 1); |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 884 | dip->i_diskflags |= GFS2_DIF_EXHASH; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 885 | |
| 886 | for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 887 | dip->i_depth = y; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 888 | |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 889 | gfs2_dinode_out(dip, dibh->b_data); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 890 | |
| 891 | brelse(dibh); |
| 892 | |
| 893 | return 0; |
| 894 | } |
| 895 | |
| 896 | /** |
| 897 | * dir_split_leaf - Split a leaf block into two |
| 898 | * @dip: The GFS2 inode |
| 899 | * @index: |
| 900 | * @leaf_no: |
| 901 | * |
| 902 | * Returns: 0 on success, error code on failure |
| 903 | */ |
| 904 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 905 | static int dir_split_leaf(struct inode *inode, const struct qstr *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 906 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 907 | struct gfs2_inode *dip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 908 | struct buffer_head *nbh, *obh, *dibh; |
| 909 | struct gfs2_leaf *nleaf, *oleaf; |
Steven Whitehouse | 4da3c64 | 2006-07-11 13:19:13 -0400 | [diff] [blame] | 910 | struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 911 | u32 start, len, half_len, divider; |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 912 | u64 bn, leaf_no; |
| 913 | __be64 *lp; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 914 | u32 index; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 915 | int x, moved = 0; |
| 916 | int error; |
| 917 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 918 | index = name->hash >> (32 - dip->i_depth); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 919 | error = get_leaf_nr(dip, index, &leaf_no); |
| 920 | if (error) |
| 921 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 922 | |
| 923 | /* Get the old leaf block */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 924 | error = get_leaf(dip, leaf_no, &obh); |
| 925 | if (error) |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 926 | return error; |
| 927 | |
| 928 | oleaf = (struct gfs2_leaf *)obh->b_data; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 929 | if (dip->i_depth == be16_to_cpu(oleaf->lf_depth)) { |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 930 | brelse(obh); |
| 931 | return 1; /* can't split */ |
| 932 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 933 | |
Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 934 | gfs2_trans_add_bh(dip->i_gl, obh, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 935 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 936 | nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1); |
| 937 | if (!nleaf) { |
| 938 | brelse(obh); |
| 939 | return -ENOSPC; |
| 940 | } |
| 941 | bn = nbh->b_blocknr; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 942 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 943 | /* Compute the start and len of leaf pointers in the hash table. */ |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 944 | len = 1 << (dip->i_depth - be16_to_cpu(oleaf->lf_depth)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 945 | half_len = len >> 1; |
| 946 | if (!half_len) { |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 947 | printk(KERN_WARNING "i_depth %u lf_depth %u index %u\n", dip->i_depth, be16_to_cpu(oleaf->lf_depth), index); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 948 | gfs2_consist_inode(dip); |
| 949 | error = -EIO; |
| 950 | goto fail_brelse; |
| 951 | } |
| 952 | |
| 953 | start = (index & ~(len - 1)); |
| 954 | |
| 955 | /* Change the pointers. |
| 956 | Don't bother distinguishing stuffed from non-stuffed. |
| 957 | This code is complicated enough already. */ |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 958 | lp = kmalloc(half_len * sizeof(__be64), GFP_NOFS | __GFP_NOFAIL); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 959 | /* Change the pointers */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 960 | for (x = 0; x < half_len; x++) |
| 961 | lp[x] = cpu_to_be64(bn); |
| 962 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 963 | error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64), |
| 964 | half_len * sizeof(u64)); |
| 965 | if (error != half_len * sizeof(u64)) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 966 | if (error >= 0) |
| 967 | error = -EIO; |
| 968 | goto fail_lpfree; |
| 969 | } |
| 970 | |
| 971 | kfree(lp); |
| 972 | |
| 973 | /* Compute the divider */ |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 974 | divider = (start + half_len) << (32 - dip->i_depth); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 975 | |
| 976 | /* Copy the entries */ |
Steven Whitehouse | 1579343 | 2009-11-06 11:06:37 +0000 | [diff] [blame] | 977 | dent = (struct gfs2_dirent *)(obh->b_data + sizeof(struct gfs2_leaf)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 978 | |
| 979 | do { |
| 980 | next = dent; |
| 981 | if (dirent_next(dip, obh, &next)) |
| 982 | next = NULL; |
| 983 | |
Steven Whitehouse | 5e7d65c | 2006-11-17 12:27:44 -0500 | [diff] [blame] | 984 | if (!gfs2_dirent_sentinel(dent) && |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 985 | be32_to_cpu(dent->de_hash) < divider) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 986 | struct qstr str; |
| 987 | str.name = (char*)(dent+1); |
| 988 | str.len = be16_to_cpu(dent->de_name_len); |
| 989 | str.hash = be32_to_cpu(dent->de_hash); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 990 | new = gfs2_dirent_alloc(inode, nbh, &str); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 991 | if (IS_ERR(new)) { |
| 992 | error = PTR_ERR(new); |
| 993 | break; |
| 994 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 995 | |
| 996 | new->de_inum = dent->de_inum; /* No endian worries */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 997 | new->de_type = dent->de_type; /* No endian worries */ |
Marcin Slusarz | bb16b34 | 2008-02-13 00:06:10 +0100 | [diff] [blame] | 998 | be16_add_cpu(&nleaf->lf_entries, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 999 | |
| 1000 | dirent_del(dip, obh, prev, dent); |
| 1001 | |
| 1002 | if (!oleaf->lf_entries) |
| 1003 | gfs2_consist_inode(dip); |
Marcin Slusarz | bb16b34 | 2008-02-13 00:06:10 +0100 | [diff] [blame] | 1004 | be16_add_cpu(&oleaf->lf_entries, -1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1005 | |
| 1006 | if (!prev) |
| 1007 | prev = dent; |
| 1008 | |
| 1009 | moved = 1; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1010 | } else { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1011 | prev = dent; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1012 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1013 | dent = next; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1014 | } while (dent); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1015 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1016 | oleaf->lf_depth = nleaf->lf_depth; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1017 | |
| 1018 | error = gfs2_meta_inode_buffer(dip, &dibh); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1019 | if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) { |
Steven Whitehouse | 382e6e2 | 2007-08-16 17:08:20 +0100 | [diff] [blame] | 1020 | gfs2_trans_add_bh(dip->i_gl, dibh, 1); |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 1021 | gfs2_add_inode_blocks(&dip->i_inode, 1); |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1022 | gfs2_dinode_out(dip, dibh->b_data); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1023 | brelse(dibh); |
| 1024 | } |
| 1025 | |
| 1026 | brelse(obh); |
| 1027 | brelse(nbh); |
| 1028 | |
| 1029 | return error; |
| 1030 | |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1031 | fail_lpfree: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1032 | kfree(lp); |
| 1033 | |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1034 | fail_brelse: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1035 | brelse(obh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1036 | brelse(nbh); |
| 1037 | return error; |
| 1038 | } |
| 1039 | |
| 1040 | /** |
| 1041 | * dir_double_exhash - Double size of ExHash table |
| 1042 | * @dip: The GFS2 dinode |
| 1043 | * |
| 1044 | * Returns: 0 on success, error code on failure |
| 1045 | */ |
| 1046 | |
| 1047 | static int dir_double_exhash(struct gfs2_inode *dip) |
| 1048 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1049 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1050 | struct buffer_head *dibh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1051 | u32 hsize; |
| 1052 | u64 *buf; |
| 1053 | u64 *from, *to; |
| 1054 | u64 block; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1055 | int x; |
| 1056 | int error = 0; |
| 1057 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1058 | hsize = 1 << dip->i_depth; |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 1059 | if (hsize * sizeof(u64) != dip->i_disksize) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1060 | gfs2_consist_inode(dip); |
| 1061 | return -EIO; |
| 1062 | } |
| 1063 | |
| 1064 | /* Allocate both the "from" and "to" buffers in one big chunk */ |
| 1065 | |
Josef Bacik | 16c5f06 | 2008-04-09 09:33:41 -0400 | [diff] [blame] | 1066 | buf = kcalloc(3, sdp->sd_hash_bsize, GFP_NOFS | __GFP_NOFAIL); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1067 | |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 1068 | for (block = dip->i_disksize >> sdp->sd_hash_bsize_shift; block--;) { |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 1069 | error = gfs2_dir_read_data(dip, (char *)buf, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1070 | block * sdp->sd_hash_bsize, |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 1071 | sdp->sd_hash_bsize, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1072 | if (error != sdp->sd_hash_bsize) { |
| 1073 | if (error >= 0) |
| 1074 | error = -EIO; |
| 1075 | goto fail; |
| 1076 | } |
| 1077 | |
| 1078 | from = buf; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1079 | to = (u64 *)((char *)buf + sdp->sd_hash_bsize); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1080 | |
| 1081 | for (x = sdp->sd_hash_ptrs; x--; from++) { |
| 1082 | *to++ = *from; /* No endianess worries */ |
| 1083 | *to++ = *from; |
| 1084 | } |
| 1085 | |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 1086 | error = gfs2_dir_write_data(dip, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1087 | (char *)buf + sdp->sd_hash_bsize, |
| 1088 | block * sdp->sd_sb.sb_bsize, |
| 1089 | sdp->sd_sb.sb_bsize); |
| 1090 | if (error != sdp->sd_sb.sb_bsize) { |
| 1091 | if (error >= 0) |
| 1092 | error = -EIO; |
| 1093 | goto fail; |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | kfree(buf); |
| 1098 | |
| 1099 | error = gfs2_meta_inode_buffer(dip, &dibh); |
| 1100 | if (!gfs2_assert_withdraw(sdp, !error)) { |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1101 | dip->i_depth++; |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1102 | gfs2_dinode_out(dip, dibh->b_data); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1103 | brelse(dibh); |
| 1104 | } |
| 1105 | |
| 1106 | return error; |
| 1107 | |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1108 | fail: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1109 | kfree(buf); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1110 | return error; |
| 1111 | } |
| 1112 | |
| 1113 | /** |
| 1114 | * compare_dents - compare directory entries by hash value |
| 1115 | * @a: first dent |
| 1116 | * @b: second dent |
| 1117 | * |
| 1118 | * When comparing the hash entries of @a to @b: |
| 1119 | * gt: returns 1 |
| 1120 | * lt: returns -1 |
| 1121 | * eq: returns 0 |
| 1122 | */ |
| 1123 | |
| 1124 | static int compare_dents(const void *a, const void *b) |
| 1125 | { |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1126 | const struct gfs2_dirent *dent_a, *dent_b; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1127 | u32 hash_a, hash_b; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1128 | int ret = 0; |
| 1129 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1130 | dent_a = *(const struct gfs2_dirent **)a; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1131 | hash_a = be32_to_cpu(dent_a->de_hash); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1132 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1133 | dent_b = *(const struct gfs2_dirent **)b; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1134 | hash_b = be32_to_cpu(dent_b->de_hash); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1135 | |
| 1136 | if (hash_a > hash_b) |
| 1137 | ret = 1; |
| 1138 | else if (hash_a < hash_b) |
| 1139 | ret = -1; |
| 1140 | else { |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 1141 | unsigned int len_a = be16_to_cpu(dent_a->de_name_len); |
| 1142 | unsigned int len_b = be16_to_cpu(dent_b->de_name_len); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1143 | |
| 1144 | if (len_a > len_b) |
| 1145 | ret = 1; |
| 1146 | else if (len_a < len_b) |
| 1147 | ret = -1; |
| 1148 | else |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1149 | ret = memcmp(dent_a + 1, dent_b + 1, len_a); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
| 1152 | return ret; |
| 1153 | } |
| 1154 | |
| 1155 | /** |
| 1156 | * do_filldir_main - read out directory entries |
| 1157 | * @dip: The GFS2 inode |
| 1158 | * @offset: The offset in the file to read from |
| 1159 | * @opaque: opaque data to pass to filldir |
| 1160 | * @filldir: The function to pass entries to |
| 1161 | * @darr: an array of struct gfs2_dirent pointers to read |
| 1162 | * @entries: the number of entries in darr |
| 1163 | * @copied: pointer to int that's non-zero if a entry has been copied out |
| 1164 | * |
| 1165 | * Jump through some hoops to make sure that if there are hash collsions, |
| 1166 | * they are read out at the beginning of a buffer. We want to minimize |
| 1167 | * the possibility that they will fall into different readdir buffers or |
| 1168 | * that someone will want to seek to that location. |
| 1169 | * |
| 1170 | * Returns: errno, >0 on exception from filldir |
| 1171 | */ |
| 1172 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1173 | static int do_filldir_main(struct gfs2_inode *dip, u64 *offset, |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 1174 | void *opaque, filldir_t filldir, |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1175 | const struct gfs2_dirent **darr, u32 entries, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1176 | int *copied) |
| 1177 | { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1178 | const struct gfs2_dirent *dent, *dent_next; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1179 | u64 off, off_next; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1180 | unsigned int x, y; |
| 1181 | int run = 0; |
| 1182 | int error = 0; |
| 1183 | |
| 1184 | sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL); |
| 1185 | |
| 1186 | dent_next = darr[0]; |
| 1187 | off_next = be32_to_cpu(dent_next->de_hash); |
| 1188 | off_next = gfs2_disk_hash2offset(off_next); |
| 1189 | |
| 1190 | for (x = 0, y = 1; x < entries; x++, y++) { |
| 1191 | dent = dent_next; |
| 1192 | off = off_next; |
| 1193 | |
| 1194 | if (y < entries) { |
| 1195 | dent_next = darr[y]; |
| 1196 | off_next = be32_to_cpu(dent_next->de_hash); |
| 1197 | off_next = gfs2_disk_hash2offset(off_next); |
| 1198 | |
| 1199 | if (off < *offset) |
| 1200 | continue; |
| 1201 | *offset = off; |
| 1202 | |
| 1203 | if (off_next == off) { |
| 1204 | if (*copied && !run) |
| 1205 | return 1; |
| 1206 | run = 1; |
| 1207 | } else |
| 1208 | run = 0; |
| 1209 | } else { |
| 1210 | if (off < *offset) |
| 1211 | continue; |
| 1212 | *offset = off; |
| 1213 | } |
| 1214 | |
Steven Whitehouse | 2bdbc5d | 2006-09-05 09:34:20 -0400 | [diff] [blame] | 1215 | error = filldir(opaque, (const char *)(dent + 1), |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 1216 | be16_to_cpu(dent->de_name_len), |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 1217 | off, be64_to_cpu(dent->de_inum.no_addr), |
Steven Whitehouse | 4dd651a | 2006-02-14 15:56:44 +0000 | [diff] [blame] | 1218 | be16_to_cpu(dent->de_type)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1219 | if (error) |
| 1220 | return 1; |
| 1221 | |
| 1222 | *copied = 1; |
| 1223 | } |
| 1224 | |
| 1225 | /* Increment the *offset by one, so the next time we come into the |
| 1226 | do_filldir fxn, we get the next entry instead of the last one in the |
| 1227 | current leaf */ |
| 1228 | |
| 1229 | (*offset)++; |
| 1230 | |
| 1231 | return 0; |
| 1232 | } |
| 1233 | |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame^] | 1234 | static void *gfs2_alloc_sort_buffer(unsigned size) |
| 1235 | { |
| 1236 | void *ptr = NULL; |
| 1237 | |
| 1238 | if (size < KMALLOC_MAX_SIZE) |
| 1239 | ptr = kmalloc(size, GFP_NOFS | __GFP_NOWARN); |
| 1240 | if (!ptr) |
| 1241 | ptr = __vmalloc(size, GFP_NOFS, PAGE_KERNEL); |
| 1242 | return ptr; |
| 1243 | } |
| 1244 | |
| 1245 | static void gfs2_free_sort_buffer(void *ptr) |
| 1246 | { |
| 1247 | if (is_vmalloc_addr(ptr)) |
| 1248 | vfree(ptr); |
| 1249 | else |
| 1250 | kfree(ptr); |
| 1251 | } |
| 1252 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1253 | static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque, |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 1254 | filldir_t filldir, int *copied, unsigned *depth, |
| 1255 | u64 leaf_no) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1256 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1257 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1258 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1259 | struct buffer_head *bh; |
| 1260 | struct gfs2_leaf *lf; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1261 | unsigned entries = 0, entries2 = 0; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1262 | unsigned leaves = 0; |
| 1263 | const struct gfs2_dirent **darr, *dent; |
| 1264 | struct dirent_gather g; |
| 1265 | struct buffer_head **larr; |
| 1266 | int leaf = 0; |
| 1267 | int error, i; |
| 1268 | u64 lfn = leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1269 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1270 | do { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1271 | error = get_leaf(ip, lfn, &bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1272 | if (error) |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1273 | goto out; |
| 1274 | lf = (struct gfs2_leaf *)bh->b_data; |
| 1275 | if (leaves == 0) |
| 1276 | *depth = be16_to_cpu(lf->lf_depth); |
| 1277 | entries += be16_to_cpu(lf->lf_entries); |
| 1278 | leaves++; |
| 1279 | lfn = be64_to_cpu(lf->lf_next); |
| 1280 | brelse(bh); |
| 1281 | } while(lfn); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1282 | |
| 1283 | if (!entries) |
| 1284 | return 0; |
| 1285 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1286 | error = -ENOMEM; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1287 | /* |
| 1288 | * The extra 99 entries are not normally used, but are a buffer |
| 1289 | * zone in case the number of entries in the leaf is corrupt. |
| 1290 | * 99 is the maximum number of entries that can fit in a single |
| 1291 | * leaf block. |
| 1292 | */ |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame^] | 1293 | larr = gfs2_alloc_sort_buffer((leaves + entries + 99) * sizeof(void *)); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1294 | if (!larr) |
| 1295 | goto out; |
| 1296 | darr = (const struct gfs2_dirent **)(larr + leaves); |
| 1297 | g.pdent = darr; |
| 1298 | g.offset = 0; |
| 1299 | lfn = leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1300 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1301 | do { |
| 1302 | error = get_leaf(ip, lfn, &bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1303 | if (error) |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame^] | 1304 | goto out_free; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1305 | lf = (struct gfs2_leaf *)bh->b_data; |
| 1306 | lfn = be64_to_cpu(lf->lf_next); |
| 1307 | if (lf->lf_entries) { |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1308 | entries2 += be16_to_cpu(lf->lf_entries); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1309 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, |
| 1310 | gfs2_dirent_gather, NULL, &g); |
| 1311 | error = PTR_ERR(dent); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1312 | if (IS_ERR(dent)) |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame^] | 1313 | goto out_free; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1314 | if (entries2 != g.offset) { |
akpm@linux-foundation.org | f391a4e | 2007-04-25 21:08:02 -0700 | [diff] [blame] | 1315 | fs_warn(sdp, "Number of entries corrupt in dir " |
| 1316 | "leaf %llu, entries2 (%u) != " |
| 1317 | "g.offset (%u)\n", |
| 1318 | (unsigned long long)bh->b_blocknr, |
| 1319 | entries2, g.offset); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1320 | |
| 1321 | error = -EIO; |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame^] | 1322 | goto out_free; |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1323 | } |
| 1324 | error = 0; |
| 1325 | larr[leaf++] = bh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1326 | } else { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1327 | brelse(bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1328 | } |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1329 | } while(lfn); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1330 | |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1331 | BUG_ON(entries2 != entries); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1332 | error = do_filldir_main(ip, offset, opaque, filldir, darr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1333 | entries, copied); |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame^] | 1334 | out_free: |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1335 | for(i = 0; i < leaf; i++) |
| 1336 | brelse(larr[i]); |
Steven Whitehouse | d2a97a4 | 2010-07-28 17:56:23 +0100 | [diff] [blame^] | 1337 | gfs2_free_sort_buffer(larr); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1338 | out: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1339 | return error; |
| 1340 | } |
| 1341 | |
| 1342 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1343 | * dir_e_read - Reads the entries from a directory into a filldir buffer |
| 1344 | * @dip: dinode pointer |
| 1345 | * @offset: the hash of the last entry read shifted to the right once |
| 1346 | * @opaque: buffer for the filldir function to fill |
| 1347 | * @filldir: points to the filldir function to use |
| 1348 | * |
| 1349 | * Returns: errno |
| 1350 | */ |
| 1351 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1352 | static int dir_e_read(struct inode *inode, u64 *offset, void *opaque, |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 1353 | filldir_t filldir) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1354 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1355 | struct gfs2_inode *dip = GFS2_I(inode); |
| 1356 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1357 | u32 hsize, len = 0; |
| 1358 | u32 ht_offset, lp_offset, ht_offset_cur = -1; |
| 1359 | u32 hash, index; |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 1360 | __be64 *lp; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1361 | int copied = 0; |
| 1362 | int error = 0; |
Steven Whitehouse | 4da3c64 | 2006-07-11 13:19:13 -0400 | [diff] [blame] | 1363 | unsigned depth = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1364 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1365 | hsize = 1 << dip->i_depth; |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 1366 | if (hsize * sizeof(u64) != dip->i_disksize) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1367 | gfs2_consist_inode(dip); |
| 1368 | return -EIO; |
| 1369 | } |
| 1370 | |
| 1371 | hash = gfs2_dir_offset2hash(*offset); |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1372 | index = hash >> (32 - dip->i_depth); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1373 | |
Josef Bacik | 16c5f06 | 2008-04-09 09:33:41 -0400 | [diff] [blame] | 1374 | lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1375 | if (!lp) |
| 1376 | return -ENOMEM; |
| 1377 | |
| 1378 | while (index < hsize) { |
| 1379 | lp_offset = index & (sdp->sd_hash_ptrs - 1); |
| 1380 | ht_offset = index - lp_offset; |
| 1381 | |
| 1382 | if (ht_offset_cur != ht_offset) { |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 1383 | error = gfs2_dir_read_data(dip, (char *)lp, |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 1384 | ht_offset * sizeof(__be64), |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 1385 | sdp->sd_hash_bsize, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1386 | if (error != sdp->sd_hash_bsize) { |
| 1387 | if (error >= 0) |
| 1388 | error = -EIO; |
| 1389 | goto out; |
| 1390 | } |
| 1391 | ht_offset_cur = ht_offset; |
| 1392 | } |
| 1393 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1394 | error = gfs2_dir_read_leaf(inode, offset, opaque, filldir, |
| 1395 | &copied, &depth, |
| 1396 | be64_to_cpu(lp[lp_offset])); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1397 | if (error) |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1398 | break; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1399 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1400 | len = 1 << (dip->i_depth - depth); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1401 | index = (index & ~(len - 1)) + len; |
| 1402 | } |
| 1403 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1404 | out: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1405 | kfree(lp); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1406 | if (error > 0) |
| 1407 | error = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1408 | return error; |
| 1409 | } |
| 1410 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1411 | int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque, |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 1412 | filldir_t filldir) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1413 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1414 | struct gfs2_inode *dip = GFS2_I(inode); |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1415 | struct gfs2_sbd *sdp = GFS2_SB(inode); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1416 | struct dirent_gather g; |
| 1417 | const struct gfs2_dirent **darr, *dent; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1418 | struct buffer_head *dibh; |
| 1419 | int copied = 0; |
| 1420 | int error; |
| 1421 | |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1422 | if (!dip->i_entries) |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1423 | return 0; |
| 1424 | |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1425 | if (dip->i_diskflags & GFS2_DIF_EXHASH) |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1426 | return dir_e_read(inode, offset, opaque, filldir); |
| 1427 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1428 | if (!gfs2_is_stuffed(dip)) { |
| 1429 | gfs2_consist_inode(dip); |
| 1430 | return -EIO; |
| 1431 | } |
| 1432 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1433 | error = gfs2_meta_inode_buffer(dip, &dibh); |
| 1434 | if (error) |
| 1435 | return error; |
| 1436 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1437 | error = -ENOMEM; |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1438 | /* 96 is max number of dirents which can be stuffed into an inode */ |
Josef Bacik | 16c5f06 | 2008-04-09 09:33:41 -0400 | [diff] [blame] | 1439 | darr = kmalloc(96 * sizeof(struct gfs2_dirent *), GFP_NOFS); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1440 | if (darr) { |
| 1441 | g.pdent = darr; |
| 1442 | g.offset = 0; |
| 1443 | dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size, |
| 1444 | gfs2_dirent_gather, NULL, &g); |
| 1445 | if (IS_ERR(dent)) { |
| 1446 | error = PTR_ERR(dent); |
| 1447 | goto out; |
| 1448 | } |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1449 | if (dip->i_entries != g.offset) { |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1450 | fs_warn(sdp, "Number of entries corrupt in dir %llu, " |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1451 | "ip->i_entries (%u) != g.offset (%u)\n", |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1452 | (unsigned long long)dip->i_no_addr, |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1453 | dip->i_entries, |
Steven Whitehouse | bdd19a2 | 2007-04-18 09:38:42 +0100 | [diff] [blame] | 1454 | g.offset); |
| 1455 | error = -EIO; |
| 1456 | goto out; |
| 1457 | } |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1458 | error = do_filldir_main(dip, offset, opaque, filldir, darr, |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1459 | dip->i_entries, &copied); |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1460 | out: |
| 1461 | kfree(darr); |
| 1462 | } |
| 1463 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1464 | if (error > 0) |
| 1465 | error = 0; |
| 1466 | |
| 1467 | brelse(dibh); |
| 1468 | |
| 1469 | return error; |
| 1470 | } |
| 1471 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1472 | /** |
| 1473 | * gfs2_dir_search - Search a directory |
| 1474 | * @dip: The GFS2 inode |
| 1475 | * @filename: |
| 1476 | * @inode: |
| 1477 | * |
| 1478 | * This routine searches a directory for a file or another directory. |
| 1479 | * Assumes a glock is held on dip. |
| 1480 | * |
| 1481 | * Returns: errno |
| 1482 | */ |
| 1483 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1484 | struct inode *gfs2_dir_search(struct inode *dir, const struct qstr *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1485 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1486 | struct buffer_head *bh; |
| 1487 | struct gfs2_dirent *dent; |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1488 | struct inode *inode; |
| 1489 | |
| 1490 | dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh); |
| 1491 | if (dent) { |
| 1492 | if (IS_ERR(dent)) |
David Howells | e231c2e | 2008-02-07 00:15:26 -0800 | [diff] [blame] | 1493 | return ERR_CAST(dent); |
Wendy Cheng | bb9bcf0 | 2007-06-27 17:07:08 -0400 | [diff] [blame] | 1494 | inode = gfs2_inode_lookup(dir->i_sb, |
| 1495 | be16_to_cpu(dent->de_type), |
| 1496 | be64_to_cpu(dent->de_inum.no_addr), |
Bob Peterson | 1a0eae8 | 2010-04-14 11:58:16 -0400 | [diff] [blame] | 1497 | be64_to_cpu(dent->de_inum.no_formal_ino)); |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1498 | brelse(bh); |
| 1499 | return inode; |
| 1500 | } |
| 1501 | return ERR_PTR(-ENOENT); |
| 1502 | } |
| 1503 | |
| 1504 | int gfs2_dir_check(struct inode *dir, const struct qstr *name, |
| 1505 | const struct gfs2_inode *ip) |
| 1506 | { |
| 1507 | struct buffer_head *bh; |
| 1508 | struct gfs2_dirent *dent; |
| 1509 | int ret = -ENOENT; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1510 | |
| 1511 | dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh); |
| 1512 | if (dent) { |
| 1513 | if (IS_ERR(dent)) |
| 1514 | return PTR_ERR(dent); |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1515 | if (ip) { |
| 1516 | if (be64_to_cpu(dent->de_inum.no_addr) != ip->i_no_addr) |
| 1517 | goto out; |
| 1518 | if (be64_to_cpu(dent->de_inum.no_formal_ino) != |
| 1519 | ip->i_no_formal_ino) |
| 1520 | goto out; |
| 1521 | if (unlikely(IF2DT(ip->i_inode.i_mode) != |
| 1522 | be16_to_cpu(dent->de_type))) { |
| 1523 | gfs2_consist_inode(GFS2_I(dir)); |
| 1524 | ret = -EIO; |
| 1525 | goto out; |
| 1526 | } |
| 1527 | } |
| 1528 | ret = 0; |
| 1529 | out: |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1530 | brelse(bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1531 | } |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1532 | return ret; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1533 | } |
| 1534 | |
| 1535 | static int dir_new_leaf(struct inode *inode, const struct qstr *name) |
| 1536 | { |
| 1537 | struct buffer_head *bh, *obh; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1538 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1539 | struct gfs2_leaf *leaf, *oleaf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1540 | int error; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1541 | u32 index; |
| 1542 | u64 bn; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1543 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1544 | index = name->hash >> (32 - ip->i_depth); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1545 | error = get_first_leaf(ip, index, &obh); |
| 1546 | if (error) |
| 1547 | return error; |
| 1548 | do { |
| 1549 | oleaf = (struct gfs2_leaf *)obh->b_data; |
| 1550 | bn = be64_to_cpu(oleaf->lf_next); |
| 1551 | if (!bn) |
| 1552 | break; |
| 1553 | brelse(obh); |
| 1554 | error = get_leaf(ip, bn, &obh); |
| 1555 | if (error) |
| 1556 | return error; |
| 1557 | } while(1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1558 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1559 | gfs2_trans_add_bh(ip->i_gl, obh, 1); |
| 1560 | |
| 1561 | leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth)); |
| 1562 | if (!leaf) { |
| 1563 | brelse(obh); |
| 1564 | return -ENOSPC; |
| 1565 | } |
Steven Whitehouse | 4d8012b | 2006-04-12 17:39:45 -0400 | [diff] [blame] | 1566 | oleaf->lf_next = cpu_to_be64(bh->b_blocknr); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1567 | brelse(bh); |
| 1568 | brelse(obh); |
| 1569 | |
| 1570 | error = gfs2_meta_inode_buffer(ip, &bh); |
| 1571 | if (error) |
| 1572 | return error; |
| 1573 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 1574 | gfs2_add_inode_blocks(&ip->i_inode, 1); |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1575 | gfs2_dinode_out(ip, bh->b_data); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1576 | brelse(bh); |
| 1577 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1578 | } |
| 1579 | |
| 1580 | /** |
| 1581 | * gfs2_dir_add - Add new filename into directory |
| 1582 | * @dip: The GFS2 inode |
| 1583 | * @filename: The new name |
| 1584 | * @inode: The inode number of the entry |
| 1585 | * @type: The type of the entry |
| 1586 | * |
| 1587 | * Returns: 0 on success, error code on failure |
| 1588 | */ |
| 1589 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1590 | int gfs2_dir_add(struct inode *inode, const struct qstr *name, |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1591 | const struct gfs2_inode *nip, unsigned type) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1592 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1593 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1594 | struct buffer_head *bh; |
| 1595 | struct gfs2_dirent *dent; |
| 1596 | struct gfs2_leaf *leaf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1597 | int error; |
| 1598 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1599 | while(1) { |
| 1600 | dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, |
| 1601 | &bh); |
| 1602 | if (dent) { |
| 1603 | if (IS_ERR(dent)) |
| 1604 | return PTR_ERR(dent); |
| 1605 | dent = gfs2_init_dirent(inode, dent, name, bh); |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1606 | gfs2_inum_out(nip, dent); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1607 | dent->de_type = cpu_to_be16(type); |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1608 | if (ip->i_diskflags & GFS2_DIF_EXHASH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1609 | leaf = (struct gfs2_leaf *)bh->b_data; |
Marcin Slusarz | bb16b34 | 2008-02-13 00:06:10 +0100 | [diff] [blame] | 1610 | be16_add_cpu(&leaf->lf_entries, 1); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1611 | } |
| 1612 | brelse(bh); |
| 1613 | error = gfs2_meta_inode_buffer(ip, &bh); |
| 1614 | if (error) |
| 1615 | break; |
| 1616 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1617 | ip->i_entries++; |
Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 1618 | ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1619 | gfs2_dinode_out(ip, bh->b_data); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1620 | brelse(bh); |
| 1621 | error = 0; |
| 1622 | break; |
| 1623 | } |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1624 | if (!(ip->i_diskflags & GFS2_DIF_EXHASH)) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1625 | error = dir_make_exhash(inode); |
| 1626 | if (error) |
| 1627 | break; |
| 1628 | continue; |
| 1629 | } |
| 1630 | error = dir_split_leaf(inode, name); |
| 1631 | if (error == 0) |
| 1632 | continue; |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1633 | if (error < 0) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1634 | break; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1635 | if (ip->i_depth < GFS2_DIR_MAX_DEPTH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1636 | error = dir_double_exhash(ip); |
| 1637 | if (error) |
| 1638 | break; |
| 1639 | error = dir_split_leaf(inode, name); |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1640 | if (error < 0) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1641 | break; |
Steven Whitehouse | e90deff | 2006-03-29 19:02:15 -0500 | [diff] [blame] | 1642 | if (error == 0) |
| 1643 | continue; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1644 | } |
| 1645 | error = dir_new_leaf(inode, name); |
| 1646 | if (!error) |
| 1647 | continue; |
| 1648 | error = -ENOSPC; |
| 1649 | break; |
| 1650 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1651 | return error; |
| 1652 | } |
| 1653 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1654 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1655 | /** |
| 1656 | * gfs2_dir_del - Delete a directory entry |
| 1657 | * @dip: The GFS2 inode |
| 1658 | * @filename: The filename |
| 1659 | * |
| 1660 | * Returns: 0 on success, error code on failure |
| 1661 | */ |
| 1662 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1663 | int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1664 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1665 | struct gfs2_dirent *dent, *prev = NULL; |
| 1666 | struct buffer_head *bh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1667 | int error; |
| 1668 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1669 | /* Returns _either_ the entry (if its first in block) or the |
| 1670 | previous entry otherwise */ |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1671 | dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1672 | if (!dent) { |
| 1673 | gfs2_consist_inode(dip); |
| 1674 | return -EIO; |
| 1675 | } |
| 1676 | if (IS_ERR(dent)) { |
| 1677 | gfs2_consist_inode(dip); |
| 1678 | return PTR_ERR(dent); |
| 1679 | } |
| 1680 | /* If not first in block, adjust pointers accordingly */ |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 1681 | if (gfs2_dirent_find(dent, name, NULL) == 0) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1682 | prev = dent; |
| 1683 | dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len)); |
| 1684 | } |
| 1685 | |
| 1686 | dirent_del(dip, bh, prev, dent); |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1687 | if (dip->i_diskflags & GFS2_DIF_EXHASH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1688 | struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data; |
| 1689 | u16 entries = be16_to_cpu(leaf->lf_entries); |
| 1690 | if (!entries) |
| 1691 | gfs2_consist_inode(dip); |
| 1692 | leaf->lf_entries = cpu_to_be16(--entries); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1693 | } |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 1694 | brelse(bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1695 | |
| 1696 | error = gfs2_meta_inode_buffer(dip, &bh); |
| 1697 | if (error) |
| 1698 | return error; |
| 1699 | |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1700 | if (!dip->i_entries) |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1701 | gfs2_consist_inode(dip); |
| 1702 | gfs2_trans_add_bh(dip->i_gl, bh, 1); |
Steven Whitehouse | ad6203f | 2008-11-03 13:59:19 +0000 | [diff] [blame] | 1703 | dip->i_entries--; |
Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 1704 | dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME; |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1705 | gfs2_dinode_out(dip, bh->b_data); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1706 | brelse(bh); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1707 | mark_inode_dirty(&dip->i_inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1708 | |
| 1709 | return error; |
| 1710 | } |
| 1711 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1712 | /** |
| 1713 | * gfs2_dir_mvino - Change inode number of directory entry |
| 1714 | * @dip: The GFS2 inode |
| 1715 | * @filename: |
| 1716 | * @new_inode: |
| 1717 | * |
| 1718 | * This routine changes the inode number of a directory entry. It's used |
| 1719 | * by rename to change ".." when a directory is moved. |
| 1720 | * Assumes a glock is held on dvp. |
| 1721 | * |
| 1722 | * Returns: errno |
| 1723 | */ |
| 1724 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1725 | int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename, |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1726 | const struct gfs2_inode *nip, unsigned int new_type) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1727 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1728 | struct buffer_head *bh; |
| 1729 | struct gfs2_dirent *dent; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1730 | int error; |
| 1731 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1732 | dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1733 | if (!dent) { |
| 1734 | gfs2_consist_inode(dip); |
| 1735 | return -EIO; |
| 1736 | } |
| 1737 | if (IS_ERR(dent)) |
| 1738 | return PTR_ERR(dent); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1739 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1740 | gfs2_trans_add_bh(dip->i_gl, bh, 1); |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 1741 | gfs2_inum_out(nip, dent); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1742 | dent->de_type = cpu_to_be16(new_type); |
| 1743 | |
Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1744 | if (dip->i_diskflags & GFS2_DIF_EXHASH) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1745 | brelse(bh); |
| 1746 | error = gfs2_meta_inode_buffer(dip, &bh); |
| 1747 | if (error) |
| 1748 | return error; |
| 1749 | gfs2_trans_add_bh(dip->i_gl, bh, 1); |
| 1750 | } |
| 1751 | |
Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 1752 | dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME; |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1753 | gfs2_dinode_out(dip, bh->b_data); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1754 | brelse(bh); |
| 1755 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | /** |
| 1759 | * foreach_leaf - call a function for each leaf in a directory |
| 1760 | * @dip: the directory |
| 1761 | * @lc: the function to call for each each |
| 1762 | * @data: private data to pass to it |
| 1763 | * |
| 1764 | * Returns: errno |
| 1765 | */ |
| 1766 | |
| 1767 | static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data) |
| 1768 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1769 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1770 | struct buffer_head *bh; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1771 | struct gfs2_leaf *leaf; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1772 | u32 hsize, len; |
| 1773 | u32 ht_offset, lp_offset, ht_offset_cur = -1; |
| 1774 | u32 index = 0; |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 1775 | __be64 *lp; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1776 | u64 leaf_no; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1777 | int error = 0; |
| 1778 | |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1779 | hsize = 1 << dip->i_depth; |
Steven Whitehouse | c9e9888 | 2008-11-04 09:47:33 +0000 | [diff] [blame] | 1780 | if (hsize * sizeof(u64) != dip->i_disksize) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1781 | gfs2_consist_inode(dip); |
| 1782 | return -EIO; |
| 1783 | } |
| 1784 | |
Josef Bacik | 16c5f06 | 2008-04-09 09:33:41 -0400 | [diff] [blame] | 1785 | lp = kmalloc(sdp->sd_hash_bsize, GFP_NOFS); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1786 | if (!lp) |
| 1787 | return -ENOMEM; |
| 1788 | |
| 1789 | while (index < hsize) { |
| 1790 | lp_offset = index & (sdp->sd_hash_ptrs - 1); |
| 1791 | ht_offset = index - lp_offset; |
| 1792 | |
| 1793 | if (ht_offset_cur != ht_offset) { |
Steven Whitehouse | e13940b | 2006-01-30 13:31:50 +0000 | [diff] [blame] | 1794 | error = gfs2_dir_read_data(dip, (char *)lp, |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 1795 | ht_offset * sizeof(__be64), |
Steven Whitehouse | 7276b3b | 2006-09-21 17:05:23 -0400 | [diff] [blame] | 1796 | sdp->sd_hash_bsize, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1797 | if (error != sdp->sd_hash_bsize) { |
| 1798 | if (error >= 0) |
| 1799 | error = -EIO; |
| 1800 | goto out; |
| 1801 | } |
| 1802 | ht_offset_cur = ht_offset; |
| 1803 | } |
| 1804 | |
| 1805 | leaf_no = be64_to_cpu(lp[lp_offset]); |
| 1806 | if (leaf_no) { |
| 1807 | error = get_leaf(dip, leaf_no, &bh); |
| 1808 | if (error) |
| 1809 | goto out; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1810 | leaf = (struct gfs2_leaf *)bh->b_data; |
Steven Whitehouse | 9a00450 | 2008-02-01 09:23:44 +0000 | [diff] [blame] | 1811 | len = 1 << (dip->i_depth - be16_to_cpu(leaf->lf_depth)); |
Steven Whitehouse | 634ee0b | 2006-07-17 09:32:37 -0400 | [diff] [blame] | 1812 | brelse(bh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1813 | |
| 1814 | error = lc(dip, index, len, leaf_no, data); |
| 1815 | if (error) |
| 1816 | goto out; |
| 1817 | |
| 1818 | index = (index & ~(len - 1)) + len; |
| 1819 | } else |
| 1820 | index++; |
| 1821 | } |
| 1822 | |
| 1823 | if (index != hsize) { |
| 1824 | gfs2_consist_inode(dip); |
| 1825 | error = -EIO; |
| 1826 | } |
| 1827 | |
Steven Whitehouse | 634ee0b | 2006-07-17 09:32:37 -0400 | [diff] [blame] | 1828 | out: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1829 | kfree(lp); |
| 1830 | |
| 1831 | return error; |
| 1832 | } |
| 1833 | |
| 1834 | /** |
| 1835 | * leaf_dealloc - Deallocate a directory leaf |
| 1836 | * @dip: the directory |
| 1837 | * @index: the hash table offset in the directory |
| 1838 | * @len: the number of pointers to this leaf |
| 1839 | * @leaf_no: the leaf number |
| 1840 | * @data: not used |
| 1841 | * |
| 1842 | * Returns: errno |
| 1843 | */ |
| 1844 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1845 | static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len, |
| 1846 | u64 leaf_no, void *data) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1847 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1848 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1849 | struct gfs2_leaf *tmp_leaf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1850 | struct gfs2_rgrp_list rlist; |
| 1851 | struct buffer_head *bh, *dibh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1852 | u64 blk, nblk; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1853 | unsigned int rg_blocks = 0, l_blocks = 0; |
| 1854 | char *ht; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1855 | unsigned int x, size = len * sizeof(u64); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1856 | int error; |
| 1857 | |
| 1858 | memset(&rlist, 0, sizeof(struct gfs2_rgrp_list)); |
| 1859 | |
Josef Bacik | 16c5f06 | 2008-04-09 09:33:41 -0400 | [diff] [blame] | 1860 | ht = kzalloc(size, GFP_NOFS); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1861 | if (!ht) |
| 1862 | return -ENOMEM; |
| 1863 | |
Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 1864 | if (!gfs2_alloc_get(dip)) { |
| 1865 | error = -ENOMEM; |
| 1866 | goto out; |
| 1867 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1868 | |
| 1869 | error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE); |
| 1870 | if (error) |
Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 1871 | goto out_put; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1872 | |
Steven Whitehouse | 6dbd822 | 2008-01-10 15:18:55 +0000 | [diff] [blame] | 1873 | error = gfs2_rindex_hold(sdp, &dip->i_alloc->al_ri_gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1874 | if (error) |
| 1875 | goto out_qs; |
| 1876 | |
| 1877 | /* Count the number of leaves */ |
| 1878 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1879 | for (blk = leaf_no; blk; blk = nblk) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1880 | error = get_leaf(dip, blk, &bh); |
| 1881 | if (error) |
| 1882 | goto out_rlist; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1883 | tmp_leaf = (struct gfs2_leaf *)bh->b_data; |
| 1884 | nblk = be64_to_cpu(tmp_leaf->lf_next); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1885 | brelse(bh); |
| 1886 | |
| 1887 | gfs2_rlist_add(sdp, &rlist, blk); |
| 1888 | l_blocks++; |
| 1889 | } |
| 1890 | |
Bob Peterson | fe6c991 | 2008-01-28 11:13:02 -0600 | [diff] [blame] | 1891 | gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1892 | |
| 1893 | for (x = 0; x < rlist.rl_rgrps; x++) { |
| 1894 | struct gfs2_rgrpd *rgd; |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 1895 | rgd = rlist.rl_ghs[x].gh_gl->gl_object; |
Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame] | 1896 | rg_blocks += rgd->rd_length; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1897 | } |
| 1898 | |
| 1899 | error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs); |
| 1900 | if (error) |
| 1901 | goto out_rlist; |
| 1902 | |
| 1903 | error = gfs2_trans_begin(sdp, |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 1904 | rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) + |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1905 | RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks); |
| 1906 | if (error) |
| 1907 | goto out_rg_gunlock; |
| 1908 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1909 | for (blk = leaf_no; blk; blk = nblk) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1910 | error = get_leaf(dip, blk, &bh); |
| 1911 | if (error) |
| 1912 | goto out_end_trans; |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1913 | tmp_leaf = (struct gfs2_leaf *)bh->b_data; |
| 1914 | nblk = be64_to_cpu(tmp_leaf->lf_next); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1915 | brelse(bh); |
| 1916 | |
| 1917 | gfs2_free_meta(dip, blk, 1); |
Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 1918 | gfs2_add_inode_blocks(&dip->i_inode, -1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1919 | } |
| 1920 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1921 | error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1922 | if (error != size) { |
| 1923 | if (error >= 0) |
| 1924 | error = -EIO; |
| 1925 | goto out_end_trans; |
| 1926 | } |
| 1927 | |
| 1928 | error = gfs2_meta_inode_buffer(dip, &dibh); |
| 1929 | if (error) |
| 1930 | goto out_end_trans; |
| 1931 | |
Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 1932 | gfs2_trans_add_bh(dip->i_gl, dibh, 1); |
Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1933 | gfs2_dinode_out(dip, dibh->b_data); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1934 | brelse(dibh); |
| 1935 | |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1936 | out_end_trans: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1937 | gfs2_trans_end(sdp); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1938 | out_rg_gunlock: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1939 | gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1940 | out_rlist: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1941 | gfs2_rlist_free(&rlist); |
Steven Whitehouse | 6dbd822 | 2008-01-10 15:18:55 +0000 | [diff] [blame] | 1942 | gfs2_glock_dq_uninit(&dip->i_alloc->al_ri_gh); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1943 | out_qs: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1944 | gfs2_quota_unhold(dip); |
Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 1945 | out_put: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1946 | gfs2_alloc_put(dip); |
Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 1947 | out: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1948 | kfree(ht); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1949 | return error; |
| 1950 | } |
| 1951 | |
| 1952 | /** |
| 1953 | * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory |
| 1954 | * @dip: the directory |
| 1955 | * |
| 1956 | * Dealloc all on-disk directory leaves to FREEMETA state |
| 1957 | * Change on-disk inode type to "regular file" |
| 1958 | * |
| 1959 | * Returns: errno |
| 1960 | */ |
| 1961 | |
| 1962 | int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip) |
| 1963 | { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1964 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1965 | struct buffer_head *bh; |
| 1966 | int error; |
| 1967 | |
| 1968 | /* Dealloc on-disk leaves to FREEMETA state */ |
| 1969 | error = foreach_leaf(dip, leaf_dealloc, NULL); |
| 1970 | if (error) |
| 1971 | return error; |
| 1972 | |
| 1973 | /* Make this a regular file in case we crash. |
| 1974 | (We don't want to free these blocks a second time.) */ |
| 1975 | |
| 1976 | error = gfs2_trans_begin(sdp, RES_DINODE, 0); |
| 1977 | if (error) |
| 1978 | return error; |
| 1979 | |
| 1980 | error = gfs2_meta_inode_buffer(dip, &bh); |
| 1981 | if (!error) { |
Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 1982 | gfs2_trans_add_bh(dip->i_gl, bh, 1); |
Steven Whitehouse | 568f4c9 | 2006-02-27 12:00:42 -0500 | [diff] [blame] | 1983 | ((struct gfs2_dinode *)bh->b_data)->di_mode = |
| 1984 | cpu_to_be32(S_IFREG); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1985 | brelse(bh); |
| 1986 | } |
| 1987 | |
| 1988 | gfs2_trans_end(sdp); |
| 1989 | |
| 1990 | return error; |
| 1991 | } |
| 1992 | |
| 1993 | /** |
| 1994 | * gfs2_diradd_alloc_required - find if adding entry will require an allocation |
| 1995 | * @ip: the file being written to |
| 1996 | * @filname: the filename that's going to be added |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1997 | * |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 1998 | * Returns: 1 if alloc required, 0 if not, -ve on error |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1999 | */ |
| 2000 | |
Steven Whitehouse | 4d8012b | 2006-04-12 17:39:45 -0400 | [diff] [blame] | 2001 | int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2002 | { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2003 | struct gfs2_dirent *dent; |
| 2004 | struct buffer_head *bh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2005 | |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2006 | dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh); |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 2007 | if (!dent) { |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2008 | return 1; |
Steven Whitehouse | ed38650 | 2006-04-07 16:28:07 -0400 | [diff] [blame] | 2009 | } |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 2010 | if (IS_ERR(dent)) |
| 2011 | return PTR_ERR(dent); |
| 2012 | brelse(bh); |
| 2013 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2014 | } |
| 2015 | |