Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * dir.c |
| 5 | * |
| 6 | * Creates, reads, walks and deletes directory-nodes |
| 7 | * |
| 8 | * Copyright (C) 2002, 2004 Oracle. All rights reserved. |
| 9 | * |
| 10 | * Portions of this code from linux/fs/ext3/dir.c |
| 11 | * |
| 12 | * Copyright (C) 1992, 1993, 1994, 1995 |
| 13 | * Remy Card (card@masi.ibp.fr) |
| 14 | * Laboratoire MASI - Institut Blaise pascal |
| 15 | * Universite Pierre et Marie Curie (Paris VI) |
| 16 | * |
| 17 | * from |
| 18 | * |
| 19 | * linux/fs/minix/dir.c |
| 20 | * |
Jakub Wilk | 762515a | 2015-04-14 15:43:41 -0700 | [diff] [blame] | 21 | * Copyright (C) 1991, 1992 Linus Torvalds |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 22 | * |
| 23 | * This program is free software; you can redistribute it and/or |
| 24 | * modify it under the terms of the GNU General Public |
| 25 | * License as published by the Free Software Foundation; either |
| 26 | * version 2 of the License, or (at your option) any later version. |
| 27 | * |
| 28 | * This program is distributed in the hope that it will be useful, |
| 29 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 30 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 31 | * General Public License for more details. |
| 32 | * |
| 33 | * You should have received a copy of the GNU General Public |
| 34 | * License along with this program; if not, write to the |
| 35 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 36 | * Boston, MA 021110-1307, USA. |
| 37 | */ |
| 38 | |
| 39 | #include <linux/fs.h> |
| 40 | #include <linux/types.h> |
| 41 | #include <linux/slab.h> |
| 42 | #include <linux/highmem.h> |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 43 | #include <linux/quotaops.h> |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 44 | #include <linux/sort.h> |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 45 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 46 | #include <cluster/masklog.h> |
| 47 | |
| 48 | #include "ocfs2.h" |
| 49 | |
| 50 | #include "alloc.h" |
Joel Becker | c175a51 | 2008-12-10 17:58:22 -0800 | [diff] [blame] | 51 | #include "blockcheck.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 52 | #include "dir.h" |
| 53 | #include "dlmglue.h" |
| 54 | #include "extent_map.h" |
| 55 | #include "file.h" |
| 56 | #include "inode.h" |
| 57 | #include "journal.h" |
| 58 | #include "namei.h" |
| 59 | #include "suballoc.h" |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 60 | #include "super.h" |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 61 | #include "sysfile.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 62 | #include "uptodate.h" |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 63 | #include "ocfs2_trace.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 64 | |
| 65 | #include "buffer_head_io.h" |
| 66 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 67 | #define NAMEI_RA_CHUNKS 2 |
| 68 | #define NAMEI_RA_BLOCKS 4 |
| 69 | #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 70 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 71 | static unsigned char ocfs2_filetype_table[] = { |
| 72 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK |
| 73 | }; |
| 74 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 75 | static int ocfs2_do_extend_dir(struct super_block *sb, |
| 76 | handle_t *handle, |
| 77 | struct inode *dir, |
| 78 | struct buffer_head *parent_fe_bh, |
| 79 | struct ocfs2_alloc_context *data_ac, |
| 80 | struct ocfs2_alloc_context *meta_ac, |
| 81 | struct buffer_head **new_bh); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 82 | static int ocfs2_dir_indexed(struct inode *inode); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 83 | |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 84 | /* |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 85 | * These are distinct checks because future versions of the file system will |
| 86 | * want to have a trailing dirent structure independent of indexing. |
| 87 | */ |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 88 | static int ocfs2_supports_dir_trailer(struct inode *dir) |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 89 | { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 90 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 91 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 92 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
| 93 | return 0; |
| 94 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 95 | return ocfs2_meta_ecc(osb) || ocfs2_dir_indexed(dir); |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 96 | } |
| 97 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 98 | /* |
| 99 | * "new' here refers to the point at which we're creating a new |
| 100 | * directory via "mkdir()", but also when we're expanding an inline |
| 101 | * directory. In either case, we don't yet have the indexing bit set |
| 102 | * on the directory, so the standard checks will fail in when metaecc |
| 103 | * is turned off. Only directory-initialization type functions should |
| 104 | * use this then. Everything else wants ocfs2_supports_dir_trailer() |
| 105 | */ |
| 106 | static int ocfs2_new_dir_wants_trailer(struct inode *dir) |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 107 | { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 108 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 109 | |
| 110 | return ocfs2_meta_ecc(osb) || |
| 111 | ocfs2_supports_indexed_dirs(osb); |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static inline unsigned int ocfs2_dir_trailer_blk_off(struct super_block *sb) |
| 115 | { |
| 116 | return sb->s_blocksize - sizeof(struct ocfs2_dir_block_trailer); |
| 117 | } |
| 118 | |
| 119 | #define ocfs2_trailer_from_bh(_bh, _sb) ((struct ocfs2_dir_block_trailer *) ((_bh)->b_data + ocfs2_dir_trailer_blk_off((_sb)))) |
| 120 | |
Joel Becker | c175a51 | 2008-12-10 17:58:22 -0800 | [diff] [blame] | 121 | /* XXX ocfs2_block_dqtrailer() is similar but not quite - can we make |
| 122 | * them more consistent? */ |
| 123 | struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize, |
| 124 | void *data) |
| 125 | { |
| 126 | char *p = data; |
| 127 | |
| 128 | p += blocksize - sizeof(struct ocfs2_dir_block_trailer); |
| 129 | return (struct ocfs2_dir_block_trailer *)p; |
| 130 | } |
| 131 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 132 | /* |
| 133 | * XXX: This is executed once on every dirent. We should consider optimizing |
| 134 | * it. |
| 135 | */ |
| 136 | static int ocfs2_skip_dir_trailer(struct inode *dir, |
| 137 | struct ocfs2_dir_entry *de, |
| 138 | unsigned long offset, |
| 139 | unsigned long blklen) |
| 140 | { |
| 141 | unsigned long toff = blklen - sizeof(struct ocfs2_dir_block_trailer); |
| 142 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 143 | if (!ocfs2_supports_dir_trailer(dir)) |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 144 | return 0; |
| 145 | |
| 146 | if (offset != toff) |
| 147 | return 0; |
| 148 | |
| 149 | return 1; |
| 150 | } |
| 151 | |
| 152 | static void ocfs2_init_dir_trailer(struct inode *inode, |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 153 | struct buffer_head *bh, u16 rec_len) |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 154 | { |
| 155 | struct ocfs2_dir_block_trailer *trailer; |
| 156 | |
| 157 | trailer = ocfs2_trailer_from_bh(bh, inode->i_sb); |
| 158 | strcpy(trailer->db_signature, OCFS2_DIR_TRAILER_SIGNATURE); |
| 159 | trailer->db_compat_rec_len = |
| 160 | cpu_to_le16(sizeof(struct ocfs2_dir_block_trailer)); |
| 161 | trailer->db_parent_dinode = cpu_to_le64(OCFS2_I(inode)->ip_blkno); |
| 162 | trailer->db_blkno = cpu_to_le64(bh->b_blocknr); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 163 | trailer->db_free_rec_len = cpu_to_le16(rec_len); |
| 164 | } |
| 165 | /* |
| 166 | * Link an unindexed block with a dir trailer structure into the index free |
| 167 | * list. This function will modify dirdata_bh, but assumes you've already |
| 168 | * passed it to the journal. |
| 169 | */ |
| 170 | static int ocfs2_dx_dir_link_trailer(struct inode *dir, handle_t *handle, |
| 171 | struct buffer_head *dx_root_bh, |
| 172 | struct buffer_head *dirdata_bh) |
| 173 | { |
| 174 | int ret; |
| 175 | struct ocfs2_dx_root_block *dx_root; |
| 176 | struct ocfs2_dir_block_trailer *trailer; |
| 177 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 178 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 179 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 180 | if (ret) { |
| 181 | mlog_errno(ret); |
| 182 | goto out; |
| 183 | } |
| 184 | trailer = ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb); |
| 185 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 186 | |
| 187 | trailer->db_free_next = dx_root->dr_free_blk; |
| 188 | dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr); |
| 189 | |
| 190 | ocfs2_journal_dirty(handle, dx_root_bh); |
| 191 | |
| 192 | out: |
| 193 | return ret; |
| 194 | } |
| 195 | |
| 196 | static int ocfs2_free_list_at_root(struct ocfs2_dir_lookup_result *res) |
| 197 | { |
| 198 | return res->dl_prev_leaf_bh == NULL; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 199 | } |
| 200 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 201 | void ocfs2_free_dir_lookup_result(struct ocfs2_dir_lookup_result *res) |
| 202 | { |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 203 | brelse(res->dl_dx_root_bh); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 204 | brelse(res->dl_leaf_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 205 | brelse(res->dl_dx_leaf_bh); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 206 | brelse(res->dl_prev_leaf_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | static int ocfs2_dir_indexed(struct inode *inode) |
| 210 | { |
| 211 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INDEXED_DIR_FL) |
| 212 | return 1; |
| 213 | return 0; |
| 214 | } |
| 215 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 216 | static inline int ocfs2_dx_root_inline(struct ocfs2_dx_root_block *dx_root) |
| 217 | { |
| 218 | return dx_root->dr_flags & OCFS2_DX_FLAG_INLINE; |
| 219 | } |
| 220 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 221 | /* |
| 222 | * Hashing code adapted from ext3 |
| 223 | */ |
| 224 | #define DELTA 0x9E3779B9 |
| 225 | |
| 226 | static void TEA_transform(__u32 buf[4], __u32 const in[]) |
| 227 | { |
| 228 | __u32 sum = 0; |
| 229 | __u32 b0 = buf[0], b1 = buf[1]; |
| 230 | __u32 a = in[0], b = in[1], c = in[2], d = in[3]; |
| 231 | int n = 16; |
| 232 | |
| 233 | do { |
| 234 | sum += DELTA; |
| 235 | b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); |
| 236 | b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); |
| 237 | } while (--n); |
| 238 | |
| 239 | buf[0] += b0; |
| 240 | buf[1] += b1; |
| 241 | } |
| 242 | |
| 243 | static void str2hashbuf(const char *msg, int len, __u32 *buf, int num) |
| 244 | { |
| 245 | __u32 pad, val; |
| 246 | int i; |
| 247 | |
| 248 | pad = (__u32)len | ((__u32)len << 8); |
| 249 | pad |= pad << 16; |
| 250 | |
| 251 | val = pad; |
| 252 | if (len > num*4) |
| 253 | len = num * 4; |
| 254 | for (i = 0; i < len; i++) { |
| 255 | if ((i % 4) == 0) |
| 256 | val = pad; |
| 257 | val = msg[i] + (val << 8); |
| 258 | if ((i % 4) == 3) { |
| 259 | *buf++ = val; |
| 260 | val = pad; |
| 261 | num--; |
| 262 | } |
| 263 | } |
| 264 | if (--num >= 0) |
| 265 | *buf++ = val; |
| 266 | while (--num >= 0) |
| 267 | *buf++ = pad; |
| 268 | } |
| 269 | |
| 270 | static void ocfs2_dx_dir_name_hash(struct inode *dir, const char *name, int len, |
| 271 | struct ocfs2_dx_hinfo *hinfo) |
| 272 | { |
| 273 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 274 | const char *p; |
| 275 | __u32 in[8], buf[4]; |
| 276 | |
| 277 | /* |
| 278 | * XXX: Is this really necessary, if the index is never looked |
| 279 | * at by readdir? Is a hash value of '0' a bad idea? |
| 280 | */ |
| 281 | if ((len == 1 && !strncmp(".", name, 1)) || |
| 282 | (len == 2 && !strncmp("..", name, 2))) { |
| 283 | buf[0] = buf[1] = 0; |
| 284 | goto out; |
| 285 | } |
| 286 | |
| 287 | #ifdef OCFS2_DEBUG_DX_DIRS |
| 288 | /* |
| 289 | * This makes it very easy to debug indexing problems. We |
| 290 | * should never allow this to be selected without hand editing |
| 291 | * this file though. |
| 292 | */ |
| 293 | buf[0] = buf[1] = len; |
| 294 | goto out; |
| 295 | #endif |
| 296 | |
| 297 | memcpy(buf, osb->osb_dx_seed, sizeof(buf)); |
| 298 | |
| 299 | p = name; |
| 300 | while (len > 0) { |
| 301 | str2hashbuf(p, len, in, 4); |
| 302 | TEA_transform(buf, in); |
| 303 | len -= 16; |
| 304 | p += 16; |
| 305 | } |
| 306 | |
| 307 | out: |
| 308 | hinfo->major_hash = buf[0]; |
| 309 | hinfo->minor_hash = buf[1]; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 310 | } |
| 311 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 312 | /* |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 313 | * bh passed here can be an inode block or a dir data block, depending |
| 314 | * on the inode inline data flag. |
| 315 | */ |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 316 | static int ocfs2_check_dir_entry(struct inode * dir, |
| 317 | struct ocfs2_dir_entry * de, |
| 318 | struct buffer_head * bh, |
| 319 | unsigned long offset) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 320 | { |
| 321 | const char *error_msg = NULL; |
| 322 | const int rlen = le16_to_cpu(de->rec_len); |
| 323 | |
Tao Ma | 1dd9ffc | 2011-01-24 23:23:30 +0800 | [diff] [blame] | 324 | if (unlikely(rlen < OCFS2_DIR_REC_LEN(1))) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 325 | error_msg = "rec_len is smaller than minimal"; |
Tao Ma | 1dd9ffc | 2011-01-24 23:23:30 +0800 | [diff] [blame] | 326 | else if (unlikely(rlen % 4 != 0)) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 327 | error_msg = "rec_len % 4 != 0"; |
Tao Ma | 1dd9ffc | 2011-01-24 23:23:30 +0800 | [diff] [blame] | 328 | else if (unlikely(rlen < OCFS2_DIR_REC_LEN(de->name_len))) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 329 | error_msg = "rec_len is too small for name_len"; |
Tao Ma | 1dd9ffc | 2011-01-24 23:23:30 +0800 | [diff] [blame] | 330 | else if (unlikely( |
| 331 | ((char *) de - bh->b_data) + rlen > dir->i_sb->s_blocksize)) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 332 | error_msg = "directory entry across blocks"; |
| 333 | |
Tao Ma | 1dd9ffc | 2011-01-24 23:23:30 +0800 | [diff] [blame] | 334 | if (unlikely(error_msg != NULL)) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 335 | mlog(ML_ERROR, "bad entry in directory #%llu: %s - " |
| 336 | "offset=%lu, inode=%llu, rec_len=%d, name_len=%d\n", |
| 337 | (unsigned long long)OCFS2_I(dir)->ip_blkno, error_msg, |
| 338 | offset, (unsigned long long)le64_to_cpu(de->inode), rlen, |
| 339 | de->name_len); |
Tao Ma | 1dd9ffc | 2011-01-24 23:23:30 +0800 | [diff] [blame] | 340 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 341 | return error_msg == NULL ? 1 : 0; |
| 342 | } |
| 343 | |
| 344 | static inline int ocfs2_match(int len, |
| 345 | const char * const name, |
| 346 | struct ocfs2_dir_entry *de) |
| 347 | { |
| 348 | if (len != de->name_len) |
| 349 | return 0; |
| 350 | if (!de->inode) |
| 351 | return 0; |
| 352 | return !memcmp(name, de->name, len); |
| 353 | } |
| 354 | |
| 355 | /* |
| 356 | * Returns 0 if not found, -1 on failure, and 1 on success |
| 357 | */ |
Jesper Juhl | 42b16b3 | 2011-01-17 00:09:38 +0100 | [diff] [blame] | 358 | static inline int ocfs2_search_dirblock(struct buffer_head *bh, |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 359 | struct inode *dir, |
| 360 | const char *name, int namelen, |
| 361 | unsigned long offset, |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 362 | char *first_de, |
| 363 | unsigned int bytes, |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 364 | struct ocfs2_dir_entry **res_dir) |
| 365 | { |
| 366 | struct ocfs2_dir_entry *de; |
| 367 | char *dlimit, *de_buf; |
| 368 | int de_len; |
| 369 | int ret = 0; |
| 370 | |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 371 | de_buf = first_de; |
| 372 | dlimit = de_buf + bytes; |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 373 | |
| 374 | while (de_buf < dlimit) { |
| 375 | /* this code is executed quadratically often */ |
| 376 | /* do minimal checking `by hand' */ |
| 377 | |
| 378 | de = (struct ocfs2_dir_entry *) de_buf; |
| 379 | |
| 380 | if (de_buf + namelen <= dlimit && |
| 381 | ocfs2_match(namelen, name, de)) { |
| 382 | /* found a match - just to be sure, do a full check */ |
| 383 | if (!ocfs2_check_dir_entry(dir, de, bh, offset)) { |
| 384 | ret = -1; |
| 385 | goto bail; |
| 386 | } |
| 387 | *res_dir = de; |
| 388 | ret = 1; |
| 389 | goto bail; |
| 390 | } |
| 391 | |
| 392 | /* prevent looping on a bad block */ |
| 393 | de_len = le16_to_cpu(de->rec_len); |
| 394 | if (de_len <= 0) { |
| 395 | ret = -1; |
| 396 | goto bail; |
| 397 | } |
| 398 | |
| 399 | de_buf += de_len; |
| 400 | offset += de_len; |
| 401 | } |
| 402 | |
| 403 | bail: |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 404 | trace_ocfs2_search_dirblock(ret); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 405 | return ret; |
| 406 | } |
| 407 | |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 408 | static struct buffer_head *ocfs2_find_entry_id(const char *name, |
| 409 | int namelen, |
| 410 | struct inode *dir, |
| 411 | struct ocfs2_dir_entry **res_dir) |
| 412 | { |
| 413 | int ret, found; |
| 414 | struct buffer_head *di_bh = NULL; |
| 415 | struct ocfs2_dinode *di; |
| 416 | struct ocfs2_inline_data *data; |
| 417 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 418 | ret = ocfs2_read_inode_block(dir, &di_bh); |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 419 | if (ret) { |
| 420 | mlog_errno(ret); |
| 421 | goto out; |
| 422 | } |
| 423 | |
| 424 | di = (struct ocfs2_dinode *)di_bh->b_data; |
| 425 | data = &di->id2.i_data; |
| 426 | |
| 427 | found = ocfs2_search_dirblock(di_bh, dir, name, namelen, 0, |
| 428 | data->id_data, i_size_read(dir), res_dir); |
| 429 | if (found == 1) |
| 430 | return di_bh; |
| 431 | |
| 432 | brelse(di_bh); |
| 433 | out: |
| 434 | return NULL; |
| 435 | } |
| 436 | |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 437 | static int ocfs2_validate_dir_block(struct super_block *sb, |
| 438 | struct buffer_head *bh) |
| 439 | { |
Joel Becker | c175a51 | 2008-12-10 17:58:22 -0800 | [diff] [blame] | 440 | int rc; |
| 441 | struct ocfs2_dir_block_trailer *trailer = |
| 442 | ocfs2_trailer_from_bh(bh, sb); |
| 443 | |
| 444 | |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 445 | /* |
Joel Becker | c175a51 | 2008-12-10 17:58:22 -0800 | [diff] [blame] | 446 | * We don't validate dirents here, that's handled |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 447 | * in-place when the code walks them. |
| 448 | */ |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 449 | trace_ocfs2_validate_dir_block((unsigned long long)bh->b_blocknr); |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 450 | |
Joel Becker | c175a51 | 2008-12-10 17:58:22 -0800 | [diff] [blame] | 451 | BUG_ON(!buffer_uptodate(bh)); |
| 452 | |
| 453 | /* |
| 454 | * If the ecc fails, we return the error but otherwise |
| 455 | * leave the filesystem running. We know any error is |
| 456 | * local to this block. |
| 457 | * |
| 458 | * Note that we are safe to call this even if the directory |
| 459 | * doesn't have a trailer. Filesystems without metaecc will do |
| 460 | * nothing, and filesystems with it will have one. |
| 461 | */ |
| 462 | rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &trailer->db_check); |
| 463 | if (rc) |
| 464 | mlog(ML_ERROR, "Checksum failed for dinode %llu\n", |
| 465 | (unsigned long long)bh->b_blocknr); |
| 466 | |
| 467 | return rc; |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | /* |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 471 | * Validate a directory trailer. |
| 472 | * |
| 473 | * We check the trailer here rather than in ocfs2_validate_dir_block() |
| 474 | * because that function doesn't have the inode to test. |
| 475 | */ |
| 476 | static int ocfs2_check_dir_trailer(struct inode *dir, struct buffer_head *bh) |
| 477 | { |
| 478 | int rc = 0; |
| 479 | struct ocfs2_dir_block_trailer *trailer; |
| 480 | |
| 481 | trailer = ocfs2_trailer_from_bh(bh, dir->i_sb); |
| 482 | if (!OCFS2_IS_VALID_DIR_TRAILER(trailer)) { |
| 483 | rc = -EINVAL; |
| 484 | ocfs2_error(dir->i_sb, |
| 485 | "Invalid dirblock #%llu: " |
| 486 | "signature = %.*s\n", |
| 487 | (unsigned long long)bh->b_blocknr, 7, |
| 488 | trailer->db_signature); |
| 489 | goto out; |
| 490 | } |
| 491 | if (le64_to_cpu(trailer->db_blkno) != bh->b_blocknr) { |
| 492 | rc = -EINVAL; |
| 493 | ocfs2_error(dir->i_sb, |
| 494 | "Directory block #%llu has an invalid " |
| 495 | "db_blkno of %llu", |
| 496 | (unsigned long long)bh->b_blocknr, |
| 497 | (unsigned long long)le64_to_cpu(trailer->db_blkno)); |
| 498 | goto out; |
| 499 | } |
| 500 | if (le64_to_cpu(trailer->db_parent_dinode) != |
| 501 | OCFS2_I(dir)->ip_blkno) { |
| 502 | rc = -EINVAL; |
| 503 | ocfs2_error(dir->i_sb, |
| 504 | "Directory block #%llu on dinode " |
| 505 | "#%llu has an invalid parent_dinode " |
| 506 | "of %llu", |
| 507 | (unsigned long long)bh->b_blocknr, |
| 508 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 509 | (unsigned long long)le64_to_cpu(trailer->db_blkno)); |
| 510 | goto out; |
| 511 | } |
| 512 | out: |
| 513 | return rc; |
| 514 | } |
| 515 | |
| 516 | /* |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 517 | * This function forces all errors to -EIO for consistency with its |
| 518 | * predecessor, ocfs2_bread(). We haven't audited what returning the |
| 519 | * real error codes would do to callers. We log the real codes with |
| 520 | * mlog_errno() before we squash them. |
| 521 | */ |
| 522 | static int ocfs2_read_dir_block(struct inode *inode, u64 v_block, |
| 523 | struct buffer_head **bh, int flags) |
| 524 | { |
| 525 | int rc = 0; |
| 526 | struct buffer_head *tmp = *bh; |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 527 | |
Joel Becker | 511308d | 2008-11-13 14:49:21 -0800 | [diff] [blame] | 528 | rc = ocfs2_read_virt_blocks(inode, v_block, 1, &tmp, flags, |
| 529 | ocfs2_validate_dir_block); |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 530 | if (rc) { |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 531 | mlog_errno(rc); |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 532 | goto out; |
| 533 | } |
| 534 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 535 | if (!(flags & OCFS2_BH_READAHEAD) && |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 536 | ocfs2_supports_dir_trailer(inode)) { |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 537 | rc = ocfs2_check_dir_trailer(inode, tmp); |
| 538 | if (rc) { |
| 539 | if (!*bh) |
| 540 | brelse(tmp); |
| 541 | mlog_errno(rc); |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 542 | goto out; |
| 543 | } |
| 544 | } |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 545 | |
Joel Becker | 511308d | 2008-11-13 14:49:21 -0800 | [diff] [blame] | 546 | /* If ocfs2_read_virt_blocks() got us a new bh, pass it up. */ |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 547 | if (!*bh) |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 548 | *bh = tmp; |
| 549 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 550 | out: |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 551 | return rc ? -EIO : 0; |
| 552 | } |
| 553 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 554 | /* |
| 555 | * Read the block at 'phys' which belongs to this directory |
| 556 | * inode. This function does no virtual->physical block translation - |
| 557 | * what's passed in is assumed to be a valid directory block. |
| 558 | */ |
| 559 | static int ocfs2_read_dir_block_direct(struct inode *dir, u64 phys, |
| 560 | struct buffer_head **bh) |
| 561 | { |
| 562 | int ret; |
| 563 | struct buffer_head *tmp = *bh; |
| 564 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 565 | ret = ocfs2_read_block(INODE_CACHE(dir), phys, &tmp, |
| 566 | ocfs2_validate_dir_block); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 567 | if (ret) { |
| 568 | mlog_errno(ret); |
| 569 | goto out; |
| 570 | } |
| 571 | |
| 572 | if (ocfs2_supports_dir_trailer(dir)) { |
| 573 | ret = ocfs2_check_dir_trailer(dir, tmp); |
| 574 | if (ret) { |
| 575 | if (!*bh) |
| 576 | brelse(tmp); |
| 577 | mlog_errno(ret); |
| 578 | goto out; |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | if (!ret && !*bh) |
| 583 | *bh = tmp; |
| 584 | out: |
| 585 | return ret; |
| 586 | } |
| 587 | |
| 588 | static int ocfs2_validate_dx_root(struct super_block *sb, |
| 589 | struct buffer_head *bh) |
| 590 | { |
| 591 | int ret; |
| 592 | struct ocfs2_dx_root_block *dx_root; |
| 593 | |
| 594 | BUG_ON(!buffer_uptodate(bh)); |
| 595 | |
| 596 | dx_root = (struct ocfs2_dx_root_block *) bh->b_data; |
| 597 | |
| 598 | ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_root->dr_check); |
| 599 | if (ret) { |
| 600 | mlog(ML_ERROR, |
| 601 | "Checksum failed for dir index root block %llu\n", |
| 602 | (unsigned long long)bh->b_blocknr); |
| 603 | return ret; |
| 604 | } |
| 605 | |
| 606 | if (!OCFS2_IS_VALID_DX_ROOT(dx_root)) { |
| 607 | ocfs2_error(sb, |
| 608 | "Dir Index Root # %llu has bad signature %.*s", |
| 609 | (unsigned long long)le64_to_cpu(dx_root->dr_blkno), |
| 610 | 7, dx_root->dr_signature); |
| 611 | return -EINVAL; |
| 612 | } |
| 613 | |
| 614 | return 0; |
| 615 | } |
| 616 | |
| 617 | static int ocfs2_read_dx_root(struct inode *dir, struct ocfs2_dinode *di, |
| 618 | struct buffer_head **dx_root_bh) |
| 619 | { |
| 620 | int ret; |
| 621 | u64 blkno = le64_to_cpu(di->i_dx_root); |
| 622 | struct buffer_head *tmp = *dx_root_bh; |
| 623 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 624 | ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp, |
| 625 | ocfs2_validate_dx_root); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 626 | |
| 627 | /* If ocfs2_read_block() got us a new bh, pass it up. */ |
| 628 | if (!ret && !*dx_root_bh) |
| 629 | *dx_root_bh = tmp; |
| 630 | |
| 631 | return ret; |
| 632 | } |
| 633 | |
| 634 | static int ocfs2_validate_dx_leaf(struct super_block *sb, |
| 635 | struct buffer_head *bh) |
| 636 | { |
| 637 | int ret; |
| 638 | struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)bh->b_data; |
| 639 | |
| 640 | BUG_ON(!buffer_uptodate(bh)); |
| 641 | |
| 642 | ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_leaf->dl_check); |
| 643 | if (ret) { |
| 644 | mlog(ML_ERROR, |
| 645 | "Checksum failed for dir index leaf block %llu\n", |
| 646 | (unsigned long long)bh->b_blocknr); |
| 647 | return ret; |
| 648 | } |
| 649 | |
| 650 | if (!OCFS2_IS_VALID_DX_LEAF(dx_leaf)) { |
| 651 | ocfs2_error(sb, "Dir Index Leaf has bad signature %.*s", |
| 652 | 7, dx_leaf->dl_signature); |
| 653 | return -EROFS; |
| 654 | } |
| 655 | |
| 656 | return 0; |
| 657 | } |
| 658 | |
| 659 | static int ocfs2_read_dx_leaf(struct inode *dir, u64 blkno, |
| 660 | struct buffer_head **dx_leaf_bh) |
| 661 | { |
| 662 | int ret; |
| 663 | struct buffer_head *tmp = *dx_leaf_bh; |
| 664 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 665 | ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp, |
| 666 | ocfs2_validate_dx_leaf); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 667 | |
| 668 | /* If ocfs2_read_block() got us a new bh, pass it up. */ |
| 669 | if (!ret && !*dx_leaf_bh) |
| 670 | *dx_leaf_bh = tmp; |
| 671 | |
| 672 | return ret; |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | * Read a series of dx_leaf blocks. This expects all buffer_head |
| 677 | * pointers to be NULL on function entry. |
| 678 | */ |
| 679 | static int ocfs2_read_dx_leaves(struct inode *dir, u64 start, int num, |
| 680 | struct buffer_head **dx_leaf_bhs) |
| 681 | { |
| 682 | int ret; |
| 683 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 684 | ret = ocfs2_read_blocks(INODE_CACHE(dir), start, num, dx_leaf_bhs, 0, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 685 | ocfs2_validate_dx_leaf); |
| 686 | if (ret) |
| 687 | mlog_errno(ret); |
| 688 | |
| 689 | return ret; |
| 690 | } |
| 691 | |
Adrian Bunk | 0af4bd3 | 2007-10-24 18:23:27 +0200 | [diff] [blame] | 692 | static struct buffer_head *ocfs2_find_entry_el(const char *name, int namelen, |
| 693 | struct inode *dir, |
| 694 | struct ocfs2_dir_entry **res_dir) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 695 | { |
| 696 | struct super_block *sb; |
| 697 | struct buffer_head *bh_use[NAMEI_RA_SIZE]; |
| 698 | struct buffer_head *bh, *ret = NULL; |
| 699 | unsigned long start, block, b; |
| 700 | int ra_max = 0; /* Number of bh's in the readahead |
| 701 | buffer, bh_use[] */ |
| 702 | int ra_ptr = 0; /* Current index into readahead |
| 703 | buffer */ |
| 704 | int num = 0; |
| 705 | int nblocks, i, err; |
| 706 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 707 | sb = dir->i_sb; |
| 708 | |
| 709 | nblocks = i_size_read(dir) >> sb->s_blocksize_bits; |
| 710 | start = OCFS2_I(dir)->ip_dir_start_lookup; |
| 711 | if (start >= nblocks) |
| 712 | start = 0; |
| 713 | block = start; |
| 714 | |
| 715 | restart: |
| 716 | do { |
| 717 | /* |
| 718 | * We deal with the read-ahead logic here. |
| 719 | */ |
| 720 | if (ra_ptr >= ra_max) { |
| 721 | /* Refill the readahead buffer */ |
| 722 | ra_ptr = 0; |
| 723 | b = block; |
| 724 | for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) { |
| 725 | /* |
| 726 | * Terminate if we reach the end of the |
| 727 | * directory and must wrap, or if our |
| 728 | * search has finished at this block. |
| 729 | */ |
| 730 | if (b >= nblocks || (num && block == start)) { |
| 731 | bh_use[ra_max] = NULL; |
| 732 | break; |
| 733 | } |
| 734 | num++; |
| 735 | |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 736 | bh = NULL; |
| 737 | err = ocfs2_read_dir_block(dir, b++, &bh, |
| 738 | OCFS2_BH_READAHEAD); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 739 | bh_use[ra_max] = bh; |
| 740 | } |
| 741 | } |
| 742 | if ((bh = bh_use[ra_ptr++]) == NULL) |
| 743 | goto next; |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 744 | if (ocfs2_read_dir_block(dir, block, &bh, 0)) { |
Joel Becker | 5e0b3de | 2008-10-09 17:20:33 -0700 | [diff] [blame] | 745 | /* read error, skip block & hope for the best. |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 746 | * ocfs2_read_dir_block() has released the bh. */ |
jiangyiwen | 61fb9ea | 2014-12-10 15:42:02 -0800 | [diff] [blame] | 747 | mlog(ML_ERROR, "reading directory %llu, " |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 748 | "offset %lu\n", |
| 749 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 750 | block); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 751 | goto next; |
| 752 | } |
| 753 | i = ocfs2_search_dirblock(bh, dir, name, namelen, |
| 754 | block << sb->s_blocksize_bits, |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 755 | bh->b_data, sb->s_blocksize, |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 756 | res_dir); |
| 757 | if (i == 1) { |
| 758 | OCFS2_I(dir)->ip_dir_start_lookup = block; |
| 759 | ret = bh; |
| 760 | goto cleanup_and_exit; |
| 761 | } else { |
| 762 | brelse(bh); |
| 763 | if (i < 0) |
| 764 | goto cleanup_and_exit; |
| 765 | } |
| 766 | next: |
| 767 | if (++block >= nblocks) |
| 768 | block = 0; |
| 769 | } while (block != start); |
| 770 | |
| 771 | /* |
| 772 | * If the directory has grown while we were searching, then |
| 773 | * search the last part of the directory before giving up. |
| 774 | */ |
| 775 | block = nblocks; |
| 776 | nblocks = i_size_read(dir) >> sb->s_blocksize_bits; |
| 777 | if (block < nblocks) { |
| 778 | start = 0; |
| 779 | goto restart; |
| 780 | } |
| 781 | |
| 782 | cleanup_and_exit: |
| 783 | /* Clean up the read-ahead blocks */ |
| 784 | for (; ra_ptr < ra_max; ra_ptr++) |
| 785 | brelse(bh_use[ra_ptr]); |
| 786 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 787 | trace_ocfs2_find_entry_el(ret); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 788 | return ret; |
| 789 | } |
| 790 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 791 | static int ocfs2_dx_dir_lookup_rec(struct inode *inode, |
| 792 | struct ocfs2_extent_list *el, |
| 793 | u32 major_hash, |
| 794 | u32 *ret_cpos, |
| 795 | u64 *ret_phys_blkno, |
| 796 | unsigned int *ret_clen) |
| 797 | { |
| 798 | int ret = 0, i, found; |
| 799 | struct buffer_head *eb_bh = NULL; |
| 800 | struct ocfs2_extent_block *eb; |
| 801 | struct ocfs2_extent_rec *rec = NULL; |
| 802 | |
| 803 | if (el->l_tree_depth) { |
Joel Becker | facdb77 | 2009-02-12 18:08:48 -0800 | [diff] [blame] | 804 | ret = ocfs2_find_leaf(INODE_CACHE(inode), el, major_hash, |
| 805 | &eb_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 806 | if (ret) { |
| 807 | mlog_errno(ret); |
| 808 | goto out; |
| 809 | } |
| 810 | |
| 811 | eb = (struct ocfs2_extent_block *) eb_bh->b_data; |
| 812 | el = &eb->h_list; |
| 813 | |
| 814 | if (el->l_tree_depth) { |
| 815 | ocfs2_error(inode->i_sb, |
| 816 | "Inode %lu has non zero tree depth in " |
| 817 | "btree tree block %llu\n", inode->i_ino, |
| 818 | (unsigned long long)eb_bh->b_blocknr); |
| 819 | ret = -EROFS; |
| 820 | goto out; |
| 821 | } |
| 822 | } |
| 823 | |
| 824 | found = 0; |
| 825 | for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) { |
| 826 | rec = &el->l_recs[i]; |
| 827 | |
| 828 | if (le32_to_cpu(rec->e_cpos) <= major_hash) { |
| 829 | found = 1; |
| 830 | break; |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | if (!found) { |
| 835 | ocfs2_error(inode->i_sb, "Inode %lu has bad extent " |
| 836 | "record (%u, %u, 0) in btree", inode->i_ino, |
| 837 | le32_to_cpu(rec->e_cpos), |
| 838 | ocfs2_rec_clusters(el, rec)); |
| 839 | ret = -EROFS; |
| 840 | goto out; |
| 841 | } |
| 842 | |
| 843 | if (ret_phys_blkno) |
| 844 | *ret_phys_blkno = le64_to_cpu(rec->e_blkno); |
| 845 | if (ret_cpos) |
| 846 | *ret_cpos = le32_to_cpu(rec->e_cpos); |
| 847 | if (ret_clen) |
| 848 | *ret_clen = le16_to_cpu(rec->e_leaf_clusters); |
| 849 | |
| 850 | out: |
| 851 | brelse(eb_bh); |
| 852 | return ret; |
| 853 | } |
| 854 | |
| 855 | /* |
| 856 | * Returns the block index, from the start of the cluster which this |
| 857 | * hash belongs too. |
| 858 | */ |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 859 | static inline unsigned int __ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb, |
| 860 | u32 minor_hash) |
| 861 | { |
| 862 | return minor_hash & osb->osb_dx_mask; |
| 863 | } |
| 864 | |
| 865 | static inline unsigned int ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 866 | struct ocfs2_dx_hinfo *hinfo) |
| 867 | { |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 868 | return __ocfs2_dx_dir_hash_idx(osb, hinfo->minor_hash); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | static int ocfs2_dx_dir_lookup(struct inode *inode, |
| 872 | struct ocfs2_extent_list *el, |
| 873 | struct ocfs2_dx_hinfo *hinfo, |
| 874 | u32 *ret_cpos, |
| 875 | u64 *ret_phys_blkno) |
| 876 | { |
| 877 | int ret = 0; |
| 878 | unsigned int cend, uninitialized_var(clen); |
| 879 | u32 uninitialized_var(cpos); |
| 880 | u64 uninitialized_var(blkno); |
| 881 | u32 name_hash = hinfo->major_hash; |
| 882 | |
| 883 | ret = ocfs2_dx_dir_lookup_rec(inode, el, name_hash, &cpos, &blkno, |
| 884 | &clen); |
| 885 | if (ret) { |
| 886 | mlog_errno(ret); |
| 887 | goto out; |
| 888 | } |
| 889 | |
| 890 | cend = cpos + clen; |
| 891 | if (name_hash >= cend) { |
| 892 | /* We want the last cluster */ |
| 893 | blkno += ocfs2_clusters_to_blocks(inode->i_sb, clen - 1); |
| 894 | cpos += clen - 1; |
| 895 | } else { |
| 896 | blkno += ocfs2_clusters_to_blocks(inode->i_sb, |
| 897 | name_hash - cpos); |
| 898 | cpos = name_hash; |
| 899 | } |
| 900 | |
| 901 | /* |
| 902 | * We now have the cluster which should hold our entry. To |
| 903 | * find the exact block from the start of the cluster to |
| 904 | * search, we take the lower bits of the hash. |
| 905 | */ |
| 906 | blkno += ocfs2_dx_dir_hash_idx(OCFS2_SB(inode->i_sb), hinfo); |
| 907 | |
| 908 | if (ret_phys_blkno) |
| 909 | *ret_phys_blkno = blkno; |
| 910 | if (ret_cpos) |
| 911 | *ret_cpos = cpos; |
| 912 | |
| 913 | out: |
| 914 | |
| 915 | return ret; |
| 916 | } |
| 917 | |
| 918 | static int ocfs2_dx_dir_search(const char *name, int namelen, |
| 919 | struct inode *dir, |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 920 | struct ocfs2_dx_root_block *dx_root, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 921 | struct ocfs2_dir_lookup_result *res) |
| 922 | { |
| 923 | int ret, i, found; |
| 924 | u64 uninitialized_var(phys); |
| 925 | struct buffer_head *dx_leaf_bh = NULL; |
| 926 | struct ocfs2_dx_leaf *dx_leaf; |
| 927 | struct ocfs2_dx_entry *dx_entry = NULL; |
| 928 | struct buffer_head *dir_ent_bh = NULL; |
| 929 | struct ocfs2_dir_entry *dir_ent = NULL; |
| 930 | struct ocfs2_dx_hinfo *hinfo = &res->dl_hinfo; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 931 | struct ocfs2_extent_list *dr_el; |
| 932 | struct ocfs2_dx_entry_list *entry_list; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 933 | |
| 934 | ocfs2_dx_dir_name_hash(dir, name, namelen, &res->dl_hinfo); |
| 935 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 936 | if (ocfs2_dx_root_inline(dx_root)) { |
| 937 | entry_list = &dx_root->dr_entries; |
| 938 | goto search; |
| 939 | } |
| 940 | |
| 941 | dr_el = &dx_root->dr_list; |
| 942 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 943 | ret = ocfs2_dx_dir_lookup(dir, dr_el, hinfo, NULL, &phys); |
| 944 | if (ret) { |
| 945 | mlog_errno(ret); |
| 946 | goto out; |
| 947 | } |
| 948 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 949 | trace_ocfs2_dx_dir_search((unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 950 | namelen, name, hinfo->major_hash, |
| 951 | hinfo->minor_hash, (unsigned long long)phys); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 952 | |
| 953 | ret = ocfs2_read_dx_leaf(dir, phys, &dx_leaf_bh); |
| 954 | if (ret) { |
| 955 | mlog_errno(ret); |
| 956 | goto out; |
| 957 | } |
| 958 | |
| 959 | dx_leaf = (struct ocfs2_dx_leaf *) dx_leaf_bh->b_data; |
| 960 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 961 | trace_ocfs2_dx_dir_search_leaf_info( |
| 962 | le16_to_cpu(dx_leaf->dl_list.de_num_used), |
| 963 | le16_to_cpu(dx_leaf->dl_list.de_count)); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 964 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 965 | entry_list = &dx_leaf->dl_list; |
| 966 | |
| 967 | search: |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 968 | /* |
| 969 | * Empty leaf is legal, so no need to check for that. |
| 970 | */ |
| 971 | found = 0; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 972 | for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) { |
| 973 | dx_entry = &entry_list->de_entries[i]; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 974 | |
| 975 | if (hinfo->major_hash != le32_to_cpu(dx_entry->dx_major_hash) |
| 976 | || hinfo->minor_hash != le32_to_cpu(dx_entry->dx_minor_hash)) |
| 977 | continue; |
| 978 | |
| 979 | /* |
| 980 | * Search unindexed leaf block now. We're not |
| 981 | * guaranteed to find anything. |
| 982 | */ |
| 983 | ret = ocfs2_read_dir_block_direct(dir, |
| 984 | le64_to_cpu(dx_entry->dx_dirent_blk), |
| 985 | &dir_ent_bh); |
| 986 | if (ret) { |
| 987 | mlog_errno(ret); |
| 988 | goto out; |
| 989 | } |
| 990 | |
| 991 | /* |
| 992 | * XXX: We should check the unindexed block here, |
| 993 | * before using it. |
| 994 | */ |
| 995 | |
| 996 | found = ocfs2_search_dirblock(dir_ent_bh, dir, name, namelen, |
| 997 | 0, dir_ent_bh->b_data, |
| 998 | dir->i_sb->s_blocksize, &dir_ent); |
| 999 | if (found == 1) |
| 1000 | break; |
| 1001 | |
| 1002 | if (found == -1) { |
| 1003 | /* This means we found a bad directory entry. */ |
| 1004 | ret = -EIO; |
| 1005 | mlog_errno(ret); |
| 1006 | goto out; |
| 1007 | } |
| 1008 | |
| 1009 | brelse(dir_ent_bh); |
| 1010 | dir_ent_bh = NULL; |
| 1011 | } |
| 1012 | |
| 1013 | if (found <= 0) { |
| 1014 | ret = -ENOENT; |
| 1015 | goto out; |
| 1016 | } |
| 1017 | |
| 1018 | res->dl_leaf_bh = dir_ent_bh; |
| 1019 | res->dl_entry = dir_ent; |
| 1020 | res->dl_dx_leaf_bh = dx_leaf_bh; |
| 1021 | res->dl_dx_entry = dx_entry; |
| 1022 | |
| 1023 | ret = 0; |
| 1024 | out: |
| 1025 | if (ret) { |
| 1026 | brelse(dx_leaf_bh); |
| 1027 | brelse(dir_ent_bh); |
| 1028 | } |
| 1029 | return ret; |
| 1030 | } |
| 1031 | |
| 1032 | static int ocfs2_find_entry_dx(const char *name, int namelen, |
| 1033 | struct inode *dir, |
| 1034 | struct ocfs2_dir_lookup_result *lookup) |
| 1035 | { |
| 1036 | int ret; |
| 1037 | struct buffer_head *di_bh = NULL; |
| 1038 | struct ocfs2_dinode *di; |
| 1039 | struct buffer_head *dx_root_bh = NULL; |
| 1040 | struct ocfs2_dx_root_block *dx_root; |
| 1041 | |
| 1042 | ret = ocfs2_read_inode_block(dir, &di_bh); |
| 1043 | if (ret) { |
| 1044 | mlog_errno(ret); |
| 1045 | goto out; |
| 1046 | } |
| 1047 | |
| 1048 | di = (struct ocfs2_dinode *)di_bh->b_data; |
| 1049 | |
| 1050 | ret = ocfs2_read_dx_root(dir, di, &dx_root_bh); |
| 1051 | if (ret) { |
| 1052 | mlog_errno(ret); |
| 1053 | goto out; |
| 1054 | } |
| 1055 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; |
| 1056 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1057 | ret = ocfs2_dx_dir_search(name, namelen, dir, dx_root, lookup); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1058 | if (ret) { |
| 1059 | if (ret != -ENOENT) |
| 1060 | mlog_errno(ret); |
| 1061 | goto out; |
| 1062 | } |
| 1063 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1064 | lookup->dl_dx_root_bh = dx_root_bh; |
| 1065 | dx_root_bh = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1066 | out: |
| 1067 | brelse(di_bh); |
| 1068 | brelse(dx_root_bh); |
| 1069 | return ret; |
| 1070 | } |
| 1071 | |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1072 | /* |
| 1073 | * Try to find an entry of the provided name within 'dir'. |
| 1074 | * |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1075 | * If nothing was found, -ENOENT is returned. Otherwise, zero is |
| 1076 | * returned and the struct 'res' will contain information useful to |
| 1077 | * other directory manipulation functions. |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1078 | * |
| 1079 | * Caller can NOT assume anything about the contents of the |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1080 | * buffer_heads - they are passed back only so that it can be passed |
| 1081 | * into any one of the manipulation functions (add entry, delete |
| 1082 | * entry, etc). As an example, bh in the extent directory case is a |
| 1083 | * data block, in the inline-data case it actually points to an inode, |
| 1084 | * in the indexed directory case, multiple buffers are involved. |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1085 | */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1086 | int ocfs2_find_entry(const char *name, int namelen, |
| 1087 | struct inode *dir, struct ocfs2_dir_lookup_result *lookup) |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1088 | { |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1089 | struct buffer_head *bh; |
| 1090 | struct ocfs2_dir_entry *res_dir = NULL; |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1091 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1092 | if (ocfs2_dir_indexed(dir)) |
| 1093 | return ocfs2_find_entry_dx(name, namelen, dir, lookup); |
| 1094 | |
| 1095 | /* |
| 1096 | * The unindexed dir code only uses part of the lookup |
| 1097 | * structure, so there's no reason to push it down further |
| 1098 | * than this. |
| 1099 | */ |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1100 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1101 | bh = ocfs2_find_entry_id(name, namelen, dir, &res_dir); |
| 1102 | else |
| 1103 | bh = ocfs2_find_entry_el(name, namelen, dir, &res_dir); |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1104 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1105 | if (bh == NULL) |
| 1106 | return -ENOENT; |
| 1107 | |
| 1108 | lookup->dl_leaf_bh = bh; |
| 1109 | lookup->dl_entry = res_dir; |
| 1110 | return 0; |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1111 | } |
| 1112 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1113 | /* |
| 1114 | * Update inode number and type of a previously found directory entry. |
| 1115 | */ |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1116 | int ocfs2_update_entry(struct inode *dir, handle_t *handle, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1117 | struct ocfs2_dir_lookup_result *res, |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1118 | struct inode *new_entry_inode) |
| 1119 | { |
| 1120 | int ret; |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1121 | ocfs2_journal_access_func access = ocfs2_journal_access_db; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1122 | struct ocfs2_dir_entry *de = res->dl_entry; |
| 1123 | struct buffer_head *de_bh = res->dl_leaf_bh; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1124 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1125 | /* |
| 1126 | * The same code works fine for both inline-data and extent |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1127 | * based directories, so no need to split this up. The only |
| 1128 | * difference is the journal_access function. |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1129 | */ |
| 1130 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1131 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
| 1132 | access = ocfs2_journal_access_di; |
| 1133 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1134 | ret = access(handle, INODE_CACHE(dir), de_bh, |
| 1135 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1136 | if (ret) { |
| 1137 | mlog_errno(ret); |
| 1138 | goto out; |
| 1139 | } |
| 1140 | |
| 1141 | de->inode = cpu_to_le64(OCFS2_I(new_entry_inode)->ip_blkno); |
| 1142 | ocfs2_set_de_type(de, new_entry_inode->i_mode); |
| 1143 | |
| 1144 | ocfs2_journal_dirty(handle, de_bh); |
| 1145 | |
| 1146 | out: |
| 1147 | return ret; |
| 1148 | } |
| 1149 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1150 | /* |
| 1151 | * __ocfs2_delete_entry deletes a directory entry by merging it with the |
| 1152 | * previous entry |
| 1153 | */ |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1154 | static int __ocfs2_delete_entry(handle_t *handle, struct inode *dir, |
| 1155 | struct ocfs2_dir_entry *de_del, |
| 1156 | struct buffer_head *bh, char *first_de, |
| 1157 | unsigned int bytes) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1158 | { |
| 1159 | struct ocfs2_dir_entry *de, *pde; |
| 1160 | int i, status = -ENOENT; |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1161 | ocfs2_journal_access_func access = ocfs2_journal_access_db; |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1162 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1163 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
| 1164 | access = ocfs2_journal_access_di; |
| 1165 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1166 | i = 0; |
| 1167 | pde = NULL; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1168 | de = (struct ocfs2_dir_entry *) first_de; |
| 1169 | while (i < bytes) { |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1170 | if (!ocfs2_check_dir_entry(dir, de, bh, i)) { |
| 1171 | status = -EIO; |
| 1172 | mlog_errno(status); |
| 1173 | goto bail; |
| 1174 | } |
| 1175 | if (de == de_del) { |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1176 | status = access(handle, INODE_CACHE(dir), bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1177 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1178 | if (status < 0) { |
| 1179 | status = -EIO; |
| 1180 | mlog_errno(status); |
| 1181 | goto bail; |
| 1182 | } |
| 1183 | if (pde) |
Marcin Slusarz | 0dd3256 | 2008-02-13 00:06:18 +0100 | [diff] [blame] | 1184 | le16_add_cpu(&pde->rec_len, |
| 1185 | le16_to_cpu(de->rec_len)); |
Wengang Wang | 8298524 | 2011-07-12 16:43:14 +0800 | [diff] [blame] | 1186 | de->inode = 0; |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1187 | dir->i_version++; |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1188 | ocfs2_journal_dirty(handle, bh); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1189 | goto bail; |
| 1190 | } |
| 1191 | i += le16_to_cpu(de->rec_len); |
| 1192 | pde = de; |
| 1193 | de = (struct ocfs2_dir_entry *)((char *)de + le16_to_cpu(de->rec_len)); |
| 1194 | } |
| 1195 | bail: |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1196 | return status; |
| 1197 | } |
| 1198 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1199 | static unsigned int ocfs2_figure_dirent_hole(struct ocfs2_dir_entry *de) |
| 1200 | { |
| 1201 | unsigned int hole; |
| 1202 | |
| 1203 | if (le64_to_cpu(de->inode) == 0) |
| 1204 | hole = le16_to_cpu(de->rec_len); |
| 1205 | else |
| 1206 | hole = le16_to_cpu(de->rec_len) - |
| 1207 | OCFS2_DIR_REC_LEN(de->name_len); |
| 1208 | |
| 1209 | return hole; |
| 1210 | } |
| 1211 | |
| 1212 | static int ocfs2_find_max_rec_len(struct super_block *sb, |
| 1213 | struct buffer_head *dirblock_bh) |
| 1214 | { |
| 1215 | int size, this_hole, largest_hole = 0; |
| 1216 | char *trailer, *de_buf, *limit, *start = dirblock_bh->b_data; |
| 1217 | struct ocfs2_dir_entry *de; |
| 1218 | |
| 1219 | trailer = (char *)ocfs2_trailer_from_bh(dirblock_bh, sb); |
| 1220 | size = ocfs2_dir_trailer_blk_off(sb); |
| 1221 | limit = start + size; |
| 1222 | de_buf = start; |
| 1223 | de = (struct ocfs2_dir_entry *)de_buf; |
| 1224 | do { |
| 1225 | if (de_buf != trailer) { |
| 1226 | this_hole = ocfs2_figure_dirent_hole(de); |
| 1227 | if (this_hole > largest_hole) |
| 1228 | largest_hole = this_hole; |
| 1229 | } |
| 1230 | |
| 1231 | de_buf += le16_to_cpu(de->rec_len); |
| 1232 | de = (struct ocfs2_dir_entry *)de_buf; |
| 1233 | } while (de_buf < limit); |
| 1234 | |
| 1235 | if (largest_hole >= OCFS2_DIR_MIN_REC_LEN) |
| 1236 | return largest_hole; |
| 1237 | return 0; |
| 1238 | } |
| 1239 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1240 | static void ocfs2_dx_list_remove_entry(struct ocfs2_dx_entry_list *entry_list, |
| 1241 | int index) |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1242 | { |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1243 | int num_used = le16_to_cpu(entry_list->de_num_used); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1244 | |
| 1245 | if (num_used == 1 || index == (num_used - 1)) |
| 1246 | goto clear; |
| 1247 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1248 | memmove(&entry_list->de_entries[index], |
| 1249 | &entry_list->de_entries[index + 1], |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1250 | (num_used - index - 1)*sizeof(struct ocfs2_dx_entry)); |
| 1251 | clear: |
| 1252 | num_used--; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1253 | memset(&entry_list->de_entries[num_used], 0, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1254 | sizeof(struct ocfs2_dx_entry)); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1255 | entry_list->de_num_used = cpu_to_le16(num_used); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1256 | } |
| 1257 | |
| 1258 | static int ocfs2_delete_entry_dx(handle_t *handle, struct inode *dir, |
| 1259 | struct ocfs2_dir_lookup_result *lookup) |
| 1260 | { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1261 | int ret, index, max_rec_len, add_to_free_list = 0; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1262 | struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1263 | struct buffer_head *leaf_bh = lookup->dl_leaf_bh; |
| 1264 | struct ocfs2_dx_leaf *dx_leaf; |
| 1265 | struct ocfs2_dx_entry *dx_entry = lookup->dl_dx_entry; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1266 | struct ocfs2_dir_block_trailer *trailer; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1267 | struct ocfs2_dx_root_block *dx_root; |
| 1268 | struct ocfs2_dx_entry_list *entry_list; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1269 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1270 | /* |
| 1271 | * This function gets a bit messy because we might have to |
| 1272 | * modify the root block, regardless of whether the indexed |
| 1273 | * entries are stored inline. |
| 1274 | */ |
| 1275 | |
| 1276 | /* |
| 1277 | * *Only* set 'entry_list' here, based on where we're looking |
| 1278 | * for the indexed entries. Later, we might still want to |
| 1279 | * journal both blocks, based on free list state. |
| 1280 | */ |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1281 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 1282 | if (ocfs2_dx_root_inline(dx_root)) { |
| 1283 | entry_list = &dx_root->dr_entries; |
| 1284 | } else { |
| 1285 | dx_leaf = (struct ocfs2_dx_leaf *) lookup->dl_dx_leaf_bh->b_data; |
| 1286 | entry_list = &dx_leaf->dl_list; |
| 1287 | } |
| 1288 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1289 | /* Neither of these are a disk corruption - that should have |
| 1290 | * been caught by lookup, before we got here. */ |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1291 | BUG_ON(le16_to_cpu(entry_list->de_count) <= 0); |
| 1292 | BUG_ON(le16_to_cpu(entry_list->de_num_used) <= 0); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1293 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1294 | index = (char *)dx_entry - (char *)entry_list->de_entries; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1295 | index /= sizeof(*dx_entry); |
| 1296 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1297 | if (index >= le16_to_cpu(entry_list->de_num_used)) { |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1298 | mlog(ML_ERROR, "Dir %llu: Bad dx_entry ptr idx %d, (%p, %p)\n", |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1299 | (unsigned long long)OCFS2_I(dir)->ip_blkno, index, |
| 1300 | entry_list, dx_entry); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1301 | return -EIO; |
| 1302 | } |
| 1303 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1304 | /* |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1305 | * We know that removal of this dirent will leave enough room |
| 1306 | * for a new one, so add this block to the free list if it |
| 1307 | * isn't already there. |
| 1308 | */ |
| 1309 | trailer = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb); |
| 1310 | if (trailer->db_free_rec_len == 0) |
| 1311 | add_to_free_list = 1; |
| 1312 | |
| 1313 | /* |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1314 | * Add the block holding our index into the journal before |
| 1315 | * removing the unindexed entry. If we get an error return |
| 1316 | * from __ocfs2_delete_entry(), then it hasn't removed the |
| 1317 | * entry yet. Likewise, successful return means we *must* |
| 1318 | * remove the indexed entry. |
| 1319 | * |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1320 | * We're also careful to journal the root tree block here as |
| 1321 | * the entry count needs to be updated. Also, we might be |
| 1322 | * adding to the start of the free list. |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1323 | */ |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1324 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1325 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 1326 | if (ret) { |
| 1327 | mlog_errno(ret); |
| 1328 | goto out; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1329 | } |
| 1330 | |
| 1331 | if (!ocfs2_dx_root_inline(dx_root)) { |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1332 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1333 | lookup->dl_dx_leaf_bh, |
| 1334 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 1335 | if (ret) { |
| 1336 | mlog_errno(ret); |
| 1337 | goto out; |
| 1338 | } |
| 1339 | } |
| 1340 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 1341 | trace_ocfs2_delete_entry_dx((unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 1342 | index); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1343 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1344 | ret = __ocfs2_delete_entry(handle, dir, lookup->dl_entry, |
| 1345 | leaf_bh, leaf_bh->b_data, leaf_bh->b_size); |
| 1346 | if (ret) { |
| 1347 | mlog_errno(ret); |
| 1348 | goto out; |
| 1349 | } |
| 1350 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1351 | max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, leaf_bh); |
| 1352 | trailer->db_free_rec_len = cpu_to_le16(max_rec_len); |
| 1353 | if (add_to_free_list) { |
| 1354 | trailer->db_free_next = dx_root->dr_free_blk; |
| 1355 | dx_root->dr_free_blk = cpu_to_le64(leaf_bh->b_blocknr); |
| 1356 | ocfs2_journal_dirty(handle, dx_root_bh); |
| 1357 | } |
| 1358 | |
| 1359 | /* leaf_bh was journal_accessed for us in __ocfs2_delete_entry */ |
| 1360 | ocfs2_journal_dirty(handle, leaf_bh); |
| 1361 | |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1362 | le32_add_cpu(&dx_root->dr_num_entries, -1); |
| 1363 | ocfs2_journal_dirty(handle, dx_root_bh); |
| 1364 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1365 | ocfs2_dx_list_remove_entry(entry_list, index); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1366 | |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1367 | if (!ocfs2_dx_root_inline(dx_root)) |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1368 | ocfs2_journal_dirty(handle, lookup->dl_dx_leaf_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1369 | |
| 1370 | out: |
| 1371 | return ret; |
| 1372 | } |
| 1373 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1374 | static inline int ocfs2_delete_entry_id(handle_t *handle, |
| 1375 | struct inode *dir, |
| 1376 | struct ocfs2_dir_entry *de_del, |
| 1377 | struct buffer_head *bh) |
| 1378 | { |
| 1379 | int ret; |
| 1380 | struct buffer_head *di_bh = NULL; |
| 1381 | struct ocfs2_dinode *di; |
| 1382 | struct ocfs2_inline_data *data; |
| 1383 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 1384 | ret = ocfs2_read_inode_block(dir, &di_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1385 | if (ret) { |
| 1386 | mlog_errno(ret); |
| 1387 | goto out; |
| 1388 | } |
| 1389 | |
| 1390 | di = (struct ocfs2_dinode *)di_bh->b_data; |
| 1391 | data = &di->id2.i_data; |
| 1392 | |
| 1393 | ret = __ocfs2_delete_entry(handle, dir, de_del, bh, data->id_data, |
| 1394 | i_size_read(dir)); |
| 1395 | |
| 1396 | brelse(di_bh); |
| 1397 | out: |
| 1398 | return ret; |
| 1399 | } |
| 1400 | |
| 1401 | static inline int ocfs2_delete_entry_el(handle_t *handle, |
| 1402 | struct inode *dir, |
| 1403 | struct ocfs2_dir_entry *de_del, |
| 1404 | struct buffer_head *bh) |
| 1405 | { |
| 1406 | return __ocfs2_delete_entry(handle, dir, de_del, bh, bh->b_data, |
| 1407 | bh->b_size); |
| 1408 | } |
| 1409 | |
| 1410 | /* |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1411 | * Delete a directory entry. Hide the details of directory |
| 1412 | * implementation from the caller. |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1413 | */ |
| 1414 | int ocfs2_delete_entry(handle_t *handle, |
| 1415 | struct inode *dir, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1416 | struct ocfs2_dir_lookup_result *res) |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1417 | { |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1418 | if (ocfs2_dir_indexed(dir)) |
| 1419 | return ocfs2_delete_entry_dx(handle, dir, res); |
| 1420 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1421 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1422 | return ocfs2_delete_entry_id(handle, dir, res->dl_entry, |
| 1423 | res->dl_leaf_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1424 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1425 | return ocfs2_delete_entry_el(handle, dir, res->dl_entry, |
| 1426 | res->dl_leaf_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1427 | } |
| 1428 | |
Mark Fasheh | 8553cf4 | 2007-09-13 16:29:01 -0700 | [diff] [blame] | 1429 | /* |
| 1430 | * Check whether 'de' has enough room to hold an entry of |
| 1431 | * 'new_rec_len' bytes. |
| 1432 | */ |
| 1433 | static inline int ocfs2_dirent_would_fit(struct ocfs2_dir_entry *de, |
| 1434 | unsigned int new_rec_len) |
| 1435 | { |
| 1436 | unsigned int de_really_used; |
| 1437 | |
| 1438 | /* Check whether this is an empty record with enough space */ |
| 1439 | if (le64_to_cpu(de->inode) == 0 && |
| 1440 | le16_to_cpu(de->rec_len) >= new_rec_len) |
| 1441 | return 1; |
| 1442 | |
| 1443 | /* |
| 1444 | * Record might have free space at the end which we can |
| 1445 | * use. |
| 1446 | */ |
| 1447 | de_really_used = OCFS2_DIR_REC_LEN(de->name_len); |
| 1448 | if (le16_to_cpu(de->rec_len) >= (de_really_used + new_rec_len)) |
| 1449 | return 1; |
| 1450 | |
| 1451 | return 0; |
| 1452 | } |
| 1453 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1454 | static void ocfs2_dx_dir_leaf_insert_tail(struct ocfs2_dx_leaf *dx_leaf, |
| 1455 | struct ocfs2_dx_entry *dx_new_entry) |
| 1456 | { |
| 1457 | int i; |
| 1458 | |
| 1459 | i = le16_to_cpu(dx_leaf->dl_list.de_num_used); |
| 1460 | dx_leaf->dl_list.de_entries[i] = *dx_new_entry; |
| 1461 | |
| 1462 | le16_add_cpu(&dx_leaf->dl_list.de_num_used, 1); |
| 1463 | } |
| 1464 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1465 | static void ocfs2_dx_entry_list_insert(struct ocfs2_dx_entry_list *entry_list, |
| 1466 | struct ocfs2_dx_hinfo *hinfo, |
| 1467 | u64 dirent_blk) |
| 1468 | { |
| 1469 | int i; |
| 1470 | struct ocfs2_dx_entry *dx_entry; |
| 1471 | |
| 1472 | i = le16_to_cpu(entry_list->de_num_used); |
| 1473 | dx_entry = &entry_list->de_entries[i]; |
| 1474 | |
| 1475 | memset(dx_entry, 0, sizeof(*dx_entry)); |
| 1476 | dx_entry->dx_major_hash = cpu_to_le32(hinfo->major_hash); |
| 1477 | dx_entry->dx_minor_hash = cpu_to_le32(hinfo->minor_hash); |
| 1478 | dx_entry->dx_dirent_blk = cpu_to_le64(dirent_blk); |
| 1479 | |
| 1480 | le16_add_cpu(&entry_list->de_num_used, 1); |
| 1481 | } |
| 1482 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1483 | static int __ocfs2_dx_dir_leaf_insert(struct inode *dir, handle_t *handle, |
| 1484 | struct ocfs2_dx_hinfo *hinfo, |
| 1485 | u64 dirent_blk, |
| 1486 | struct buffer_head *dx_leaf_bh) |
| 1487 | { |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1488 | int ret; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1489 | struct ocfs2_dx_leaf *dx_leaf; |
| 1490 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1491 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1492 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 1493 | if (ret) { |
| 1494 | mlog_errno(ret); |
| 1495 | goto out; |
| 1496 | } |
| 1497 | |
| 1498 | dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1499 | ocfs2_dx_entry_list_insert(&dx_leaf->dl_list, hinfo, dirent_blk); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1500 | ocfs2_journal_dirty(handle, dx_leaf_bh); |
| 1501 | |
| 1502 | out: |
| 1503 | return ret; |
| 1504 | } |
| 1505 | |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1506 | static void ocfs2_dx_inline_root_insert(struct inode *dir, handle_t *handle, |
| 1507 | struct ocfs2_dx_hinfo *hinfo, |
| 1508 | u64 dirent_blk, |
| 1509 | struct ocfs2_dx_root_block *dx_root) |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1510 | { |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1511 | ocfs2_dx_entry_list_insert(&dx_root->dr_entries, hinfo, dirent_blk); |
| 1512 | } |
| 1513 | |
| 1514 | static int ocfs2_dx_dir_insert(struct inode *dir, handle_t *handle, |
| 1515 | struct ocfs2_dir_lookup_result *lookup) |
| 1516 | { |
| 1517 | int ret = 0; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1518 | struct ocfs2_dx_root_block *dx_root; |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1519 | struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1520 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1521 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1522 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 1523 | if (ret) { |
| 1524 | mlog_errno(ret); |
| 1525 | goto out; |
| 1526 | } |
| 1527 | |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 1528 | dx_root = (struct ocfs2_dx_root_block *)lookup->dl_dx_root_bh->b_data; |
| 1529 | if (ocfs2_dx_root_inline(dx_root)) { |
| 1530 | ocfs2_dx_inline_root_insert(dir, handle, |
| 1531 | &lookup->dl_hinfo, |
| 1532 | lookup->dl_leaf_bh->b_blocknr, |
| 1533 | dx_root); |
| 1534 | } else { |
| 1535 | ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &lookup->dl_hinfo, |
| 1536 | lookup->dl_leaf_bh->b_blocknr, |
| 1537 | lookup->dl_dx_leaf_bh); |
| 1538 | if (ret) |
| 1539 | goto out; |
| 1540 | } |
| 1541 | |
| 1542 | le32_add_cpu(&dx_root->dr_num_entries, 1); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1543 | ocfs2_journal_dirty(handle, dx_root_bh); |
| 1544 | |
| 1545 | out: |
| 1546 | return ret; |
| 1547 | } |
| 1548 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1549 | static void ocfs2_remove_block_from_free_list(struct inode *dir, |
| 1550 | handle_t *handle, |
| 1551 | struct ocfs2_dir_lookup_result *lookup) |
| 1552 | { |
| 1553 | struct ocfs2_dir_block_trailer *trailer, *prev; |
| 1554 | struct ocfs2_dx_root_block *dx_root; |
| 1555 | struct buffer_head *bh; |
| 1556 | |
| 1557 | trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb); |
| 1558 | |
| 1559 | if (ocfs2_free_list_at_root(lookup)) { |
| 1560 | bh = lookup->dl_dx_root_bh; |
| 1561 | dx_root = (struct ocfs2_dx_root_block *)bh->b_data; |
| 1562 | dx_root->dr_free_blk = trailer->db_free_next; |
| 1563 | } else { |
| 1564 | bh = lookup->dl_prev_leaf_bh; |
| 1565 | prev = ocfs2_trailer_from_bh(bh, dir->i_sb); |
| 1566 | prev->db_free_next = trailer->db_free_next; |
| 1567 | } |
| 1568 | |
| 1569 | trailer->db_free_rec_len = cpu_to_le16(0); |
| 1570 | trailer->db_free_next = cpu_to_le64(0); |
| 1571 | |
| 1572 | ocfs2_journal_dirty(handle, bh); |
| 1573 | ocfs2_journal_dirty(handle, lookup->dl_leaf_bh); |
| 1574 | } |
| 1575 | |
| 1576 | /* |
| 1577 | * This expects that a journal write has been reserved on |
| 1578 | * lookup->dl_prev_leaf_bh or lookup->dl_dx_root_bh |
| 1579 | */ |
| 1580 | static void ocfs2_recalc_free_list(struct inode *dir, handle_t *handle, |
| 1581 | struct ocfs2_dir_lookup_result *lookup) |
| 1582 | { |
| 1583 | int max_rec_len; |
| 1584 | struct ocfs2_dir_block_trailer *trailer; |
| 1585 | |
| 1586 | /* Walk dl_leaf_bh to figure out what the new free rec_len is. */ |
| 1587 | max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, lookup->dl_leaf_bh); |
| 1588 | if (max_rec_len) { |
| 1589 | /* |
| 1590 | * There's still room in this block, so no need to remove it |
| 1591 | * from the free list. In this case, we just want to update |
| 1592 | * the rec len accounting. |
| 1593 | */ |
| 1594 | trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb); |
| 1595 | trailer->db_free_rec_len = cpu_to_le16(max_rec_len); |
| 1596 | ocfs2_journal_dirty(handle, lookup->dl_leaf_bh); |
| 1597 | } else { |
| 1598 | ocfs2_remove_block_from_free_list(dir, handle, lookup); |
| 1599 | } |
| 1600 | } |
| 1601 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1602 | /* we don't always have a dentry for what we want to add, so people |
| 1603 | * like orphan dir can call this instead. |
| 1604 | * |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1605 | * The lookup context must have been filled from |
| 1606 | * ocfs2_prepare_dir_for_insert. |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1607 | */ |
| 1608 | int __ocfs2_add_entry(handle_t *handle, |
| 1609 | struct inode *dir, |
| 1610 | const char *name, int namelen, |
| 1611 | struct inode *inode, u64 blkno, |
| 1612 | struct buffer_head *parent_fe_bh, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1613 | struct ocfs2_dir_lookup_result *lookup) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1614 | { |
| 1615 | unsigned long offset; |
| 1616 | unsigned short rec_len; |
| 1617 | struct ocfs2_dir_entry *de, *de1; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1618 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)parent_fe_bh->b_data; |
| 1619 | struct super_block *sb = dir->i_sb; |
Daeseok Youn | 2e17315 | 2015-06-24 16:55:01 -0700 | [diff] [blame] | 1620 | int retval; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1621 | unsigned int size = sb->s_blocksize; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1622 | struct buffer_head *insert_bh = lookup->dl_leaf_bh; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1623 | char *data_start = insert_bh->b_data; |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1624 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1625 | if (!namelen) |
| 1626 | return -EINVAL; |
| 1627 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1628 | if (ocfs2_dir_indexed(dir)) { |
| 1629 | struct buffer_head *bh; |
| 1630 | |
| 1631 | /* |
| 1632 | * An indexed dir may require that we update the free space |
| 1633 | * list. Reserve a write to the previous node in the list so |
| 1634 | * that we don't fail later. |
| 1635 | * |
| 1636 | * XXX: This can be either a dx_root_block, or an unindexed |
| 1637 | * directory tree leaf block. |
| 1638 | */ |
| 1639 | if (ocfs2_free_list_at_root(lookup)) { |
| 1640 | bh = lookup->dl_dx_root_bh; |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1641 | retval = ocfs2_journal_access_dr(handle, |
| 1642 | INODE_CACHE(dir), bh, |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1643 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 1644 | } else { |
| 1645 | bh = lookup->dl_prev_leaf_bh; |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1646 | retval = ocfs2_journal_access_db(handle, |
| 1647 | INODE_CACHE(dir), bh, |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1648 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 1649 | } |
| 1650 | if (retval) { |
| 1651 | mlog_errno(retval); |
| 1652 | return retval; |
| 1653 | } |
| 1654 | } else if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1655 | data_start = di->id2.i_data.id_data; |
| 1656 | size = i_size_read(dir); |
| 1657 | |
| 1658 | BUG_ON(insert_bh != parent_fe_bh); |
| 1659 | } |
| 1660 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1661 | rec_len = OCFS2_DIR_REC_LEN(namelen); |
| 1662 | offset = 0; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1663 | de = (struct ocfs2_dir_entry *) data_start; |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1664 | while (1) { |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1665 | BUG_ON((char *)de >= (size + data_start)); |
| 1666 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1667 | /* These checks should've already been passed by the |
| 1668 | * prepare function, but I guess we can leave them |
| 1669 | * here anyway. */ |
| 1670 | if (!ocfs2_check_dir_entry(dir, de, insert_bh, offset)) { |
| 1671 | retval = -ENOENT; |
| 1672 | goto bail; |
| 1673 | } |
| 1674 | if (ocfs2_match(namelen, name, de)) { |
| 1675 | retval = -EEXIST; |
| 1676 | goto bail; |
| 1677 | } |
Mark Fasheh | 8553cf4 | 2007-09-13 16:29:01 -0700 | [diff] [blame] | 1678 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 1679 | /* We're guaranteed that we should have space, so we |
| 1680 | * can't possibly have hit the trailer...right? */ |
| 1681 | mlog_bug_on_msg(ocfs2_skip_dir_trailer(dir, de, offset, size), |
| 1682 | "Hit dir trailer trying to insert %.*s " |
| 1683 | "(namelen %d) into directory %llu. " |
| 1684 | "offset is %lu, trailer offset is %d\n", |
| 1685 | namelen, name, namelen, |
| 1686 | (unsigned long long)parent_fe_bh->b_blocknr, |
| 1687 | offset, ocfs2_dir_trailer_blk_off(dir->i_sb)); |
| 1688 | |
Mark Fasheh | 8553cf4 | 2007-09-13 16:29:01 -0700 | [diff] [blame] | 1689 | if (ocfs2_dirent_would_fit(de, rec_len)) { |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1690 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
| 1691 | retval = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh); |
| 1692 | if (retval < 0) { |
| 1693 | mlog_errno(retval); |
| 1694 | goto bail; |
| 1695 | } |
| 1696 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1697 | if (insert_bh == parent_fe_bh) |
Daeseok Youn | 2e17315 | 2015-06-24 16:55:01 -0700 | [diff] [blame] | 1698 | retval = ocfs2_journal_access_di(handle, |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1699 | INODE_CACHE(dir), |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1700 | insert_bh, |
| 1701 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1702 | else { |
Daeseok Youn | 2e17315 | 2015-06-24 16:55:01 -0700 | [diff] [blame] | 1703 | retval = ocfs2_journal_access_db(handle, |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1704 | INODE_CACHE(dir), |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1705 | insert_bh, |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1706 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 1707 | |
Daeseok Youn | 2e17315 | 2015-06-24 16:55:01 -0700 | [diff] [blame] | 1708 | if (!retval && ocfs2_dir_indexed(dir)) |
| 1709 | retval = ocfs2_dx_dir_insert(dir, |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 1710 | handle, |
| 1711 | lookup); |
Daeseok Youn | 2e17315 | 2015-06-24 16:55:01 -0700 | [diff] [blame] | 1712 | } |
| 1713 | |
| 1714 | if (retval) { |
| 1715 | mlog_errno(retval); |
| 1716 | goto bail; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1717 | } |
| 1718 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1719 | /* By now the buffer is marked for journaling */ |
| 1720 | offset += le16_to_cpu(de->rec_len); |
| 1721 | if (le64_to_cpu(de->inode)) { |
| 1722 | de1 = (struct ocfs2_dir_entry *)((char *) de + |
| 1723 | OCFS2_DIR_REC_LEN(de->name_len)); |
| 1724 | de1->rec_len = |
| 1725 | cpu_to_le16(le16_to_cpu(de->rec_len) - |
| 1726 | OCFS2_DIR_REC_LEN(de->name_len)); |
| 1727 | de->rec_len = cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len)); |
| 1728 | de = de1; |
| 1729 | } |
| 1730 | de->file_type = OCFS2_FT_UNKNOWN; |
| 1731 | if (blkno) { |
| 1732 | de->inode = cpu_to_le64(blkno); |
| 1733 | ocfs2_set_de_type(de, inode->i_mode); |
| 1734 | } else |
| 1735 | de->inode = 0; |
| 1736 | de->name_len = namelen; |
| 1737 | memcpy(de->name, name, namelen); |
| 1738 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 1739 | if (ocfs2_dir_indexed(dir)) |
| 1740 | ocfs2_recalc_free_list(dir, handle, lookup); |
| 1741 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1742 | dir->i_version++; |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1743 | ocfs2_journal_dirty(handle, insert_bh); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1744 | retval = 0; |
| 1745 | goto bail; |
| 1746 | } |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 1747 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1748 | offset += le16_to_cpu(de->rec_len); |
| 1749 | de = (struct ocfs2_dir_entry *) ((char *) de + le16_to_cpu(de->rec_len)); |
| 1750 | } |
| 1751 | |
| 1752 | /* when you think about it, the assert above should prevent us |
| 1753 | * from ever getting here. */ |
| 1754 | retval = -ENOSPC; |
| 1755 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1756 | if (retval) |
| 1757 | mlog_errno(retval); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1758 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 1759 | return retval; |
| 1760 | } |
| 1761 | |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1762 | static int ocfs2_dir_foreach_blk_id(struct inode *inode, |
Mathieu Desnoyers | 2b47c36 | 2007-10-16 23:27:21 -0700 | [diff] [blame] | 1763 | u64 *f_version, |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1764 | struct dir_context *ctx) |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1765 | { |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1766 | int ret, i; |
| 1767 | unsigned long offset = ctx->pos; |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1768 | struct buffer_head *di_bh = NULL; |
| 1769 | struct ocfs2_dinode *di; |
| 1770 | struct ocfs2_inline_data *data; |
| 1771 | struct ocfs2_dir_entry *de; |
| 1772 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 1773 | ret = ocfs2_read_inode_block(inode, &di_bh); |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1774 | if (ret) { |
| 1775 | mlog(ML_ERROR, "Unable to read inode block for dir %llu\n", |
| 1776 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
| 1777 | goto out; |
| 1778 | } |
| 1779 | |
| 1780 | di = (struct ocfs2_dinode *)di_bh->b_data; |
| 1781 | data = &di->id2.i_data; |
| 1782 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1783 | while (ctx->pos < i_size_read(inode)) { |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1784 | /* If the dir block has changed since the last call to |
| 1785 | * readdir(2), then we might be pointing to an invalid |
| 1786 | * dirent right now. Scan from the start of the block |
| 1787 | * to make sure. */ |
| 1788 | if (*f_version != inode->i_version) { |
| 1789 | for (i = 0; i < i_size_read(inode) && i < offset; ) { |
| 1790 | de = (struct ocfs2_dir_entry *) |
| 1791 | (data->id_data + i); |
| 1792 | /* It's too expensive to do a full |
| 1793 | * dirent test each time round this |
| 1794 | * loop, but we do have to test at |
| 1795 | * least that it is non-zero. A |
| 1796 | * failure will be detected in the |
| 1797 | * dirent test below. */ |
| 1798 | if (le16_to_cpu(de->rec_len) < |
| 1799 | OCFS2_DIR_REC_LEN(1)) |
| 1800 | break; |
| 1801 | i += le16_to_cpu(de->rec_len); |
| 1802 | } |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1803 | ctx->pos = offset = i; |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1804 | *f_version = inode->i_version; |
| 1805 | } |
| 1806 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1807 | de = (struct ocfs2_dir_entry *) (data->id_data + ctx->pos); |
| 1808 | if (!ocfs2_check_dir_entry(inode, de, di_bh, ctx->pos)) { |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1809 | /* On error, skip the f_pos to the end. */ |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1810 | ctx->pos = i_size_read(inode); |
| 1811 | break; |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1812 | } |
| 1813 | offset += le16_to_cpu(de->rec_len); |
| 1814 | if (le64_to_cpu(de->inode)) { |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1815 | unsigned char d_type = DT_UNKNOWN; |
| 1816 | |
| 1817 | if (de->file_type < OCFS2_FT_MAX) |
| 1818 | d_type = ocfs2_filetype_table[de->file_type]; |
| 1819 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1820 | if (!dir_emit(ctx, de->name, de->name_len, |
| 1821 | le64_to_cpu(de->inode), d_type)) |
| 1822 | goto out; |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1823 | } |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1824 | ctx->pos += le16_to_cpu(de->rec_len); |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1825 | } |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1826 | out: |
| 1827 | brelse(di_bh); |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1828 | return 0; |
| 1829 | } |
| 1830 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 1831 | /* |
| 1832 | * NOTE: This function can be called against unindexed directories, |
| 1833 | * and indexed ones. |
| 1834 | */ |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1835 | static int ocfs2_dir_foreach_blk_el(struct inode *inode, |
Mathieu Desnoyers | 2b47c36 | 2007-10-16 23:27:21 -0700 | [diff] [blame] | 1836 | u64 *f_version, |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1837 | struct dir_context *ctx, |
| 1838 | bool persist) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1839 | { |
Mark Fasheh | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 1840 | unsigned long offset, blk, last_ra_blk = 0; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1841 | int i; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1842 | struct buffer_head * bh, * tmp; |
| 1843 | struct ocfs2_dir_entry * de; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1844 | struct super_block * sb = inode->i_sb; |
Mark Fasheh | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 1845 | unsigned int ra_sectors = 16; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1846 | int stored = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1847 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1848 | bh = NULL; |
| 1849 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1850 | offset = ctx->pos & (sb->s_blocksize - 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1851 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1852 | while (ctx->pos < i_size_read(inode)) { |
| 1853 | blk = ctx->pos >> sb->s_blocksize_bits; |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 1854 | if (ocfs2_read_dir_block(inode, blk, &bh, 0)) { |
| 1855 | /* Skip the corrupt dirblock and keep trying */ |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1856 | ctx->pos += sb->s_blocksize - offset; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1857 | continue; |
| 1858 | } |
| 1859 | |
Mark Fasheh | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 1860 | /* The idea here is to begin with 8k read-ahead and to stay |
| 1861 | * 4k ahead of our current position. |
| 1862 | * |
| 1863 | * TODO: Use the pagecache for this. We just need to |
| 1864 | * make sure it's cluster-safe... */ |
| 1865 | if (!last_ra_blk |
| 1866 | || (((last_ra_blk - blk) << 9) <= (ra_sectors / 2))) { |
| 1867 | for (i = ra_sectors >> (sb->s_blocksize_bits - 9); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1868 | i > 0; i--) { |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 1869 | tmp = NULL; |
| 1870 | if (!ocfs2_read_dir_block(inode, ++blk, &tmp, |
| 1871 | OCFS2_BH_READAHEAD)) |
| 1872 | brelse(tmp); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1873 | } |
Mark Fasheh | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 1874 | last_ra_blk = blk; |
| 1875 | ra_sectors = 8; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1876 | } |
| 1877 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1878 | /* If the dir block has changed since the last call to |
| 1879 | * readdir(2), then we might be pointing to an invalid |
| 1880 | * dirent right now. Scan from the start of the block |
| 1881 | * to make sure. */ |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1882 | if (*f_version != inode->i_version) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1883 | for (i = 0; i < sb->s_blocksize && i < offset; ) { |
| 1884 | de = (struct ocfs2_dir_entry *) (bh->b_data + i); |
| 1885 | /* It's too expensive to do a full |
| 1886 | * dirent test each time round this |
| 1887 | * loop, but we do have to test at |
| 1888 | * least that it is non-zero. A |
| 1889 | * failure will be detected in the |
| 1890 | * dirent test below. */ |
| 1891 | if (le16_to_cpu(de->rec_len) < |
| 1892 | OCFS2_DIR_REC_LEN(1)) |
| 1893 | break; |
| 1894 | i += le16_to_cpu(de->rec_len); |
| 1895 | } |
| 1896 | offset = i; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1897 | ctx->pos = (ctx->pos & ~(sb->s_blocksize - 1)) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1898 | | offset; |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1899 | *f_version = inode->i_version; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1900 | } |
| 1901 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1902 | while (ctx->pos < i_size_read(inode) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1903 | && offset < sb->s_blocksize) { |
| 1904 | de = (struct ocfs2_dir_entry *) (bh->b_data + offset); |
| 1905 | if (!ocfs2_check_dir_entry(inode, de, bh, offset)) { |
| 1906 | /* On error, skip the f_pos to the |
| 1907 | next block. */ |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1908 | ctx->pos = (ctx->pos | (sb->s_blocksize - 1)) + 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1909 | brelse(bh); |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1910 | continue; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1911 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1912 | if (le64_to_cpu(de->inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1913 | unsigned char d_type = DT_UNKNOWN; |
| 1914 | |
| 1915 | if (de->file_type < OCFS2_FT_MAX) |
| 1916 | d_type = ocfs2_filetype_table[de->file_type]; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1917 | if (!dir_emit(ctx, de->name, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1918 | de->name_len, |
Mark Fasheh | 7e85367 | 2007-09-10 17:30:26 -0700 | [diff] [blame] | 1919 | le64_to_cpu(de->inode), |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1920 | d_type)) { |
| 1921 | brelse(bh); |
| 1922 | return 0; |
Mark Fasheh | e7b3401 | 2007-09-24 14:25:27 -0700 | [diff] [blame] | 1923 | } |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1924 | stored++; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1925 | } |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1926 | offset += le16_to_cpu(de->rec_len); |
| 1927 | ctx->pos += le16_to_cpu(de->rec_len); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1928 | } |
| 1929 | offset = 0; |
| 1930 | brelse(bh); |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 1931 | bh = NULL; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1932 | if (!persist && stored) |
| 1933 | break; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1934 | } |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1935 | return 0; |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1936 | } |
| 1937 | |
Mathieu Desnoyers | 2b47c36 | 2007-10-16 23:27:21 -0700 | [diff] [blame] | 1938 | static int ocfs2_dir_foreach_blk(struct inode *inode, u64 *f_version, |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1939 | struct dir_context *ctx, |
| 1940 | bool persist) |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1941 | { |
| 1942 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1943 | return ocfs2_dir_foreach_blk_id(inode, f_version, ctx); |
| 1944 | return ocfs2_dir_foreach_blk_el(inode, f_version, ctx, persist); |
Mark Fasheh | 23193e5 | 2007-09-12 13:01:18 -0700 | [diff] [blame] | 1945 | } |
| 1946 | |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1947 | /* |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1948 | * This is intended to be called from inside other kernel functions, |
| 1949 | * so we fake some arguments. |
| 1950 | */ |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1951 | int ocfs2_dir_foreach(struct inode *inode, struct dir_context *ctx) |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1952 | { |
Mathieu Desnoyers | 2b47c36 | 2007-10-16 23:27:21 -0700 | [diff] [blame] | 1953 | u64 version = inode->i_version; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1954 | ocfs2_dir_foreach_blk(inode, &version, ctx, true); |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1955 | return 0; |
| 1956 | } |
| 1957 | |
| 1958 | /* |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1959 | * ocfs2_readdir() |
| 1960 | * |
| 1961 | */ |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1962 | int ocfs2_readdir(struct file *file, struct dir_context *ctx) |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1963 | { |
| 1964 | int error = 0; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1965 | struct inode *inode = file_inode(file); |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1966 | int lock_level = 0; |
| 1967 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 1968 | trace_ocfs2_readdir((unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1969 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1970 | error = ocfs2_inode_lock_atime(inode, file->f_path.mnt, &lock_level); |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1971 | if (lock_level && error >= 0) { |
| 1972 | /* We release EX lock which used to update atime |
| 1973 | * and get PR lock again to reduce contention |
| 1974 | * on commonly accessed directories. */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1975 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1976 | lock_level = 0; |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1977 | error = ocfs2_inode_lock(inode, NULL, 0); |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1978 | } |
| 1979 | if (error < 0) { |
| 1980 | if (error != -ENOENT) |
| 1981 | mlog_errno(error); |
| 1982 | /* we haven't got any yet, so propagate the error. */ |
| 1983 | goto bail_nolock; |
| 1984 | } |
| 1985 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 1986 | error = ocfs2_dir_foreach_blk(inode, &file->f_version, ctx, false); |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1987 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1988 | ocfs2_inode_unlock(inode, lock_level); |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1989 | if (error) |
| 1990 | mlog_errno(error); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1991 | |
Mark Fasheh | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 1992 | bail_nolock: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1993 | |
Mark Fasheh | b8bc5f4 | 2007-09-10 17:17:52 -0700 | [diff] [blame] | 1994 | return error; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1995 | } |
| 1996 | |
| 1997 | /* |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1998 | * NOTE: this should always be called with parent dir i_mutex taken. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1999 | */ |
| 2000 | int ocfs2_find_files_on_disk(const char *name, |
| 2001 | int namelen, |
| 2002 | u64 *blkno, |
| 2003 | struct inode *inode, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2004 | struct ocfs2_dir_lookup_result *lookup) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2005 | { |
| 2006 | int status = -ENOENT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2007 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 2008 | trace_ocfs2_find_files_on_disk(namelen, name, blkno, |
| 2009 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2010 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2011 | status = ocfs2_find_entry(name, namelen, inode, lookup); |
| 2012 | if (status) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2013 | goto leave; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2014 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2015 | *blkno = le64_to_cpu(lookup->dl_entry->inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2016 | |
| 2017 | status = 0; |
| 2018 | leave: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2019 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2020 | return status; |
| 2021 | } |
| 2022 | |
Mark Fasheh | be94d11 | 2007-09-11 15:22:06 -0700 | [diff] [blame] | 2023 | /* |
| 2024 | * Convenience function for callers which just want the block number |
| 2025 | * mapped to a name and don't require the full dirent info, etc. |
| 2026 | */ |
| 2027 | int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name, |
| 2028 | int namelen, u64 *blkno) |
| 2029 | { |
| 2030 | int ret; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2031 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Mark Fasheh | be94d11 | 2007-09-11 15:22:06 -0700 | [diff] [blame] | 2032 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2033 | ret = ocfs2_find_files_on_disk(name, namelen, blkno, dir, &lookup); |
| 2034 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | be94d11 | 2007-09-11 15:22:06 -0700 | [diff] [blame] | 2035 | |
| 2036 | return ret; |
| 2037 | } |
| 2038 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2039 | /* Check for a name within a directory. |
| 2040 | * |
| 2041 | * Return 0 if the name does not exist |
| 2042 | * Return -EEXIST if the directory contains the name |
| 2043 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2044 | * Callers should have i_mutex + a cluster lock on dir |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2045 | */ |
| 2046 | int ocfs2_check_dir_for_entry(struct inode *dir, |
| 2047 | const char *name, |
| 2048 | int namelen) |
| 2049 | { |
Daeseok Youn | 7c01ad8 | 2015-04-14 15:43:30 -0700 | [diff] [blame] | 2050 | int ret = 0; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2051 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2052 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 2053 | trace_ocfs2_check_dir_for_entry( |
| 2054 | (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen, name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2055 | |
Daeseok Youn | 7c01ad8 | 2015-04-14 15:43:30 -0700 | [diff] [blame] | 2056 | if (ocfs2_find_entry(name, namelen, dir, &lookup) == 0) { |
| 2057 | ret = -EEXIST; |
| 2058 | mlog_errno(ret); |
| 2059 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2060 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2061 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2062 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2063 | return ret; |
| 2064 | } |
| 2065 | |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2066 | struct ocfs2_empty_dir_priv { |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 2067 | struct dir_context ctx; |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2068 | unsigned seen_dot; |
| 2069 | unsigned seen_dot_dot; |
| 2070 | unsigned seen_other; |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2071 | unsigned dx_dir; |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2072 | }; |
Miklos Szeredi | ac7576f | 2014-10-30 17:37:34 +0100 | [diff] [blame] | 2073 | static int ocfs2_empty_dir_filldir(struct dir_context *ctx, const char *name, |
| 2074 | int name_len, loff_t pos, u64 ino, |
| 2075 | unsigned type) |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2076 | { |
Miklos Szeredi | ac7576f | 2014-10-30 17:37:34 +0100 | [diff] [blame] | 2077 | struct ocfs2_empty_dir_priv *p = |
| 2078 | container_of(ctx, struct ocfs2_empty_dir_priv, ctx); |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2079 | |
| 2080 | /* |
| 2081 | * Check the positions of "." and ".." records to be sure |
| 2082 | * they're in the correct place. |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2083 | * |
| 2084 | * Indexed directories don't need to proceed past the first |
| 2085 | * two entries, so we end the scan after seeing '..'. Despite |
| 2086 | * that, we allow the scan to proceed In the event that we |
| 2087 | * have a corrupted indexed directory (no dot or dot dot |
| 2088 | * entries). This allows us to double check for existing |
| 2089 | * entries which might not have been found in the index. |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2090 | */ |
| 2091 | if (name_len == 1 && !strncmp(".", name, 1) && pos == 0) { |
| 2092 | p->seen_dot = 1; |
| 2093 | return 0; |
| 2094 | } |
| 2095 | |
| 2096 | if (name_len == 2 && !strncmp("..", name, 2) && |
| 2097 | pos == OCFS2_DIR_REC_LEN(1)) { |
| 2098 | p->seen_dot_dot = 1; |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2099 | |
| 2100 | if (p->dx_dir && p->seen_dot) |
| 2101 | return 1; |
| 2102 | |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2103 | return 0; |
| 2104 | } |
| 2105 | |
| 2106 | p->seen_other = 1; |
| 2107 | return 1; |
| 2108 | } |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2109 | |
| 2110 | static int ocfs2_empty_dir_dx(struct inode *inode, |
| 2111 | struct ocfs2_empty_dir_priv *priv) |
| 2112 | { |
| 2113 | int ret; |
| 2114 | struct buffer_head *di_bh = NULL; |
| 2115 | struct buffer_head *dx_root_bh = NULL; |
| 2116 | struct ocfs2_dinode *di; |
| 2117 | struct ocfs2_dx_root_block *dx_root; |
| 2118 | |
| 2119 | priv->dx_dir = 1; |
| 2120 | |
| 2121 | ret = ocfs2_read_inode_block(inode, &di_bh); |
| 2122 | if (ret) { |
| 2123 | mlog_errno(ret); |
| 2124 | goto out; |
| 2125 | } |
| 2126 | di = (struct ocfs2_dinode *)di_bh->b_data; |
| 2127 | |
| 2128 | ret = ocfs2_read_dx_root(inode, di, &dx_root_bh); |
| 2129 | if (ret) { |
| 2130 | mlog_errno(ret); |
| 2131 | goto out; |
| 2132 | } |
| 2133 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 2134 | |
| 2135 | if (le32_to_cpu(dx_root->dr_num_entries) != 2) |
| 2136 | priv->seen_other = 1; |
| 2137 | |
| 2138 | out: |
| 2139 | brelse(di_bh); |
| 2140 | brelse(dx_root_bh); |
| 2141 | return ret; |
| 2142 | } |
| 2143 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2144 | /* |
| 2145 | * routine to check that the specified directory is empty (for rmdir) |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2146 | * |
| 2147 | * Returns 1 if dir is empty, zero otherwise. |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2148 | * |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2149 | * XXX: This is a performance problem for unindexed directories. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2150 | */ |
| 2151 | int ocfs2_empty_dir(struct inode *inode) |
| 2152 | { |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2153 | int ret; |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 2154 | struct ocfs2_empty_dir_priv priv = { |
Jeff Liu | d6394b5 | 2013-08-13 16:01:01 -0700 | [diff] [blame] | 2155 | .ctx.actor = ocfs2_empty_dir_filldir, |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 2156 | }; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2157 | |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2158 | if (ocfs2_dir_indexed(inode)) { |
| 2159 | ret = ocfs2_empty_dir_dx(inode, &priv); |
| 2160 | if (ret) |
| 2161 | mlog_errno(ret); |
| 2162 | /* |
| 2163 | * We still run ocfs2_dir_foreach to get the checks |
| 2164 | * for "." and "..". |
| 2165 | */ |
| 2166 | } |
| 2167 | |
Al Viro | 3704412b | 2013-05-22 21:06:00 -0400 | [diff] [blame] | 2168 | ret = ocfs2_dir_foreach(inode, &priv.ctx); |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2169 | if (ret) |
| 2170 | mlog_errno(ret); |
| 2171 | |
| 2172 | if (!priv.seen_dot || !priv.seen_dot_dot) { |
| 2173 | mlog(ML_ERROR, "bad directory (dir #%llu) - no `.' or `..'\n", |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2174 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2175 | /* |
| 2176 | * XXX: Is it really safe to allow an unlink to continue? |
| 2177 | */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2178 | return 1; |
| 2179 | } |
| 2180 | |
Mark Fasheh | 0bfbbf6 | 2007-09-12 11:19:00 -0700 | [diff] [blame] | 2181 | return !priv.seen_other; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2182 | } |
| 2183 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2184 | /* |
| 2185 | * Fills "." and ".." dirents in a new directory block. Returns dirent for |
| 2186 | * "..", which might be used during creation of a directory with a trailing |
| 2187 | * header. It is otherwise safe to ignore the return code. |
| 2188 | */ |
| 2189 | static struct ocfs2_dir_entry *ocfs2_fill_initial_dirents(struct inode *inode, |
| 2190 | struct inode *parent, |
| 2191 | char *start, |
| 2192 | unsigned int size) |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2193 | { |
| 2194 | struct ocfs2_dir_entry *de = (struct ocfs2_dir_entry *)start; |
| 2195 | |
| 2196 | de->inode = cpu_to_le64(OCFS2_I(inode)->ip_blkno); |
| 2197 | de->name_len = 1; |
| 2198 | de->rec_len = |
| 2199 | cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len)); |
| 2200 | strcpy(de->name, "."); |
| 2201 | ocfs2_set_de_type(de, S_IFDIR); |
| 2202 | |
| 2203 | de = (struct ocfs2_dir_entry *) ((char *)de + le16_to_cpu(de->rec_len)); |
| 2204 | de->inode = cpu_to_le64(OCFS2_I(parent)->ip_blkno); |
| 2205 | de->rec_len = cpu_to_le16(size - OCFS2_DIR_REC_LEN(1)); |
| 2206 | de->name_len = 2; |
| 2207 | strcpy(de->name, ".."); |
| 2208 | ocfs2_set_de_type(de, S_IFDIR); |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2209 | |
| 2210 | return de; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2211 | } |
| 2212 | |
| 2213 | /* |
| 2214 | * This works together with code in ocfs2_mknod_locked() which sets |
| 2215 | * the inline-data flag and initializes the inline-data section. |
| 2216 | */ |
| 2217 | static int ocfs2_fill_new_dir_id(struct ocfs2_super *osb, |
| 2218 | handle_t *handle, |
| 2219 | struct inode *parent, |
| 2220 | struct inode *inode, |
| 2221 | struct buffer_head *di_bh) |
| 2222 | { |
| 2223 | int ret; |
| 2224 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
| 2225 | struct ocfs2_inline_data *data = &di->id2.i_data; |
| 2226 | unsigned int size = le16_to_cpu(data->id_count); |
| 2227 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2228 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2229 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2230 | if (ret) { |
| 2231 | mlog_errno(ret); |
| 2232 | goto out; |
| 2233 | } |
| 2234 | |
| 2235 | ocfs2_fill_initial_dirents(inode, parent, data->id_data, size); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2236 | ocfs2_journal_dirty(handle, di_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2237 | |
| 2238 | i_size_write(inode, size); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2239 | set_nlink(inode, 2); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2240 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
| 2241 | |
| 2242 | ret = ocfs2_mark_inode_dirty(handle, inode, di_bh); |
| 2243 | if (ret < 0) |
| 2244 | mlog_errno(ret); |
| 2245 | |
| 2246 | out: |
| 2247 | return ret; |
| 2248 | } |
| 2249 | |
| 2250 | static int ocfs2_fill_new_dir_el(struct ocfs2_super *osb, |
| 2251 | handle_t *handle, |
| 2252 | struct inode *parent, |
| 2253 | struct inode *inode, |
| 2254 | struct buffer_head *fe_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2255 | struct ocfs2_alloc_context *data_ac, |
| 2256 | struct buffer_head **ret_new_bh) |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2257 | { |
| 2258 | int status; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2259 | unsigned int size = osb->sb->s_blocksize; |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2260 | struct buffer_head *new_bh = NULL; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2261 | struct ocfs2_dir_entry *de; |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2262 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2263 | if (ocfs2_new_dir_wants_trailer(inode)) |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2264 | size = ocfs2_dir_trailer_blk_off(parent->i_sb); |
| 2265 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2266 | status = ocfs2_do_extend_dir(osb->sb, handle, inode, fe_bh, |
| 2267 | data_ac, NULL, &new_bh); |
| 2268 | if (status < 0) { |
| 2269 | mlog_errno(status); |
| 2270 | goto bail; |
| 2271 | } |
| 2272 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 2273 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2274 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2275 | status = ocfs2_journal_access_db(handle, INODE_CACHE(inode), new_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2276 | OCFS2_JOURNAL_ACCESS_CREATE); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2277 | if (status < 0) { |
| 2278 | mlog_errno(status); |
| 2279 | goto bail; |
| 2280 | } |
| 2281 | memset(new_bh->b_data, 0, osb->sb->s_blocksize); |
| 2282 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2283 | de = ocfs2_fill_initial_dirents(inode, parent, new_bh->b_data, size); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2284 | if (ocfs2_new_dir_wants_trailer(inode)) { |
| 2285 | int size = le16_to_cpu(de->rec_len); |
| 2286 | |
| 2287 | /* |
| 2288 | * Figure out the size of the hole left over after |
| 2289 | * insertion of '.' and '..'. The trailer wants this |
| 2290 | * information. |
| 2291 | */ |
| 2292 | size -= OCFS2_DIR_REC_LEN(2); |
| 2293 | size -= sizeof(struct ocfs2_dir_block_trailer); |
| 2294 | |
| 2295 | ocfs2_init_dir_trailer(inode, new_bh, size); |
| 2296 | } |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2297 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 2298 | ocfs2_journal_dirty(handle, new_bh); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2299 | |
| 2300 | i_size_write(inode, inode->i_sb->s_blocksize); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2301 | set_nlink(inode, 2); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2302 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
| 2303 | status = ocfs2_mark_inode_dirty(handle, inode, fe_bh); |
| 2304 | if (status < 0) { |
| 2305 | mlog_errno(status); |
| 2306 | goto bail; |
| 2307 | } |
| 2308 | |
| 2309 | status = 0; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2310 | if (ret_new_bh) { |
| 2311 | *ret_new_bh = new_bh; |
| 2312 | new_bh = NULL; |
| 2313 | } |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2314 | bail: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 2315 | brelse(new_bh); |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2316 | |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 2317 | return status; |
| 2318 | } |
| 2319 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2320 | static int ocfs2_dx_dir_attach_index(struct ocfs2_super *osb, |
| 2321 | handle_t *handle, struct inode *dir, |
| 2322 | struct buffer_head *di_bh, |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2323 | struct buffer_head *dirdata_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2324 | struct ocfs2_alloc_context *meta_ac, |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2325 | int dx_inline, u32 num_entries, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2326 | struct buffer_head **ret_dx_root_bh) |
| 2327 | { |
| 2328 | int ret; |
| 2329 | struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data; |
| 2330 | u16 dr_suballoc_bit; |
Joel Becker | 2b6cb57 | 2010-03-26 10:09:15 +0800 | [diff] [blame] | 2331 | u64 suballoc_loc, dr_blkno; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2332 | unsigned int num_bits; |
| 2333 | struct buffer_head *dx_root_bh = NULL; |
| 2334 | struct ocfs2_dx_root_block *dx_root; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2335 | struct ocfs2_dir_block_trailer *trailer = |
| 2336 | ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2337 | |
Joel Becker | 2b6cb57 | 2010-03-26 10:09:15 +0800 | [diff] [blame] | 2338 | ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc, |
| 2339 | &dr_suballoc_bit, &num_bits, &dr_blkno); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2340 | if (ret) { |
| 2341 | mlog_errno(ret); |
| 2342 | goto out; |
| 2343 | } |
| 2344 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 2345 | trace_ocfs2_dx_dir_attach_index( |
| 2346 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 2347 | (unsigned long long)dr_blkno); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2348 | |
| 2349 | dx_root_bh = sb_getblk(osb->sb, dr_blkno); |
| 2350 | if (dx_root_bh == NULL) { |
Rui Xiang | 7391a29 | 2013-11-12 15:06:54 -0800 | [diff] [blame] | 2351 | ret = -ENOMEM; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2352 | goto out; |
| 2353 | } |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 2354 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2355 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2356 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2357 | OCFS2_JOURNAL_ACCESS_CREATE); |
| 2358 | if (ret < 0) { |
| 2359 | mlog_errno(ret); |
| 2360 | goto out; |
| 2361 | } |
| 2362 | |
| 2363 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 2364 | memset(dx_root, 0, osb->sb->s_blocksize); |
| 2365 | strcpy(dx_root->dr_signature, OCFS2_DX_ROOT_SIGNATURE); |
Tiger Yang | b89c542 | 2010-01-25 14:11:06 +0800 | [diff] [blame] | 2366 | dx_root->dr_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot); |
Joel Becker | 2b6cb57 | 2010-03-26 10:09:15 +0800 | [diff] [blame] | 2367 | dx_root->dr_suballoc_loc = cpu_to_le64(suballoc_loc); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2368 | dx_root->dr_suballoc_bit = cpu_to_le16(dr_suballoc_bit); |
| 2369 | dx_root->dr_fs_generation = cpu_to_le32(osb->fs_generation); |
| 2370 | dx_root->dr_blkno = cpu_to_le64(dr_blkno); |
| 2371 | dx_root->dr_dir_blkno = cpu_to_le64(OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2372 | dx_root->dr_num_entries = cpu_to_le32(num_entries); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2373 | if (le16_to_cpu(trailer->db_free_rec_len)) |
| 2374 | dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr); |
| 2375 | else |
| 2376 | dx_root->dr_free_blk = cpu_to_le64(0); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2377 | |
| 2378 | if (dx_inline) { |
| 2379 | dx_root->dr_flags |= OCFS2_DX_FLAG_INLINE; |
| 2380 | dx_root->dr_entries.de_count = |
| 2381 | cpu_to_le16(ocfs2_dx_entries_per_root(osb->sb)); |
| 2382 | } else { |
| 2383 | dx_root->dr_list.l_count = |
| 2384 | cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb)); |
| 2385 | } |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 2386 | ocfs2_journal_dirty(handle, dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2387 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2388 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2389 | OCFS2_JOURNAL_ACCESS_CREATE); |
| 2390 | if (ret) { |
| 2391 | mlog_errno(ret); |
| 2392 | goto out; |
| 2393 | } |
| 2394 | |
| 2395 | di->i_dx_root = cpu_to_le64(dr_blkno); |
| 2396 | |
Tao Ma | 8ac33dc | 2010-12-15 16:30:00 +0800 | [diff] [blame] | 2397 | spin_lock(&OCFS2_I(dir)->ip_lock); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2398 | OCFS2_I(dir)->ip_dyn_features |= OCFS2_INDEXED_DIR_FL; |
| 2399 | di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features); |
Tao Ma | 8ac33dc | 2010-12-15 16:30:00 +0800 | [diff] [blame] | 2400 | spin_unlock(&OCFS2_I(dir)->ip_lock); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2401 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 2402 | ocfs2_journal_dirty(handle, di_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2403 | |
| 2404 | *ret_dx_root_bh = dx_root_bh; |
| 2405 | dx_root_bh = NULL; |
| 2406 | |
| 2407 | out: |
| 2408 | brelse(dx_root_bh); |
| 2409 | return ret; |
| 2410 | } |
| 2411 | |
| 2412 | static int ocfs2_dx_dir_format_cluster(struct ocfs2_super *osb, |
| 2413 | handle_t *handle, struct inode *dir, |
| 2414 | struct buffer_head **dx_leaves, |
| 2415 | int num_dx_leaves, u64 start_blk) |
| 2416 | { |
| 2417 | int ret, i; |
| 2418 | struct ocfs2_dx_leaf *dx_leaf; |
| 2419 | struct buffer_head *bh; |
| 2420 | |
| 2421 | for (i = 0; i < num_dx_leaves; i++) { |
| 2422 | bh = sb_getblk(osb->sb, start_blk + i); |
| 2423 | if (bh == NULL) { |
Rui Xiang | 7391a29 | 2013-11-12 15:06:54 -0800 | [diff] [blame] | 2424 | ret = -ENOMEM; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2425 | goto out; |
| 2426 | } |
| 2427 | dx_leaves[i] = bh; |
| 2428 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 2429 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2430 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2431 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2432 | OCFS2_JOURNAL_ACCESS_CREATE); |
| 2433 | if (ret < 0) { |
| 2434 | mlog_errno(ret); |
| 2435 | goto out; |
| 2436 | } |
| 2437 | |
| 2438 | dx_leaf = (struct ocfs2_dx_leaf *) bh->b_data; |
| 2439 | |
| 2440 | memset(dx_leaf, 0, osb->sb->s_blocksize); |
| 2441 | strcpy(dx_leaf->dl_signature, OCFS2_DX_LEAF_SIGNATURE); |
| 2442 | dx_leaf->dl_fs_generation = cpu_to_le32(osb->fs_generation); |
| 2443 | dx_leaf->dl_blkno = cpu_to_le64(bh->b_blocknr); |
| 2444 | dx_leaf->dl_list.de_count = |
| 2445 | cpu_to_le16(ocfs2_dx_entries_per_leaf(osb->sb)); |
| 2446 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 2447 | trace_ocfs2_dx_dir_format_cluster( |
| 2448 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 2449 | (unsigned long long)bh->b_blocknr, |
| 2450 | le16_to_cpu(dx_leaf->dl_list.de_count)); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2451 | |
| 2452 | ocfs2_journal_dirty(handle, bh); |
| 2453 | } |
| 2454 | |
| 2455 | ret = 0; |
| 2456 | out: |
| 2457 | return ret; |
| 2458 | } |
| 2459 | |
| 2460 | /* |
| 2461 | * Allocates and formats a new cluster for use in an indexed dir |
| 2462 | * leaf. This version will not do the extent insert, so that it can be |
| 2463 | * used by operations which need careful ordering. |
| 2464 | */ |
| 2465 | static int __ocfs2_dx_dir_new_cluster(struct inode *dir, |
| 2466 | u32 cpos, handle_t *handle, |
| 2467 | struct ocfs2_alloc_context *data_ac, |
| 2468 | struct buffer_head **dx_leaves, |
| 2469 | int num_dx_leaves, u64 *ret_phys_blkno) |
| 2470 | { |
| 2471 | int ret; |
| 2472 | u32 phys, num; |
| 2473 | u64 phys_blkno; |
| 2474 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2475 | |
| 2476 | /* |
| 2477 | * XXX: For create, this should claim cluster for the index |
| 2478 | * *before* the unindexed insert so that we have a better |
| 2479 | * chance of contiguousness as the directory grows in number |
| 2480 | * of entries. |
| 2481 | */ |
Joel Becker | 1ed9b77 | 2010-05-06 13:59:06 +0800 | [diff] [blame] | 2482 | ret = __ocfs2_claim_clusters(handle, data_ac, 1, 1, &phys, &num); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2483 | if (ret) { |
| 2484 | mlog_errno(ret); |
| 2485 | goto out; |
| 2486 | } |
| 2487 | |
| 2488 | /* |
| 2489 | * Format the new cluster first. That way, we're inserting |
| 2490 | * valid data. |
| 2491 | */ |
| 2492 | phys_blkno = ocfs2_clusters_to_blocks(osb->sb, phys); |
| 2493 | ret = ocfs2_dx_dir_format_cluster(osb, handle, dir, dx_leaves, |
| 2494 | num_dx_leaves, phys_blkno); |
| 2495 | if (ret) { |
| 2496 | mlog_errno(ret); |
| 2497 | goto out; |
| 2498 | } |
| 2499 | |
| 2500 | *ret_phys_blkno = phys_blkno; |
| 2501 | out: |
| 2502 | return ret; |
| 2503 | } |
| 2504 | |
| 2505 | static int ocfs2_dx_dir_new_cluster(struct inode *dir, |
| 2506 | struct ocfs2_extent_tree *et, |
| 2507 | u32 cpos, handle_t *handle, |
| 2508 | struct ocfs2_alloc_context *data_ac, |
| 2509 | struct ocfs2_alloc_context *meta_ac, |
| 2510 | struct buffer_head **dx_leaves, |
| 2511 | int num_dx_leaves) |
| 2512 | { |
| 2513 | int ret; |
| 2514 | u64 phys_blkno; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2515 | |
| 2516 | ret = __ocfs2_dx_dir_new_cluster(dir, cpos, handle, data_ac, dx_leaves, |
| 2517 | num_dx_leaves, &phys_blkno); |
| 2518 | if (ret) { |
| 2519 | mlog_errno(ret); |
| 2520 | goto out; |
| 2521 | } |
| 2522 | |
Joel Becker | cc79d8c | 2009-02-13 03:24:43 -0800 | [diff] [blame] | 2523 | ret = ocfs2_insert_extent(handle, et, cpos, phys_blkno, 1, 0, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2524 | meta_ac); |
| 2525 | if (ret) |
| 2526 | mlog_errno(ret); |
| 2527 | out: |
| 2528 | return ret; |
| 2529 | } |
| 2530 | |
| 2531 | static struct buffer_head **ocfs2_dx_dir_kmalloc_leaves(struct super_block *sb, |
| 2532 | int *ret_num_leaves) |
| 2533 | { |
| 2534 | int num_dx_leaves = ocfs2_clusters_to_blocks(sb, 1); |
| 2535 | struct buffer_head **dx_leaves; |
| 2536 | |
| 2537 | dx_leaves = kcalloc(num_dx_leaves, sizeof(struct buffer_head *), |
| 2538 | GFP_NOFS); |
| 2539 | if (dx_leaves && ret_num_leaves) |
| 2540 | *ret_num_leaves = num_dx_leaves; |
| 2541 | |
| 2542 | return dx_leaves; |
| 2543 | } |
| 2544 | |
| 2545 | static int ocfs2_fill_new_dir_dx(struct ocfs2_super *osb, |
| 2546 | handle_t *handle, |
| 2547 | struct inode *parent, |
| 2548 | struct inode *inode, |
| 2549 | struct buffer_head *di_bh, |
| 2550 | struct ocfs2_alloc_context *data_ac, |
| 2551 | struct ocfs2_alloc_context *meta_ac) |
| 2552 | { |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2553 | int ret; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2554 | struct buffer_head *leaf_bh = NULL; |
| 2555 | struct buffer_head *dx_root_bh = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2556 | struct ocfs2_dx_hinfo hinfo; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2557 | struct ocfs2_dx_root_block *dx_root; |
| 2558 | struct ocfs2_dx_entry_list *entry_list; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2559 | |
| 2560 | /* |
| 2561 | * Our strategy is to create the directory as though it were |
| 2562 | * unindexed, then add the index block. This works with very |
| 2563 | * little complication since the state of a new directory is a |
| 2564 | * very well known quantity. |
| 2565 | * |
| 2566 | * Essentially, we have two dirents ("." and ".."), in the 1st |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2567 | * block which need indexing. These are easily inserted into |
| 2568 | * the index block. |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2569 | */ |
| 2570 | |
| 2571 | ret = ocfs2_fill_new_dir_el(osb, handle, parent, inode, di_bh, |
| 2572 | data_ac, &leaf_bh); |
| 2573 | if (ret) { |
| 2574 | mlog_errno(ret); |
| 2575 | goto out; |
| 2576 | } |
| 2577 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2578 | ret = ocfs2_dx_dir_attach_index(osb, handle, inode, di_bh, leaf_bh, |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2579 | meta_ac, 1, 2, &dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2580 | if (ret) { |
| 2581 | mlog_errno(ret); |
| 2582 | goto out; |
| 2583 | } |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2584 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 2585 | entry_list = &dx_root->dr_entries; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2586 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2587 | /* Buffer has been journaled for us by ocfs2_dx_dir_attach_index */ |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2588 | ocfs2_dx_dir_name_hash(inode, ".", 1, &hinfo); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2589 | ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2590 | |
| 2591 | ocfs2_dx_dir_name_hash(inode, "..", 2, &hinfo); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2592 | ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2593 | |
| 2594 | out: |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2595 | brelse(dx_root_bh); |
| 2596 | brelse(leaf_bh); |
| 2597 | return ret; |
| 2598 | } |
| 2599 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2600 | int ocfs2_fill_new_dir(struct ocfs2_super *osb, |
| 2601 | handle_t *handle, |
| 2602 | struct inode *parent, |
| 2603 | struct inode *inode, |
| 2604 | struct buffer_head *fe_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2605 | struct ocfs2_alloc_context *data_ac, |
| 2606 | struct ocfs2_alloc_context *meta_ac) |
| 2607 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2608 | { |
| 2609 | BUG_ON(!ocfs2_supports_inline_data(osb) && data_ac == NULL); |
| 2610 | |
| 2611 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
| 2612 | return ocfs2_fill_new_dir_id(osb, handle, parent, inode, fe_bh); |
| 2613 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2614 | if (ocfs2_supports_indexed_dirs(osb)) |
| 2615 | return ocfs2_fill_new_dir_dx(osb, handle, parent, inode, fe_bh, |
| 2616 | data_ac, meta_ac); |
| 2617 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2618 | return ocfs2_fill_new_dir_el(osb, handle, parent, inode, fe_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2619 | data_ac, NULL); |
| 2620 | } |
| 2621 | |
| 2622 | static int ocfs2_dx_dir_index_block(struct inode *dir, |
| 2623 | handle_t *handle, |
| 2624 | struct buffer_head **dx_leaves, |
| 2625 | int num_dx_leaves, |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2626 | u32 *num_dx_entries, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2627 | struct buffer_head *dirent_bh) |
| 2628 | { |
Tao Ma | 0fba813 | 2009-03-19 05:08:43 +0800 | [diff] [blame] | 2629 | int ret = 0, namelen, i; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2630 | char *de_buf, *limit; |
| 2631 | struct ocfs2_dir_entry *de; |
| 2632 | struct buffer_head *dx_leaf_bh; |
| 2633 | struct ocfs2_dx_hinfo hinfo; |
| 2634 | u64 dirent_blk = dirent_bh->b_blocknr; |
| 2635 | |
| 2636 | de_buf = dirent_bh->b_data; |
| 2637 | limit = de_buf + dir->i_sb->s_blocksize; |
| 2638 | |
| 2639 | while (de_buf < limit) { |
| 2640 | de = (struct ocfs2_dir_entry *)de_buf; |
| 2641 | |
| 2642 | namelen = de->name_len; |
| 2643 | if (!namelen || !de->inode) |
| 2644 | goto inc; |
| 2645 | |
| 2646 | ocfs2_dx_dir_name_hash(dir, de->name, namelen, &hinfo); |
| 2647 | |
| 2648 | i = ocfs2_dx_dir_hash_idx(OCFS2_SB(dir->i_sb), &hinfo); |
| 2649 | dx_leaf_bh = dx_leaves[i]; |
| 2650 | |
| 2651 | ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &hinfo, |
| 2652 | dirent_blk, dx_leaf_bh); |
| 2653 | if (ret) { |
| 2654 | mlog_errno(ret); |
| 2655 | goto out; |
| 2656 | } |
| 2657 | |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2658 | *num_dx_entries = *num_dx_entries + 1; |
| 2659 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2660 | inc: |
| 2661 | de_buf += le16_to_cpu(de->rec_len); |
| 2662 | } |
| 2663 | |
| 2664 | out: |
| 2665 | return ret; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2666 | } |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2667 | |
| 2668 | /* |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2669 | * XXX: This expects dx_root_bh to already be part of the transaction. |
| 2670 | */ |
| 2671 | static void ocfs2_dx_dir_index_root_block(struct inode *dir, |
| 2672 | struct buffer_head *dx_root_bh, |
| 2673 | struct buffer_head *dirent_bh) |
| 2674 | { |
| 2675 | char *de_buf, *limit; |
| 2676 | struct ocfs2_dx_root_block *dx_root; |
| 2677 | struct ocfs2_dir_entry *de; |
| 2678 | struct ocfs2_dx_hinfo hinfo; |
| 2679 | u64 dirent_blk = dirent_bh->b_blocknr; |
| 2680 | |
| 2681 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 2682 | |
| 2683 | de_buf = dirent_bh->b_data; |
| 2684 | limit = de_buf + dir->i_sb->s_blocksize; |
| 2685 | |
| 2686 | while (de_buf < limit) { |
| 2687 | de = (struct ocfs2_dir_entry *)de_buf; |
| 2688 | |
| 2689 | if (!de->name_len || !de->inode) |
| 2690 | goto inc; |
| 2691 | |
| 2692 | ocfs2_dx_dir_name_hash(dir, de->name, de->name_len, &hinfo); |
| 2693 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 2694 | trace_ocfs2_dx_dir_index_root_block( |
| 2695 | (unsigned long long)dir->i_ino, |
| 2696 | hinfo.major_hash, hinfo.minor_hash, |
| 2697 | de->name_len, de->name, |
| 2698 | le16_to_cpu(dx_root->dr_entries.de_num_used)); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2699 | |
| 2700 | ocfs2_dx_entry_list_insert(&dx_root->dr_entries, &hinfo, |
| 2701 | dirent_blk); |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2702 | |
| 2703 | le32_add_cpu(&dx_root->dr_num_entries, 1); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2704 | inc: |
| 2705 | de_buf += le16_to_cpu(de->rec_len); |
| 2706 | } |
| 2707 | } |
| 2708 | |
| 2709 | /* |
| 2710 | * Count the number of inline directory entries in di_bh and compare |
| 2711 | * them against the number of entries we can hold in an inline dx root |
| 2712 | * block. |
| 2713 | */ |
| 2714 | static int ocfs2_new_dx_should_be_inline(struct inode *dir, |
| 2715 | struct buffer_head *di_bh) |
| 2716 | { |
| 2717 | int dirent_count = 0; |
| 2718 | char *de_buf, *limit; |
| 2719 | struct ocfs2_dir_entry *de; |
| 2720 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
| 2721 | |
| 2722 | de_buf = di->id2.i_data.id_data; |
| 2723 | limit = de_buf + i_size_read(dir); |
| 2724 | |
| 2725 | while (de_buf < limit) { |
| 2726 | de = (struct ocfs2_dir_entry *)de_buf; |
| 2727 | |
| 2728 | if (de->name_len && de->inode) |
| 2729 | dirent_count++; |
| 2730 | |
| 2731 | de_buf += le16_to_cpu(de->rec_len); |
| 2732 | } |
| 2733 | |
| 2734 | /* We are careful to leave room for one extra record. */ |
| 2735 | return dirent_count < ocfs2_dx_entries_per_root(dir->i_sb); |
| 2736 | } |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2737 | |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2738 | /* |
| 2739 | * Expand rec_len of the rightmost dirent in a directory block so that it |
| 2740 | * contains the end of our valid space for dirents. We do this during |
| 2741 | * expansion from an inline directory to one with extents. The first dir block |
| 2742 | * in that case is taken from the inline data portion of the inode block. |
| 2743 | * |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2744 | * This will also return the largest amount of contiguous space for a dirent |
| 2745 | * in the block. That value is *not* necessarily the last dirent, even after |
| 2746 | * expansion. The directory indexing code wants this value for free space |
| 2747 | * accounting. We do this here since we're already walking the entire dir |
| 2748 | * block. |
| 2749 | * |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2750 | * We add the dir trailer if this filesystem wants it. |
| 2751 | */ |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2752 | static unsigned int ocfs2_expand_last_dirent(char *start, unsigned int old_size, |
| 2753 | struct inode *dir) |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2754 | { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2755 | struct super_block *sb = dir->i_sb; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2756 | struct ocfs2_dir_entry *de; |
| 2757 | struct ocfs2_dir_entry *prev_de; |
| 2758 | char *de_buf, *limit; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2759 | unsigned int new_size = sb->s_blocksize; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2760 | unsigned int bytes, this_hole; |
| 2761 | unsigned int largest_hole = 0; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2762 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2763 | if (ocfs2_new_dir_wants_trailer(dir)) |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 2764 | new_size = ocfs2_dir_trailer_blk_off(sb); |
| 2765 | |
| 2766 | bytes = new_size - old_size; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2767 | |
| 2768 | limit = start + old_size; |
| 2769 | de_buf = start; |
| 2770 | de = (struct ocfs2_dir_entry *)de_buf; |
| 2771 | do { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2772 | this_hole = ocfs2_figure_dirent_hole(de); |
| 2773 | if (this_hole > largest_hole) |
| 2774 | largest_hole = this_hole; |
| 2775 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2776 | prev_de = de; |
| 2777 | de_buf += le16_to_cpu(de->rec_len); |
| 2778 | de = (struct ocfs2_dir_entry *)de_buf; |
| 2779 | } while (de_buf < limit); |
| 2780 | |
| 2781 | le16_add_cpu(&prev_de->rec_len, bytes); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2782 | |
| 2783 | /* We need to double check this after modification of the final |
| 2784 | * dirent. */ |
| 2785 | this_hole = ocfs2_figure_dirent_hole(prev_de); |
| 2786 | if (this_hole > largest_hole) |
| 2787 | largest_hole = this_hole; |
| 2788 | |
| 2789 | if (largest_hole >= OCFS2_DIR_MIN_REC_LEN) |
| 2790 | return largest_hole; |
| 2791 | return 0; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2792 | } |
| 2793 | |
| 2794 | /* |
| 2795 | * We allocate enough clusters to fulfill "blocks_wanted", but set |
| 2796 | * i_size to exactly one block. Ocfs2_extend_dir() will handle the |
| 2797 | * rest automatically for us. |
| 2798 | * |
| 2799 | * *first_block_bh is a pointer to the 1st data block allocated to the |
| 2800 | * directory. |
| 2801 | */ |
| 2802 | static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh, |
| 2803 | unsigned int blocks_wanted, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2804 | struct ocfs2_dir_lookup_result *lookup, |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2805 | struct buffer_head **first_block_bh) |
| 2806 | { |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2807 | u32 alloc, dx_alloc, bit_off, len, num_dx_entries = 0; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2808 | struct super_block *sb = dir->i_sb; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2809 | int ret, i, num_dx_leaves = 0, dx_inline = 0, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2810 | credits = ocfs2_inline_to_extents_credits(sb); |
| 2811 | u64 dx_insert_blkno, blkno, |
| 2812 | bytes = blocks_wanted << sb->s_blocksize_bits; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2813 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2814 | struct ocfs2_inode_info *oi = OCFS2_I(dir); |
Marcus Meissner | 5d44670 | 2011-05-05 10:44:11 -0700 | [diff] [blame] | 2815 | struct ocfs2_alloc_context *data_ac = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2816 | struct ocfs2_alloc_context *meta_ac = NULL; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2817 | struct buffer_head *dirdata_bh = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2818 | struct buffer_head *dx_root_bh = NULL; |
| 2819 | struct buffer_head **dx_leaves = NULL; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2820 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
| 2821 | handle_t *handle; |
Joel Becker | f99b9b7 | 2008-08-20 19:36:33 -0700 | [diff] [blame] | 2822 | struct ocfs2_extent_tree et; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2823 | struct ocfs2_extent_tree dx_et; |
| 2824 | int did_quota = 0, bytes_allocated = 0; |
Joel Becker | f99b9b7 | 2008-08-20 19:36:33 -0700 | [diff] [blame] | 2825 | |
Joel Becker | 5e404e9 | 2009-02-13 03:54:22 -0800 | [diff] [blame] | 2826 | ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(dir), di_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2827 | |
| 2828 | alloc = ocfs2_clusters_for_bytes(sb, bytes); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2829 | dx_alloc = 0; |
| 2830 | |
Jan Kara | edd45c0 | 2009-06-02 14:24:03 +0200 | [diff] [blame] | 2831 | down_write(&oi->ip_alloc_sem); |
| 2832 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2833 | if (ocfs2_supports_indexed_dirs(osb)) { |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2834 | credits += ocfs2_add_dir_index_credits(sb); |
| 2835 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2836 | dx_inline = ocfs2_new_dx_should_be_inline(dir, di_bh); |
| 2837 | if (!dx_inline) { |
| 2838 | /* Add one more cluster for an index leaf */ |
| 2839 | dx_alloc++; |
| 2840 | dx_leaves = ocfs2_dx_dir_kmalloc_leaves(sb, |
| 2841 | &num_dx_leaves); |
| 2842 | if (!dx_leaves) { |
| 2843 | ret = -ENOMEM; |
| 2844 | mlog_errno(ret); |
| 2845 | goto out; |
| 2846 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2847 | } |
| 2848 | |
| 2849 | /* This gets us the dx_root */ |
| 2850 | ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &meta_ac); |
| 2851 | if (ret) { |
| 2852 | mlog_errno(ret); |
| 2853 | goto out; |
| 2854 | } |
| 2855 | } |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2856 | |
| 2857 | /* |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2858 | * We should never need more than 2 clusters for the unindexed |
| 2859 | * tree - maximum dirent size is far less than one block. In |
| 2860 | * fact, the only time we'd need more than one cluster is if |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2861 | * blocksize == clustersize and the dirent won't fit in the |
| 2862 | * extra space that the expansion to a single block gives. As |
| 2863 | * of today, that only happens on 4k/4k file systems. |
| 2864 | */ |
| 2865 | BUG_ON(alloc > 2); |
| 2866 | |
Tao Ma | 035a571 | 2009-04-07 07:40:57 +0800 | [diff] [blame] | 2867 | ret = ocfs2_reserve_clusters(osb, alloc + dx_alloc, &data_ac); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2868 | if (ret) { |
| 2869 | mlog_errno(ret); |
| 2870 | goto out; |
| 2871 | } |
| 2872 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2873 | /* |
Joe Perches | c78bad1 | 2008-02-03 17:33:42 +0200 | [diff] [blame] | 2874 | * Prepare for worst case allocation scenario of two separate |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2875 | * extents in the unindexed tree. |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2876 | */ |
| 2877 | if (alloc == 2) |
| 2878 | credits += OCFS2_SUBALLOC_ALLOC; |
| 2879 | |
| 2880 | handle = ocfs2_start_trans(osb, credits); |
| 2881 | if (IS_ERR(handle)) { |
| 2882 | ret = PTR_ERR(handle); |
| 2883 | mlog_errno(ret); |
Jan Kara | edd45c0 | 2009-06-02 14:24:03 +0200 | [diff] [blame] | 2884 | goto out; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2885 | } |
| 2886 | |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 2887 | ret = dquot_alloc_space_nodirty(dir, |
| 2888 | ocfs2_clusters_to_bytes(osb->sb, alloc + dx_alloc)); |
| 2889 | if (ret) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 2890 | goto out_commit; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 2891 | did_quota = 1; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2892 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2893 | if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) { |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2894 | /* |
| 2895 | * Allocate our index cluster first, to maximize the |
| 2896 | * possibility that unindexed leaves grow |
| 2897 | * contiguously. |
| 2898 | */ |
| 2899 | ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac, |
| 2900 | dx_leaves, num_dx_leaves, |
| 2901 | &dx_insert_blkno); |
| 2902 | if (ret) { |
| 2903 | mlog_errno(ret); |
| 2904 | goto out_commit; |
| 2905 | } |
| 2906 | bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1); |
| 2907 | } |
| 2908 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2909 | /* |
| 2910 | * Try to claim as many clusters as the bitmap can give though |
| 2911 | * if we only get one now, that's enough to continue. The rest |
| 2912 | * will be claimed after the conversion to extents. |
| 2913 | */ |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 2914 | if (ocfs2_dir_resv_allowed(osb)) |
| 2915 | data_ac->ac_resv = &oi->ip_la_data_resv; |
Joel Becker | 1ed9b77 | 2010-05-06 13:59:06 +0800 | [diff] [blame] | 2916 | ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off, &len); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2917 | if (ret) { |
| 2918 | mlog_errno(ret); |
| 2919 | goto out_commit; |
| 2920 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2921 | bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2922 | |
| 2923 | /* |
| 2924 | * Operations are carefully ordered so that we set up the new |
| 2925 | * data block first. The conversion from inline data to |
| 2926 | * extents follows. |
| 2927 | */ |
| 2928 | blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off); |
| 2929 | dirdata_bh = sb_getblk(sb, blkno); |
| 2930 | if (!dirdata_bh) { |
Rui Xiang | 7391a29 | 2013-11-12 15:06:54 -0800 | [diff] [blame] | 2931 | ret = -ENOMEM; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2932 | mlog_errno(ret); |
| 2933 | goto out_commit; |
| 2934 | } |
| 2935 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 2936 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dirdata_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2937 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2938 | ret = ocfs2_journal_access_db(handle, INODE_CACHE(dir), dirdata_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2939 | OCFS2_JOURNAL_ACCESS_CREATE); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2940 | if (ret) { |
| 2941 | mlog_errno(ret); |
| 2942 | goto out_commit; |
| 2943 | } |
| 2944 | |
| 2945 | memcpy(dirdata_bh->b_data, di->id2.i_data.id_data, i_size_read(dir)); |
| 2946 | memset(dirdata_bh->b_data + i_size_read(dir), 0, |
| 2947 | sb->s_blocksize - i_size_read(dir)); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 2948 | i = ocfs2_expand_last_dirent(dirdata_bh->b_data, i_size_read(dir), dir); |
| 2949 | if (ocfs2_new_dir_wants_trailer(dir)) { |
| 2950 | /* |
| 2951 | * Prepare the dir trailer up front. It will otherwise look |
| 2952 | * like a valid dirent. Even if inserting the index fails |
| 2953 | * (unlikely), then all we'll have done is given first dir |
| 2954 | * block a small amount of fragmentation. |
| 2955 | */ |
| 2956 | ocfs2_init_dir_trailer(dir, dirdata_bh, i); |
| 2957 | } |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2958 | |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 2959 | ocfs2_update_inode_fsync_trans(handle, dir, 1); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 2960 | ocfs2_journal_dirty(handle, dirdata_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2961 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2962 | if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) { |
| 2963 | /* |
| 2964 | * Dx dirs with an external cluster need to do this up |
| 2965 | * front. Inline dx root's get handled later, after |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2966 | * we've allocated our root block. We get passed back |
| 2967 | * a total number of items so that dr_num_entries can |
| 2968 | * be correctly set once the dx_root has been |
| 2969 | * allocated. |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 2970 | */ |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2971 | ret = ocfs2_dx_dir_index_block(dir, handle, dx_leaves, |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 2972 | num_dx_leaves, &num_dx_entries, |
| 2973 | dirdata_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2974 | if (ret) { |
| 2975 | mlog_errno(ret); |
| 2976 | goto out_commit; |
| 2977 | } |
| 2978 | } |
| 2979 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2980 | /* |
| 2981 | * Set extent, i_size, etc on the directory. After this, the |
| 2982 | * inode should contain the same exact dirents as before and |
| 2983 | * be fully accessible from system calls. |
| 2984 | * |
| 2985 | * We let the later dirent insert modify c/mtime - to the user |
| 2986 | * the data hasn't changed. |
| 2987 | */ |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2988 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2989 | OCFS2_JOURNAL_ACCESS_CREATE); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 2990 | if (ret) { |
| 2991 | mlog_errno(ret); |
| 2992 | goto out_commit; |
| 2993 | } |
| 2994 | |
| 2995 | spin_lock(&oi->ip_lock); |
| 2996 | oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL; |
| 2997 | di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features); |
| 2998 | spin_unlock(&oi->ip_lock); |
| 2999 | |
| 3000 | ocfs2_dinode_new_extent_list(dir, di); |
| 3001 | |
| 3002 | i_size_write(dir, sb->s_blocksize); |
| 3003 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
| 3004 | |
| 3005 | di->i_size = cpu_to_le64(sb->s_blocksize); |
| 3006 | di->i_ctime = di->i_mtime = cpu_to_le64(dir->i_ctime.tv_sec); |
| 3007 | di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(dir->i_ctime.tv_nsec); |
Darrick J. Wong | 6fdb702 | 2014-04-03 14:47:08 -0700 | [diff] [blame] | 3008 | ocfs2_update_inode_fsync_trans(handle, dir, 1); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3009 | |
| 3010 | /* |
| 3011 | * This should never fail as our extent list is empty and all |
| 3012 | * related blocks have been journaled already. |
| 3013 | */ |
Joel Becker | cc79d8c | 2009-02-13 03:24:43 -0800 | [diff] [blame] | 3014 | ret = ocfs2_insert_extent(handle, &et, 0, blkno, len, |
Joel Becker | f99b9b7 | 2008-08-20 19:36:33 -0700 | [diff] [blame] | 3015 | 0, NULL); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3016 | if (ret) { |
| 3017 | mlog_errno(ret); |
Tao Ma | 83cab53 | 2008-08-21 14:14:27 +0800 | [diff] [blame] | 3018 | goto out_commit; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3019 | } |
| 3020 | |
Mark Fasheh | 9780eb6 | 2008-08-05 11:32:46 -0700 | [diff] [blame] | 3021 | /* |
| 3022 | * Set i_blocks after the extent insert for the most up to |
| 3023 | * date ip_clusters value. |
| 3024 | */ |
| 3025 | dir->i_blocks = ocfs2_inode_sector_count(dir); |
| 3026 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 3027 | ocfs2_journal_dirty(handle, di_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3028 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3029 | if (ocfs2_supports_indexed_dirs(osb)) { |
| 3030 | ret = ocfs2_dx_dir_attach_index(osb, handle, dir, di_bh, |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3031 | dirdata_bh, meta_ac, dx_inline, |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 3032 | num_dx_entries, &dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3033 | if (ret) { |
| 3034 | mlog_errno(ret); |
| 3035 | goto out_commit; |
| 3036 | } |
| 3037 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 3038 | if (dx_inline) { |
| 3039 | ocfs2_dx_dir_index_root_block(dir, dx_root_bh, |
| 3040 | dirdata_bh); |
| 3041 | } else { |
Joel Becker | 5e404e9 | 2009-02-13 03:54:22 -0800 | [diff] [blame] | 3042 | ocfs2_init_dx_root_extent_tree(&dx_et, |
| 3043 | INODE_CACHE(dir), |
| 3044 | dx_root_bh); |
Joel Becker | cc79d8c | 2009-02-13 03:24:43 -0800 | [diff] [blame] | 3045 | ret = ocfs2_insert_extent(handle, &dx_et, 0, |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 3046 | dx_insert_blkno, 1, 0, NULL); |
| 3047 | if (ret) |
| 3048 | mlog_errno(ret); |
| 3049 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3050 | } |
| 3051 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3052 | /* |
| 3053 | * We asked for two clusters, but only got one in the 1st |
| 3054 | * pass. Claim the 2nd cluster as a separate extent. |
| 3055 | */ |
| 3056 | if (alloc > len) { |
Joel Becker | 1ed9b77 | 2010-05-06 13:59:06 +0800 | [diff] [blame] | 3057 | ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off, |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3058 | &len); |
| 3059 | if (ret) { |
| 3060 | mlog_errno(ret); |
| 3061 | goto out_commit; |
| 3062 | } |
| 3063 | blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off); |
| 3064 | |
Joel Becker | cc79d8c | 2009-02-13 03:24:43 -0800 | [diff] [blame] | 3065 | ret = ocfs2_insert_extent(handle, &et, 1, |
Joel Becker | f99b9b7 | 2008-08-20 19:36:33 -0700 | [diff] [blame] | 3066 | blkno, len, 0, NULL); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3067 | if (ret) { |
| 3068 | mlog_errno(ret); |
Tao Ma | 83cab53 | 2008-08-21 14:14:27 +0800 | [diff] [blame] | 3069 | goto out_commit; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3070 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3071 | bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3072 | } |
| 3073 | |
| 3074 | *first_block_bh = dirdata_bh; |
| 3075 | dirdata_bh = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3076 | if (ocfs2_supports_indexed_dirs(osb)) { |
| 3077 | unsigned int off; |
| 3078 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 3079 | if (!dx_inline) { |
| 3080 | /* |
| 3081 | * We need to return the correct block within the |
| 3082 | * cluster which should hold our entry. |
| 3083 | */ |
| 3084 | off = ocfs2_dx_dir_hash_idx(OCFS2_SB(dir->i_sb), |
| 3085 | &lookup->dl_hinfo); |
| 3086 | get_bh(dx_leaves[off]); |
| 3087 | lookup->dl_dx_leaf_bh = dx_leaves[off]; |
| 3088 | } |
| 3089 | lookup->dl_dx_root_bh = dx_root_bh; |
| 3090 | dx_root_bh = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3091 | } |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3092 | |
| 3093 | out_commit: |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 3094 | if (ret < 0 && did_quota) |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 3095 | dquot_free_space_nodirty(dir, bytes_allocated); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3096 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3097 | ocfs2_commit_trans(osb, handle); |
| 3098 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3099 | out: |
Jan Kara | edd45c0 | 2009-06-02 14:24:03 +0200 | [diff] [blame] | 3100 | up_write(&oi->ip_alloc_sem); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3101 | if (data_ac) |
| 3102 | ocfs2_free_alloc_context(data_ac); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3103 | if (meta_ac) |
| 3104 | ocfs2_free_alloc_context(meta_ac); |
| 3105 | |
| 3106 | if (dx_leaves) { |
| 3107 | for (i = 0; i < num_dx_leaves; i++) |
| 3108 | brelse(dx_leaves[i]); |
| 3109 | kfree(dx_leaves); |
| 3110 | } |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3111 | |
| 3112 | brelse(dirdata_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3113 | brelse(dx_root_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3114 | |
| 3115 | return ret; |
| 3116 | } |
| 3117 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3118 | /* returns a bh of the 1st new block in the allocation. */ |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 3119 | static int ocfs2_do_extend_dir(struct super_block *sb, |
| 3120 | handle_t *handle, |
| 3121 | struct inode *dir, |
| 3122 | struct buffer_head *parent_fe_bh, |
| 3123 | struct ocfs2_alloc_context *data_ac, |
| 3124 | struct ocfs2_alloc_context *meta_ac, |
| 3125 | struct buffer_head **new_bh) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3126 | { |
| 3127 | int status; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 3128 | int extend, did_quota = 0; |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 3129 | u64 p_blkno, v_blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3130 | |
| 3131 | spin_lock(&OCFS2_I(dir)->ip_lock); |
| 3132 | extend = (i_size_read(dir) == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters)); |
| 3133 | spin_unlock(&OCFS2_I(dir)->ip_lock); |
| 3134 | |
| 3135 | if (extend) { |
Mark Fasheh | dcd0538 | 2007-01-16 11:32:23 -0800 | [diff] [blame] | 3136 | u32 offset = OCFS2_I(dir)->ip_clusters; |
| 3137 | |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 3138 | status = dquot_alloc_space_nodirty(dir, |
| 3139 | ocfs2_clusters_to_bytes(sb, 1)); |
| 3140 | if (status) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 3141 | goto bail; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 3142 | did_quota = 1; |
| 3143 | |
Tao Ma | 0eb8d47 | 2008-08-18 17:38:45 +0800 | [diff] [blame] | 3144 | status = ocfs2_add_inode_data(OCFS2_SB(sb), dir, &offset, |
| 3145 | 1, 0, parent_fe_bh, handle, |
| 3146 | data_ac, meta_ac, NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3147 | BUG_ON(status == -EAGAIN); |
| 3148 | if (status < 0) { |
| 3149 | mlog_errno(status); |
| 3150 | goto bail; |
| 3151 | } |
| 3152 | } |
| 3153 | |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 3154 | v_blkno = ocfs2_blocks_for_bytes(sb, i_size_read(dir)); |
| 3155 | status = ocfs2_extent_map_get_blocks(dir, v_blkno, &p_blkno, NULL, NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3156 | if (status < 0) { |
| 3157 | mlog_errno(status); |
| 3158 | goto bail; |
| 3159 | } |
| 3160 | |
| 3161 | *new_bh = sb_getblk(sb, p_blkno); |
| 3162 | if (!*new_bh) { |
Rui Xiang | 7391a29 | 2013-11-12 15:06:54 -0800 | [diff] [blame] | 3163 | status = -ENOMEM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3164 | mlog_errno(status); |
| 3165 | goto bail; |
| 3166 | } |
| 3167 | status = 0; |
| 3168 | bail: |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 3169 | if (did_quota && status < 0) |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 3170 | dquot_free_space_nodirty(dir, ocfs2_clusters_to_bytes(sb, 1)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3171 | return status; |
| 3172 | } |
| 3173 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3174 | /* |
| 3175 | * Assumes you already have a cluster lock on the directory. |
| 3176 | * |
| 3177 | * 'blocks_wanted' is only used if we have an inline directory which |
| 3178 | * is to be turned into an extent based one. The size of the dirent to |
| 3179 | * insert might be larger than the space gained by growing to just one |
| 3180 | * block, so we may have to grow the inode by two blocks in that case. |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3181 | * |
| 3182 | * If the directory is already indexed, dx_root_bh must be provided. |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3183 | */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3184 | static int ocfs2_extend_dir(struct ocfs2_super *osb, |
| 3185 | struct inode *dir, |
| 3186 | struct buffer_head *parent_fe_bh, |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3187 | unsigned int blocks_wanted, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3188 | struct ocfs2_dir_lookup_result *lookup, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3189 | struct buffer_head **new_de_bh) |
| 3190 | { |
| 3191 | int status = 0; |
Joel Becker | ee19a77 | 2007-03-28 18:27:07 -0700 | [diff] [blame] | 3192 | int credits, num_free_extents, drop_alloc_sem = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3193 | loff_t dir_i_size; |
| 3194 | struct ocfs2_dinode *fe = (struct ocfs2_dinode *) parent_fe_bh->b_data; |
Tao Ma | 811f933 | 2008-08-18 17:38:43 +0800 | [diff] [blame] | 3195 | struct ocfs2_extent_list *el = &fe->id2.i_list; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3196 | struct ocfs2_alloc_context *data_ac = NULL; |
| 3197 | struct ocfs2_alloc_context *meta_ac = NULL; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 3198 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3199 | struct buffer_head *new_bh = NULL; |
| 3200 | struct ocfs2_dir_entry * de; |
| 3201 | struct super_block *sb = osb->sb; |
Joel Becker | f99b9b7 | 2008-08-20 19:36:33 -0700 | [diff] [blame] | 3202 | struct ocfs2_extent_tree et; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3203 | struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3204 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3205 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3206 | /* |
| 3207 | * This would be a code error as an inline directory should |
| 3208 | * never have an index root. |
| 3209 | */ |
| 3210 | BUG_ON(dx_root_bh); |
| 3211 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3212 | status = ocfs2_expand_inline_dir(dir, parent_fe_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3213 | blocks_wanted, lookup, |
| 3214 | &new_bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3215 | if (status) { |
| 3216 | mlog_errno(status); |
| 3217 | goto bail; |
| 3218 | } |
| 3219 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3220 | /* Expansion from inline to an indexed directory will |
| 3221 | * have given us this. */ |
| 3222 | dx_root_bh = lookup->dl_dx_root_bh; |
| 3223 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3224 | if (blocks_wanted == 1) { |
| 3225 | /* |
| 3226 | * If the new dirent will fit inside the space |
| 3227 | * created by pushing out to one block, then |
| 3228 | * we can complete the operation |
| 3229 | * here. Otherwise we have to expand i_size |
| 3230 | * and format the 2nd block below. |
| 3231 | */ |
| 3232 | BUG_ON(new_bh == NULL); |
| 3233 | goto bail_bh; |
| 3234 | } |
| 3235 | |
| 3236 | /* |
| 3237 | * Get rid of 'new_bh' - we want to format the 2nd |
| 3238 | * data block and return that instead. |
| 3239 | */ |
| 3240 | brelse(new_bh); |
| 3241 | new_bh = NULL; |
| 3242 | |
Jan Kara | edd45c0 | 2009-06-02 14:24:03 +0200 | [diff] [blame] | 3243 | down_write(&OCFS2_I(dir)->ip_alloc_sem); |
| 3244 | drop_alloc_sem = 1; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3245 | dir_i_size = i_size_read(dir); |
| 3246 | credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS; |
| 3247 | goto do_extend; |
| 3248 | } |
| 3249 | |
Jan Kara | edd45c0 | 2009-06-02 14:24:03 +0200 | [diff] [blame] | 3250 | down_write(&OCFS2_I(dir)->ip_alloc_sem); |
| 3251 | drop_alloc_sem = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3252 | dir_i_size = i_size_read(dir); |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 3253 | trace_ocfs2_extend_dir((unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 3254 | dir_i_size); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3255 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3256 | /* dir->i_size is always block aligned. */ |
| 3257 | spin_lock(&OCFS2_I(dir)->ip_lock); |
| 3258 | if (dir_i_size == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters)) { |
| 3259 | spin_unlock(&OCFS2_I(dir)->ip_lock); |
Joel Becker | 5e404e9 | 2009-02-13 03:54:22 -0800 | [diff] [blame] | 3260 | ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(dir), |
| 3261 | parent_fe_bh); |
Joel Becker | 3d03a30 | 2009-02-12 17:49:26 -0800 | [diff] [blame] | 3262 | num_free_extents = ocfs2_num_free_extents(osb, &et); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3263 | if (num_free_extents < 0) { |
| 3264 | status = num_free_extents; |
| 3265 | mlog_errno(status); |
| 3266 | goto bail; |
| 3267 | } |
| 3268 | |
| 3269 | if (!num_free_extents) { |
Tao Ma | 811f933 | 2008-08-18 17:38:43 +0800 | [diff] [blame] | 3270 | status = ocfs2_reserve_new_metadata(osb, el, &meta_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3271 | if (status < 0) { |
| 3272 | if (status != -ENOSPC) |
| 3273 | mlog_errno(status); |
| 3274 | goto bail; |
| 3275 | } |
| 3276 | } |
| 3277 | |
Mark Fasheh | da5cbf2 | 2006-10-06 18:34:35 -0700 | [diff] [blame] | 3278 | status = ocfs2_reserve_clusters(osb, 1, &data_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3279 | if (status < 0) { |
| 3280 | if (status != -ENOSPC) |
| 3281 | mlog_errno(status); |
| 3282 | goto bail; |
| 3283 | } |
| 3284 | |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 3285 | if (ocfs2_dir_resv_allowed(osb)) |
| 3286 | data_ac->ac_resv = &OCFS2_I(dir)->ip_la_data_resv; |
Mark Fasheh | e3b4a97 | 2009-12-07 13:16:07 -0800 | [diff] [blame] | 3287 | |
Goldwyn Rodrigues | 06f9da6 | 2013-11-12 15:06:52 -0800 | [diff] [blame] | 3288 | credits = ocfs2_calc_extend_credits(sb, el); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3289 | } else { |
| 3290 | spin_unlock(&OCFS2_I(dir)->ip_lock); |
| 3291 | credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS; |
| 3292 | } |
| 3293 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3294 | do_extend: |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3295 | if (ocfs2_dir_indexed(dir)) |
| 3296 | credits++; /* For attaching the new dirent block to the |
| 3297 | * dx_root */ |
| 3298 | |
Mark Fasheh | 65eff9c | 2006-10-09 17:26:22 -0700 | [diff] [blame] | 3299 | handle = ocfs2_start_trans(osb, credits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3300 | if (IS_ERR(handle)) { |
| 3301 | status = PTR_ERR(handle); |
| 3302 | handle = NULL; |
| 3303 | mlog_errno(status); |
| 3304 | goto bail; |
| 3305 | } |
| 3306 | |
| 3307 | status = ocfs2_do_extend_dir(osb->sb, handle, dir, parent_fe_bh, |
| 3308 | data_ac, meta_ac, &new_bh); |
| 3309 | if (status < 0) { |
| 3310 | mlog_errno(status); |
| 3311 | goto bail; |
| 3312 | } |
| 3313 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 3314 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), new_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3315 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 3316 | status = ocfs2_journal_access_db(handle, INODE_CACHE(dir), new_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 3317 | OCFS2_JOURNAL_ACCESS_CREATE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3318 | if (status < 0) { |
| 3319 | mlog_errno(status); |
| 3320 | goto bail; |
| 3321 | } |
| 3322 | memset(new_bh->b_data, 0, sb->s_blocksize); |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3323 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3324 | de = (struct ocfs2_dir_entry *) new_bh->b_data; |
| 3325 | de->inode = 0; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3326 | if (ocfs2_supports_dir_trailer(dir)) { |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3327 | de->rec_len = cpu_to_le16(ocfs2_dir_trailer_blk_off(sb)); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3328 | |
| 3329 | ocfs2_init_dir_trailer(dir, new_bh, le16_to_cpu(de->rec_len)); |
| 3330 | |
| 3331 | if (ocfs2_dir_indexed(dir)) { |
| 3332 | status = ocfs2_dx_dir_link_trailer(dir, handle, |
| 3333 | dx_root_bh, new_bh); |
| 3334 | if (status) { |
| 3335 | mlog_errno(status); |
| 3336 | goto bail; |
| 3337 | } |
| 3338 | } |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3339 | } else { |
| 3340 | de->rec_len = cpu_to_le16(sb->s_blocksize); |
| 3341 | } |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 3342 | ocfs2_update_inode_fsync_trans(handle, dir, 1); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 3343 | ocfs2_journal_dirty(handle, new_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3344 | |
| 3345 | dir_i_size += dir->i_sb->s_blocksize; |
| 3346 | i_size_write(dir, dir_i_size); |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 3347 | dir->i_blocks = ocfs2_inode_sector_count(dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3348 | status = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh); |
| 3349 | if (status < 0) { |
| 3350 | mlog_errno(status); |
| 3351 | goto bail; |
| 3352 | } |
| 3353 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3354 | bail_bh: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3355 | *new_de_bh = new_bh; |
| 3356 | get_bh(*new_de_bh); |
| 3357 | bail: |
| 3358 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 3359 | ocfs2_commit_trans(osb, handle); |
Jan Kara | edd45c0 | 2009-06-02 14:24:03 +0200 | [diff] [blame] | 3360 | if (drop_alloc_sem) |
| 3361 | up_write(&OCFS2_I(dir)->ip_alloc_sem); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3362 | |
| 3363 | if (data_ac) |
| 3364 | ocfs2_free_alloc_context(data_ac); |
| 3365 | if (meta_ac) |
| 3366 | ocfs2_free_alloc_context(meta_ac); |
| 3367 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 3368 | brelse(new_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3369 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3370 | return status; |
| 3371 | } |
| 3372 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3373 | static int ocfs2_find_dir_space_id(struct inode *dir, struct buffer_head *di_bh, |
| 3374 | const char *name, int namelen, |
| 3375 | struct buffer_head **ret_de_bh, |
| 3376 | unsigned int *blocks_wanted) |
| 3377 | { |
| 3378 | int ret; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3379 | struct super_block *sb = dir->i_sb; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3380 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
| 3381 | struct ocfs2_dir_entry *de, *last_de = NULL; |
| 3382 | char *de_buf, *limit; |
| 3383 | unsigned long offset = 0; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3384 | unsigned int rec_len, new_rec_len, free_space = dir->i_sb->s_blocksize; |
| 3385 | |
| 3386 | /* |
| 3387 | * This calculates how many free bytes we'd have in block zero, should |
| 3388 | * this function force expansion to an extent tree. |
| 3389 | */ |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3390 | if (ocfs2_new_dir_wants_trailer(dir)) |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3391 | free_space = ocfs2_dir_trailer_blk_off(sb) - i_size_read(dir); |
| 3392 | else |
| 3393 | free_space = dir->i_sb->s_blocksize - i_size_read(dir); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3394 | |
| 3395 | de_buf = di->id2.i_data.id_data; |
| 3396 | limit = de_buf + i_size_read(dir); |
| 3397 | rec_len = OCFS2_DIR_REC_LEN(namelen); |
| 3398 | |
| 3399 | while (de_buf < limit) { |
| 3400 | de = (struct ocfs2_dir_entry *)de_buf; |
| 3401 | |
| 3402 | if (!ocfs2_check_dir_entry(dir, de, di_bh, offset)) { |
| 3403 | ret = -ENOENT; |
| 3404 | goto out; |
| 3405 | } |
| 3406 | if (ocfs2_match(namelen, name, de)) { |
| 3407 | ret = -EEXIST; |
| 3408 | goto out; |
| 3409 | } |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3410 | /* |
| 3411 | * No need to check for a trailing dirent record here as |
| 3412 | * they're not used for inline dirs. |
| 3413 | */ |
| 3414 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3415 | if (ocfs2_dirent_would_fit(de, rec_len)) { |
| 3416 | /* Ok, we found a spot. Return this bh and let |
| 3417 | * the caller actually fill it in. */ |
| 3418 | *ret_de_bh = di_bh; |
| 3419 | get_bh(*ret_de_bh); |
| 3420 | ret = 0; |
| 3421 | goto out; |
| 3422 | } |
| 3423 | |
| 3424 | last_de = de; |
| 3425 | de_buf += le16_to_cpu(de->rec_len); |
| 3426 | offset += le16_to_cpu(de->rec_len); |
| 3427 | } |
| 3428 | |
| 3429 | /* |
| 3430 | * We're going to require expansion of the directory - figure |
| 3431 | * out how many blocks we'll need so that a place for the |
| 3432 | * dirent can be found. |
| 3433 | */ |
| 3434 | *blocks_wanted = 1; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3435 | new_rec_len = le16_to_cpu(last_de->rec_len) + free_space; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3436 | if (new_rec_len < (rec_len + OCFS2_DIR_REC_LEN(last_de->name_len))) |
| 3437 | *blocks_wanted = 2; |
| 3438 | |
| 3439 | ret = -ENOSPC; |
| 3440 | out: |
| 3441 | return ret; |
| 3442 | } |
| 3443 | |
| 3444 | static int ocfs2_find_dir_space_el(struct inode *dir, const char *name, |
| 3445 | int namelen, struct buffer_head **ret_de_bh) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3446 | { |
| 3447 | unsigned long offset; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3448 | struct buffer_head *bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3449 | unsigned short rec_len; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3450 | struct ocfs2_dir_entry *de; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3451 | struct super_block *sb = dir->i_sb; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3452 | int status; |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3453 | int blocksize = dir->i_sb->s_blocksize; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3454 | |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 3455 | status = ocfs2_read_dir_block(dir, 0, &bh, 0); |
Daeseok Youn | 9b57269 | 2015-02-10 14:09:15 -0800 | [diff] [blame] | 3456 | if (status) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3457 | goto bail; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3458 | |
| 3459 | rec_len = OCFS2_DIR_REC_LEN(namelen); |
| 3460 | offset = 0; |
| 3461 | de = (struct ocfs2_dir_entry *) bh->b_data; |
| 3462 | while (1) { |
| 3463 | if ((char *)de >= sb->s_blocksize + bh->b_data) { |
| 3464 | brelse(bh); |
| 3465 | bh = NULL; |
| 3466 | |
| 3467 | if (i_size_read(dir) <= offset) { |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3468 | /* |
| 3469 | * Caller will have to expand this |
| 3470 | * directory. |
| 3471 | */ |
| 3472 | status = -ENOSPC; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3473 | goto bail; |
| 3474 | } |
Joel Becker | a22305c | 2008-11-13 14:49:17 -0800 | [diff] [blame] | 3475 | status = ocfs2_read_dir_block(dir, |
| 3476 | offset >> sb->s_blocksize_bits, |
| 3477 | &bh, 0); |
Daeseok Youn | 9b57269 | 2015-02-10 14:09:15 -0800 | [diff] [blame] | 3478 | if (status) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3479 | goto bail; |
Daeseok Youn | 9b57269 | 2015-02-10 14:09:15 -0800 | [diff] [blame] | 3480 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3481 | /* move to next block */ |
| 3482 | de = (struct ocfs2_dir_entry *) bh->b_data; |
| 3483 | } |
| 3484 | if (!ocfs2_check_dir_entry(dir, de, bh, offset)) { |
| 3485 | status = -ENOENT; |
| 3486 | goto bail; |
| 3487 | } |
| 3488 | if (ocfs2_match(namelen, name, de)) { |
| 3489 | status = -EEXIST; |
| 3490 | goto bail; |
| 3491 | } |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3492 | |
| 3493 | if (ocfs2_skip_dir_trailer(dir, de, offset % blocksize, |
| 3494 | blocksize)) |
| 3495 | goto next; |
| 3496 | |
Mark Fasheh | 8553cf4 | 2007-09-13 16:29:01 -0700 | [diff] [blame] | 3497 | if (ocfs2_dirent_would_fit(de, rec_len)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3498 | /* Ok, we found a spot. Return this bh and let |
| 3499 | * the caller actually fill it in. */ |
| 3500 | *ret_de_bh = bh; |
| 3501 | get_bh(*ret_de_bh); |
| 3502 | status = 0; |
| 3503 | goto bail; |
| 3504 | } |
Mark Fasheh | 87d35a7 | 2008-12-10 17:36:25 -0800 | [diff] [blame] | 3505 | next: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3506 | offset += le16_to_cpu(de->rec_len); |
| 3507 | de = (struct ocfs2_dir_entry *)((char *) de + le16_to_cpu(de->rec_len)); |
| 3508 | } |
| 3509 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3510 | bail: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 3511 | brelse(bh); |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 3512 | if (status) |
| 3513 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3514 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3515 | return status; |
| 3516 | } |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 3517 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3518 | static int dx_leaf_sort_cmp(const void *a, const void *b) |
| 3519 | { |
| 3520 | const struct ocfs2_dx_entry *entry1 = a; |
| 3521 | const struct ocfs2_dx_entry *entry2 = b; |
| 3522 | u32 major_hash1 = le32_to_cpu(entry1->dx_major_hash); |
| 3523 | u32 major_hash2 = le32_to_cpu(entry2->dx_major_hash); |
| 3524 | u32 minor_hash1 = le32_to_cpu(entry1->dx_minor_hash); |
| 3525 | u32 minor_hash2 = le32_to_cpu(entry2->dx_minor_hash); |
| 3526 | |
| 3527 | if (major_hash1 > major_hash2) |
| 3528 | return 1; |
| 3529 | if (major_hash1 < major_hash2) |
| 3530 | return -1; |
| 3531 | |
| 3532 | /* |
| 3533 | * It is not strictly necessary to sort by minor |
| 3534 | */ |
| 3535 | if (minor_hash1 > minor_hash2) |
| 3536 | return 1; |
| 3537 | if (minor_hash1 < minor_hash2) |
| 3538 | return -1; |
| 3539 | return 0; |
| 3540 | } |
| 3541 | |
| 3542 | static void dx_leaf_sort_swap(void *a, void *b, int size) |
| 3543 | { |
| 3544 | struct ocfs2_dx_entry *entry1 = a; |
| 3545 | struct ocfs2_dx_entry *entry2 = b; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3546 | |
| 3547 | BUG_ON(size != sizeof(*entry1)); |
| 3548 | |
Fabian Frederick | 2a28f98 | 2015-06-24 16:55:26 -0700 | [diff] [blame] | 3549 | swap(*entry1, *entry2); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3550 | } |
| 3551 | |
| 3552 | static int ocfs2_dx_leaf_same_major(struct ocfs2_dx_leaf *dx_leaf) |
| 3553 | { |
| 3554 | struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list; |
| 3555 | int i, num = le16_to_cpu(dl_list->de_num_used); |
| 3556 | |
| 3557 | for (i = 0; i < (num - 1); i++) { |
| 3558 | if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) != |
| 3559 | le32_to_cpu(dl_list->de_entries[i + 1].dx_major_hash)) |
| 3560 | return 0; |
| 3561 | } |
| 3562 | |
| 3563 | return 1; |
| 3564 | } |
| 3565 | |
| 3566 | /* |
| 3567 | * Find the optimal value to split this leaf on. This expects the leaf |
| 3568 | * entries to be in sorted order. |
| 3569 | * |
| 3570 | * leaf_cpos is the cpos of the leaf we're splitting. insert_hash is |
| 3571 | * the hash we want to insert. |
| 3572 | * |
| 3573 | * This function is only concerned with the major hash - that which |
| 3574 | * determines which cluster an item belongs to. |
| 3575 | */ |
| 3576 | static int ocfs2_dx_dir_find_leaf_split(struct ocfs2_dx_leaf *dx_leaf, |
| 3577 | u32 leaf_cpos, u32 insert_hash, |
| 3578 | u32 *split_hash) |
| 3579 | { |
| 3580 | struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list; |
| 3581 | int i, num_used = le16_to_cpu(dl_list->de_num_used); |
| 3582 | int allsame; |
| 3583 | |
| 3584 | /* |
| 3585 | * There's a couple rare, but nasty corner cases we have to |
| 3586 | * check for here. All of them involve a leaf where all value |
| 3587 | * have the same hash, which is what we look for first. |
| 3588 | * |
| 3589 | * Most of the time, all of the above is false, and we simply |
| 3590 | * pick the median value for a split. |
| 3591 | */ |
| 3592 | allsame = ocfs2_dx_leaf_same_major(dx_leaf); |
| 3593 | if (allsame) { |
| 3594 | u32 val = le32_to_cpu(dl_list->de_entries[0].dx_major_hash); |
| 3595 | |
| 3596 | if (val == insert_hash) { |
| 3597 | /* |
| 3598 | * No matter where we would choose to split, |
| 3599 | * the new entry would want to occupy the same |
| 3600 | * block as these. Since there's no space left |
| 3601 | * in their existing block, we know there |
| 3602 | * won't be space after the split. |
| 3603 | */ |
| 3604 | return -ENOSPC; |
| 3605 | } |
| 3606 | |
| 3607 | if (val == leaf_cpos) { |
| 3608 | /* |
| 3609 | * Because val is the same as leaf_cpos (which |
| 3610 | * is the smallest value this leaf can have), |
| 3611 | * yet is not equal to insert_hash, then we |
| 3612 | * know that insert_hash *must* be larger than |
| 3613 | * val (and leaf_cpos). At least cpos+1 in value. |
| 3614 | * |
| 3615 | * We also know then, that there cannot be an |
| 3616 | * adjacent extent (otherwise we'd be looking |
| 3617 | * at it). Choosing this value gives us a |
| 3618 | * chance to get some contiguousness. |
| 3619 | */ |
| 3620 | *split_hash = leaf_cpos + 1; |
| 3621 | return 0; |
| 3622 | } |
| 3623 | |
| 3624 | if (val > insert_hash) { |
| 3625 | /* |
| 3626 | * val can not be the same as insert hash, and |
| 3627 | * also must be larger than leaf_cpos. Also, |
| 3628 | * we know that there can't be a leaf between |
| 3629 | * cpos and val, otherwise the entries with |
| 3630 | * hash 'val' would be there. |
| 3631 | */ |
| 3632 | *split_hash = val; |
| 3633 | return 0; |
| 3634 | } |
| 3635 | |
| 3636 | *split_hash = insert_hash; |
| 3637 | return 0; |
| 3638 | } |
| 3639 | |
| 3640 | /* |
| 3641 | * Since the records are sorted and the checks above |
| 3642 | * guaranteed that not all records in this block are the same, |
| 3643 | * we simple travel forward, from the median, and pick the 1st |
| 3644 | * record whose value is larger than leaf_cpos. |
| 3645 | */ |
| 3646 | for (i = (num_used / 2); i < num_used; i++) |
| 3647 | if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) > |
| 3648 | leaf_cpos) |
| 3649 | break; |
| 3650 | |
| 3651 | BUG_ON(i == num_used); /* Should be impossible */ |
| 3652 | *split_hash = le32_to_cpu(dl_list->de_entries[i].dx_major_hash); |
| 3653 | return 0; |
| 3654 | } |
| 3655 | |
| 3656 | /* |
| 3657 | * Transfer all entries in orig_dx_leaves whose major hash is equal to or |
| 3658 | * larger than split_hash into new_dx_leaves. We use a temporary |
| 3659 | * buffer (tmp_dx_leaf) to make the changes to the original leaf blocks. |
| 3660 | * |
| 3661 | * Since the block offset inside a leaf (cluster) is a constant mask |
| 3662 | * of minor_hash, we can optimize - an item at block offset X within |
| 3663 | * the original cluster, will be at offset X within the new cluster. |
| 3664 | */ |
| 3665 | static void ocfs2_dx_dir_transfer_leaf(struct inode *dir, u32 split_hash, |
| 3666 | handle_t *handle, |
| 3667 | struct ocfs2_dx_leaf *tmp_dx_leaf, |
| 3668 | struct buffer_head **orig_dx_leaves, |
| 3669 | struct buffer_head **new_dx_leaves, |
| 3670 | int num_dx_leaves) |
| 3671 | { |
| 3672 | int i, j, num_used; |
| 3673 | u32 major_hash; |
| 3674 | struct ocfs2_dx_leaf *orig_dx_leaf, *new_dx_leaf; |
| 3675 | struct ocfs2_dx_entry_list *orig_list, *new_list, *tmp_list; |
| 3676 | struct ocfs2_dx_entry *dx_entry; |
| 3677 | |
| 3678 | tmp_list = &tmp_dx_leaf->dl_list; |
| 3679 | |
| 3680 | for (i = 0; i < num_dx_leaves; i++) { |
| 3681 | orig_dx_leaf = (struct ocfs2_dx_leaf *) orig_dx_leaves[i]->b_data; |
| 3682 | orig_list = &orig_dx_leaf->dl_list; |
| 3683 | new_dx_leaf = (struct ocfs2_dx_leaf *) new_dx_leaves[i]->b_data; |
| 3684 | new_list = &new_dx_leaf->dl_list; |
| 3685 | |
| 3686 | num_used = le16_to_cpu(orig_list->de_num_used); |
| 3687 | |
| 3688 | memcpy(tmp_dx_leaf, orig_dx_leaf, dir->i_sb->s_blocksize); |
| 3689 | tmp_list->de_num_used = cpu_to_le16(0); |
| 3690 | memset(&tmp_list->de_entries, 0, sizeof(*dx_entry)*num_used); |
| 3691 | |
| 3692 | for (j = 0; j < num_used; j++) { |
| 3693 | dx_entry = &orig_list->de_entries[j]; |
| 3694 | major_hash = le32_to_cpu(dx_entry->dx_major_hash); |
| 3695 | if (major_hash >= split_hash) |
| 3696 | ocfs2_dx_dir_leaf_insert_tail(new_dx_leaf, |
| 3697 | dx_entry); |
| 3698 | else |
| 3699 | ocfs2_dx_dir_leaf_insert_tail(tmp_dx_leaf, |
| 3700 | dx_entry); |
| 3701 | } |
| 3702 | memcpy(orig_dx_leaf, tmp_dx_leaf, dir->i_sb->s_blocksize); |
| 3703 | |
| 3704 | ocfs2_journal_dirty(handle, orig_dx_leaves[i]); |
| 3705 | ocfs2_journal_dirty(handle, new_dx_leaves[i]); |
| 3706 | } |
| 3707 | } |
| 3708 | |
| 3709 | static int ocfs2_dx_dir_rebalance_credits(struct ocfs2_super *osb, |
| 3710 | struct ocfs2_dx_root_block *dx_root) |
| 3711 | { |
| 3712 | int credits = ocfs2_clusters_to_blocks(osb->sb, 2); |
| 3713 | |
Goldwyn Rodrigues | 06f9da6 | 2013-11-12 15:06:52 -0800 | [diff] [blame] | 3714 | credits += ocfs2_calc_extend_credits(osb->sb, &dx_root->dr_list); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3715 | credits += ocfs2_quota_trans_credits(osb->sb); |
| 3716 | return credits; |
| 3717 | } |
| 3718 | |
| 3719 | /* |
| 3720 | * Find the median value in dx_leaf_bh and allocate a new leaf to move |
| 3721 | * half our entries into. |
| 3722 | */ |
| 3723 | static int ocfs2_dx_dir_rebalance(struct ocfs2_super *osb, struct inode *dir, |
| 3724 | struct buffer_head *dx_root_bh, |
| 3725 | struct buffer_head *dx_leaf_bh, |
| 3726 | struct ocfs2_dx_hinfo *hinfo, u32 leaf_cpos, |
| 3727 | u64 leaf_blkno) |
| 3728 | { |
| 3729 | struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data; |
| 3730 | int credits, ret, i, num_used, did_quota = 0; |
| 3731 | u32 cpos, split_hash, insert_hash = hinfo->major_hash; |
| 3732 | u64 orig_leaves_start; |
| 3733 | int num_dx_leaves; |
| 3734 | struct buffer_head **orig_dx_leaves = NULL; |
| 3735 | struct buffer_head **new_dx_leaves = NULL; |
| 3736 | struct ocfs2_alloc_context *data_ac = NULL, *meta_ac = NULL; |
| 3737 | struct ocfs2_extent_tree et; |
| 3738 | handle_t *handle = NULL; |
| 3739 | struct ocfs2_dx_root_block *dx_root; |
| 3740 | struct ocfs2_dx_leaf *tmp_dx_leaf = NULL; |
| 3741 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 3742 | trace_ocfs2_dx_dir_rebalance((unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 3743 | (unsigned long long)leaf_blkno, |
| 3744 | insert_hash); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3745 | |
Joel Becker | 5e404e9 | 2009-02-13 03:54:22 -0800 | [diff] [blame] | 3746 | ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3747 | |
| 3748 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 3749 | /* |
| 3750 | * XXX: This is a rather large limit. We should use a more |
| 3751 | * realistic value. |
| 3752 | */ |
| 3753 | if (le32_to_cpu(dx_root->dr_clusters) == UINT_MAX) |
| 3754 | return -ENOSPC; |
| 3755 | |
| 3756 | num_used = le16_to_cpu(dx_leaf->dl_list.de_num_used); |
| 3757 | if (num_used < le16_to_cpu(dx_leaf->dl_list.de_count)) { |
| 3758 | mlog(ML_ERROR, "DX Dir: %llu, Asked to rebalance empty leaf: " |
| 3759 | "%llu, %d\n", (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 3760 | (unsigned long long)leaf_blkno, num_used); |
| 3761 | ret = -EIO; |
| 3762 | goto out; |
| 3763 | } |
| 3764 | |
| 3765 | orig_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves); |
| 3766 | if (!orig_dx_leaves) { |
| 3767 | ret = -ENOMEM; |
| 3768 | mlog_errno(ret); |
| 3769 | goto out; |
| 3770 | } |
| 3771 | |
| 3772 | new_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, NULL); |
| 3773 | if (!new_dx_leaves) { |
| 3774 | ret = -ENOMEM; |
| 3775 | mlog_errno(ret); |
| 3776 | goto out; |
| 3777 | } |
| 3778 | |
| 3779 | ret = ocfs2_lock_allocators(dir, &et, 1, 0, &data_ac, &meta_ac); |
| 3780 | if (ret) { |
| 3781 | if (ret != -ENOSPC) |
| 3782 | mlog_errno(ret); |
| 3783 | goto out; |
| 3784 | } |
| 3785 | |
| 3786 | credits = ocfs2_dx_dir_rebalance_credits(osb, dx_root); |
| 3787 | handle = ocfs2_start_trans(osb, credits); |
| 3788 | if (IS_ERR(handle)) { |
| 3789 | ret = PTR_ERR(handle); |
| 3790 | handle = NULL; |
| 3791 | mlog_errno(ret); |
| 3792 | goto out; |
| 3793 | } |
| 3794 | |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 3795 | ret = dquot_alloc_space_nodirty(dir, |
| 3796 | ocfs2_clusters_to_bytes(dir->i_sb, 1)); |
| 3797 | if (ret) |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3798 | goto out_commit; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3799 | did_quota = 1; |
| 3800 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 3801 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3802 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 3803 | if (ret) { |
| 3804 | mlog_errno(ret); |
| 3805 | goto out_commit; |
| 3806 | } |
| 3807 | |
| 3808 | /* |
| 3809 | * This block is changing anyway, so we can sort it in place. |
| 3810 | */ |
| 3811 | sort(dx_leaf->dl_list.de_entries, num_used, |
| 3812 | sizeof(struct ocfs2_dx_entry), dx_leaf_sort_cmp, |
| 3813 | dx_leaf_sort_swap); |
| 3814 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 3815 | ocfs2_journal_dirty(handle, dx_leaf_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3816 | |
| 3817 | ret = ocfs2_dx_dir_find_leaf_split(dx_leaf, leaf_cpos, insert_hash, |
| 3818 | &split_hash); |
| 3819 | if (ret) { |
| 3820 | mlog_errno(ret); |
| 3821 | goto out_commit; |
| 3822 | } |
| 3823 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 3824 | trace_ocfs2_dx_dir_rebalance_split(leaf_cpos, split_hash, insert_hash); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3825 | |
| 3826 | /* |
| 3827 | * We have to carefully order operations here. There are items |
| 3828 | * which want to be in the new cluster before insert, but in |
| 3829 | * order to put those items in the new cluster, we alter the |
| 3830 | * old cluster. A failure to insert gets nasty. |
| 3831 | * |
| 3832 | * So, start by reserving writes to the old |
| 3833 | * cluster. ocfs2_dx_dir_new_cluster will reserve writes on |
| 3834 | * the new cluster for us, before inserting it. The insert |
| 3835 | * won't happen if there's an error before that. Once the |
| 3836 | * insert is done then, we can transfer from one leaf into the |
| 3837 | * other without fear of hitting any error. |
| 3838 | */ |
| 3839 | |
| 3840 | /* |
| 3841 | * The leaf transfer wants some scratch space so that we don't |
| 3842 | * wind up doing a bunch of expensive memmove(). |
| 3843 | */ |
| 3844 | tmp_dx_leaf = kmalloc(osb->sb->s_blocksize, GFP_NOFS); |
| 3845 | if (!tmp_dx_leaf) { |
| 3846 | ret = -ENOMEM; |
| 3847 | mlog_errno(ret); |
| 3848 | goto out_commit; |
| 3849 | } |
| 3850 | |
Mark Fasheh | 1d46dc0 | 2009-02-19 13:17:05 -0800 | [diff] [blame] | 3851 | orig_leaves_start = ocfs2_block_to_cluster_start(dir->i_sb, leaf_blkno); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3852 | ret = ocfs2_read_dx_leaves(dir, orig_leaves_start, num_dx_leaves, |
| 3853 | orig_dx_leaves); |
| 3854 | if (ret) { |
| 3855 | mlog_errno(ret); |
| 3856 | goto out_commit; |
| 3857 | } |
| 3858 | |
Tristan Ye | 0f4da21 | 2010-09-08 17:12:38 +0800 | [diff] [blame] | 3859 | cpos = split_hash; |
| 3860 | ret = ocfs2_dx_dir_new_cluster(dir, &et, cpos, handle, |
| 3861 | data_ac, meta_ac, new_dx_leaves, |
| 3862 | num_dx_leaves); |
| 3863 | if (ret) { |
| 3864 | mlog_errno(ret); |
| 3865 | goto out_commit; |
| 3866 | } |
| 3867 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3868 | for (i = 0; i < num_dx_leaves; i++) { |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 3869 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), |
| 3870 | orig_dx_leaves[i], |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3871 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 3872 | if (ret) { |
| 3873 | mlog_errno(ret); |
| 3874 | goto out_commit; |
| 3875 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3876 | |
Tristan Ye | 0f4da21 | 2010-09-08 17:12:38 +0800 | [diff] [blame] | 3877 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), |
| 3878 | new_dx_leaves[i], |
| 3879 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 3880 | if (ret) { |
| 3881 | mlog_errno(ret); |
| 3882 | goto out_commit; |
| 3883 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3884 | } |
| 3885 | |
| 3886 | ocfs2_dx_dir_transfer_leaf(dir, split_hash, handle, tmp_dx_leaf, |
| 3887 | orig_dx_leaves, new_dx_leaves, num_dx_leaves); |
| 3888 | |
| 3889 | out_commit: |
| 3890 | if (ret < 0 && did_quota) |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 3891 | dquot_free_space_nodirty(dir, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3892 | ocfs2_clusters_to_bytes(dir->i_sb, 1)); |
| 3893 | |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 3894 | ocfs2_update_inode_fsync_trans(handle, dir, 1); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 3895 | ocfs2_commit_trans(osb, handle); |
| 3896 | |
| 3897 | out: |
| 3898 | if (orig_dx_leaves || new_dx_leaves) { |
| 3899 | for (i = 0; i < num_dx_leaves; i++) { |
| 3900 | if (orig_dx_leaves) |
| 3901 | brelse(orig_dx_leaves[i]); |
| 3902 | if (new_dx_leaves) |
| 3903 | brelse(new_dx_leaves[i]); |
| 3904 | } |
| 3905 | kfree(orig_dx_leaves); |
| 3906 | kfree(new_dx_leaves); |
| 3907 | } |
| 3908 | |
| 3909 | if (meta_ac) |
| 3910 | ocfs2_free_alloc_context(meta_ac); |
| 3911 | if (data_ac) |
| 3912 | ocfs2_free_alloc_context(data_ac); |
| 3913 | |
| 3914 | kfree(tmp_dx_leaf); |
| 3915 | return ret; |
| 3916 | } |
| 3917 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 3918 | static int ocfs2_find_dir_space_dx(struct ocfs2_super *osb, struct inode *dir, |
| 3919 | struct buffer_head *di_bh, |
| 3920 | struct buffer_head *dx_root_bh, |
| 3921 | const char *name, int namelen, |
| 3922 | struct ocfs2_dir_lookup_result *lookup) |
| 3923 | { |
| 3924 | int ret, rebalanced = 0; |
| 3925 | struct ocfs2_dx_root_block *dx_root; |
| 3926 | struct buffer_head *dx_leaf_bh = NULL; |
| 3927 | struct ocfs2_dx_leaf *dx_leaf; |
| 3928 | u64 blkno; |
| 3929 | u32 leaf_cpos; |
| 3930 | |
| 3931 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 3932 | |
| 3933 | restart_search: |
| 3934 | ret = ocfs2_dx_dir_lookup(dir, &dx_root->dr_list, &lookup->dl_hinfo, |
| 3935 | &leaf_cpos, &blkno); |
| 3936 | if (ret) { |
| 3937 | mlog_errno(ret); |
| 3938 | goto out; |
| 3939 | } |
| 3940 | |
| 3941 | ret = ocfs2_read_dx_leaf(dir, blkno, &dx_leaf_bh); |
| 3942 | if (ret) { |
| 3943 | mlog_errno(ret); |
| 3944 | goto out; |
| 3945 | } |
| 3946 | |
| 3947 | dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data; |
| 3948 | |
| 3949 | if (le16_to_cpu(dx_leaf->dl_list.de_num_used) >= |
| 3950 | le16_to_cpu(dx_leaf->dl_list.de_count)) { |
| 3951 | if (rebalanced) { |
| 3952 | /* |
| 3953 | * Rebalancing should have provided us with |
| 3954 | * space in an appropriate leaf. |
| 3955 | * |
| 3956 | * XXX: Is this an abnormal condition then? |
| 3957 | * Should we print a message here? |
| 3958 | */ |
| 3959 | ret = -ENOSPC; |
| 3960 | goto out; |
| 3961 | } |
| 3962 | |
| 3963 | ret = ocfs2_dx_dir_rebalance(osb, dir, dx_root_bh, dx_leaf_bh, |
| 3964 | &lookup->dl_hinfo, leaf_cpos, |
| 3965 | blkno); |
| 3966 | if (ret) { |
| 3967 | if (ret != -ENOSPC) |
| 3968 | mlog_errno(ret); |
| 3969 | goto out; |
| 3970 | } |
| 3971 | |
| 3972 | /* |
| 3973 | * Restart the lookup. The rebalance might have |
| 3974 | * changed which block our item fits into. Mark our |
| 3975 | * progress, so we only execute this once. |
| 3976 | */ |
| 3977 | brelse(dx_leaf_bh); |
| 3978 | dx_leaf_bh = NULL; |
| 3979 | rebalanced = 1; |
| 3980 | goto restart_search; |
| 3981 | } |
| 3982 | |
| 3983 | lookup->dl_dx_leaf_bh = dx_leaf_bh; |
| 3984 | dx_leaf_bh = NULL; |
| 3985 | |
| 3986 | out: |
| 3987 | brelse(dx_leaf_bh); |
| 3988 | return ret; |
| 3989 | } |
| 3990 | |
| 3991 | static int ocfs2_search_dx_free_list(struct inode *dir, |
| 3992 | struct buffer_head *dx_root_bh, |
| 3993 | int namelen, |
| 3994 | struct ocfs2_dir_lookup_result *lookup) |
| 3995 | { |
| 3996 | int ret = -ENOSPC; |
| 3997 | struct buffer_head *leaf_bh = NULL, *prev_leaf_bh = NULL; |
| 3998 | struct ocfs2_dir_block_trailer *db; |
| 3999 | u64 next_block; |
| 4000 | int rec_len = OCFS2_DIR_REC_LEN(namelen); |
| 4001 | struct ocfs2_dx_root_block *dx_root; |
| 4002 | |
| 4003 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 4004 | next_block = le64_to_cpu(dx_root->dr_free_blk); |
| 4005 | |
| 4006 | while (next_block) { |
| 4007 | brelse(prev_leaf_bh); |
| 4008 | prev_leaf_bh = leaf_bh; |
| 4009 | leaf_bh = NULL; |
| 4010 | |
| 4011 | ret = ocfs2_read_dir_block_direct(dir, next_block, &leaf_bh); |
| 4012 | if (ret) { |
| 4013 | mlog_errno(ret); |
| 4014 | goto out; |
| 4015 | } |
| 4016 | |
| 4017 | db = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb); |
| 4018 | if (rec_len <= le16_to_cpu(db->db_free_rec_len)) { |
| 4019 | lookup->dl_leaf_bh = leaf_bh; |
| 4020 | lookup->dl_prev_leaf_bh = prev_leaf_bh; |
| 4021 | leaf_bh = NULL; |
| 4022 | prev_leaf_bh = NULL; |
| 4023 | break; |
| 4024 | } |
| 4025 | |
| 4026 | next_block = le64_to_cpu(db->db_free_next); |
| 4027 | } |
| 4028 | |
| 4029 | if (!next_block) |
| 4030 | ret = -ENOSPC; |
| 4031 | |
| 4032 | out: |
| 4033 | |
| 4034 | brelse(leaf_bh); |
| 4035 | brelse(prev_leaf_bh); |
| 4036 | return ret; |
| 4037 | } |
| 4038 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4039 | static int ocfs2_expand_inline_dx_root(struct inode *dir, |
| 4040 | struct buffer_head *dx_root_bh) |
| 4041 | { |
| 4042 | int ret, num_dx_leaves, i, j, did_quota = 0; |
| 4043 | struct buffer_head **dx_leaves = NULL; |
| 4044 | struct ocfs2_extent_tree et; |
| 4045 | u64 insert_blkno; |
| 4046 | struct ocfs2_alloc_context *data_ac = NULL; |
| 4047 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 4048 | handle_t *handle = NULL; |
| 4049 | struct ocfs2_dx_root_block *dx_root; |
| 4050 | struct ocfs2_dx_entry_list *entry_list; |
| 4051 | struct ocfs2_dx_entry *dx_entry; |
| 4052 | struct ocfs2_dx_leaf *target_leaf; |
| 4053 | |
| 4054 | ret = ocfs2_reserve_clusters(osb, 1, &data_ac); |
| 4055 | if (ret) { |
| 4056 | mlog_errno(ret); |
| 4057 | goto out; |
| 4058 | } |
| 4059 | |
| 4060 | dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves); |
| 4061 | if (!dx_leaves) { |
| 4062 | ret = -ENOMEM; |
| 4063 | mlog_errno(ret); |
| 4064 | goto out; |
| 4065 | } |
| 4066 | |
| 4067 | handle = ocfs2_start_trans(osb, ocfs2_calc_dxi_expand_credits(osb->sb)); |
| 4068 | if (IS_ERR(handle)) { |
| 4069 | ret = PTR_ERR(handle); |
| 4070 | mlog_errno(ret); |
| 4071 | goto out; |
| 4072 | } |
| 4073 | |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 4074 | ret = dquot_alloc_space_nodirty(dir, |
| 4075 | ocfs2_clusters_to_bytes(osb->sb, 1)); |
| 4076 | if (ret) |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4077 | goto out_commit; |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4078 | did_quota = 1; |
| 4079 | |
| 4080 | /* |
| 4081 | * We do this up front, before the allocation, so that a |
| 4082 | * failure to add the dx_root_bh to the journal won't result |
| 4083 | * us losing clusters. |
| 4084 | */ |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 4085 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4086 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 4087 | if (ret) { |
| 4088 | mlog_errno(ret); |
| 4089 | goto out_commit; |
| 4090 | } |
| 4091 | |
| 4092 | ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac, dx_leaves, |
| 4093 | num_dx_leaves, &insert_blkno); |
| 4094 | if (ret) { |
| 4095 | mlog_errno(ret); |
| 4096 | goto out_commit; |
| 4097 | } |
| 4098 | |
| 4099 | /* |
| 4100 | * Transfer the entries from our dx_root into the appropriate |
| 4101 | * block |
| 4102 | */ |
| 4103 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; |
| 4104 | entry_list = &dx_root->dr_entries; |
| 4105 | |
| 4106 | for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) { |
| 4107 | dx_entry = &entry_list->de_entries[i]; |
| 4108 | |
| 4109 | j = __ocfs2_dx_dir_hash_idx(osb, |
| 4110 | le32_to_cpu(dx_entry->dx_minor_hash)); |
| 4111 | target_leaf = (struct ocfs2_dx_leaf *)dx_leaves[j]->b_data; |
| 4112 | |
| 4113 | ocfs2_dx_dir_leaf_insert_tail(target_leaf, dx_entry); |
| 4114 | |
| 4115 | /* Each leaf has been passed to the journal already |
| 4116 | * via __ocfs2_dx_dir_new_cluster() */ |
| 4117 | } |
| 4118 | |
| 4119 | dx_root->dr_flags &= ~OCFS2_DX_FLAG_INLINE; |
| 4120 | memset(&dx_root->dr_list, 0, osb->sb->s_blocksize - |
| 4121 | offsetof(struct ocfs2_dx_root_block, dr_list)); |
| 4122 | dx_root->dr_list.l_count = |
| 4123 | cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb)); |
| 4124 | |
| 4125 | /* This should never fail considering we start with an empty |
| 4126 | * dx_root. */ |
Joel Becker | 5e404e9 | 2009-02-13 03:54:22 -0800 | [diff] [blame] | 4127 | ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh); |
Joel Becker | cc79d8c | 2009-02-13 03:24:43 -0800 | [diff] [blame] | 4128 | ret = ocfs2_insert_extent(handle, &et, 0, insert_blkno, 1, 0, NULL); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4129 | if (ret) |
| 4130 | mlog_errno(ret); |
| 4131 | did_quota = 0; |
| 4132 | |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 4133 | ocfs2_update_inode_fsync_trans(handle, dir, 1); |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4134 | ocfs2_journal_dirty(handle, dx_root_bh); |
| 4135 | |
| 4136 | out_commit: |
| 4137 | if (ret < 0 && did_quota) |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 4138 | dquot_free_space_nodirty(dir, |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4139 | ocfs2_clusters_to_bytes(dir->i_sb, 1)); |
| 4140 | |
| 4141 | ocfs2_commit_trans(osb, handle); |
| 4142 | |
| 4143 | out: |
| 4144 | if (data_ac) |
| 4145 | ocfs2_free_alloc_context(data_ac); |
| 4146 | |
| 4147 | if (dx_leaves) { |
| 4148 | for (i = 0; i < num_dx_leaves; i++) |
| 4149 | brelse(dx_leaves[i]); |
| 4150 | kfree(dx_leaves); |
| 4151 | } |
| 4152 | return ret; |
| 4153 | } |
| 4154 | |
| 4155 | static int ocfs2_inline_dx_has_space(struct buffer_head *dx_root_bh) |
| 4156 | { |
| 4157 | struct ocfs2_dx_root_block *dx_root; |
| 4158 | struct ocfs2_dx_entry_list *entry_list; |
| 4159 | |
| 4160 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; |
| 4161 | entry_list = &dx_root->dr_entries; |
| 4162 | |
| 4163 | if (le16_to_cpu(entry_list->de_num_used) >= |
| 4164 | le16_to_cpu(entry_list->de_count)) |
| 4165 | return -ENOSPC; |
| 4166 | |
| 4167 | return 0; |
| 4168 | } |
| 4169 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4170 | static int ocfs2_prepare_dx_dir_for_insert(struct inode *dir, |
| 4171 | struct buffer_head *di_bh, |
| 4172 | const char *name, |
| 4173 | int namelen, |
| 4174 | struct ocfs2_dir_lookup_result *lookup) |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4175 | { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4176 | int ret, free_dx_root = 1; |
| 4177 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4178 | struct buffer_head *dx_root_bh = NULL; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4179 | struct buffer_head *leaf_bh = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4180 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4181 | struct ocfs2_dx_root_block *dx_root; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4182 | |
| 4183 | ret = ocfs2_read_dx_root(dir, di, &dx_root_bh); |
| 4184 | if (ret) { |
| 4185 | mlog_errno(ret); |
| 4186 | goto out; |
| 4187 | } |
| 4188 | |
| 4189 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
Mark Fasheh | e3a93c2 | 2009-02-17 15:29:35 -0800 | [diff] [blame] | 4190 | if (le32_to_cpu(dx_root->dr_num_entries) == OCFS2_DX_ENTRIES_MAX) { |
| 4191 | ret = -ENOSPC; |
| 4192 | mlog_errno(ret); |
| 4193 | goto out; |
| 4194 | } |
| 4195 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4196 | if (ocfs2_dx_root_inline(dx_root)) { |
| 4197 | ret = ocfs2_inline_dx_has_space(dx_root_bh); |
| 4198 | |
| 4199 | if (ret == 0) |
| 4200 | goto search_el; |
| 4201 | |
| 4202 | /* |
| 4203 | * We ran out of room in the root block. Expand it to |
| 4204 | * an extent, then allow ocfs2_find_dir_space_dx to do |
| 4205 | * the rest. |
| 4206 | */ |
| 4207 | ret = ocfs2_expand_inline_dx_root(dir, dx_root_bh); |
| 4208 | if (ret) { |
| 4209 | mlog_errno(ret); |
| 4210 | goto out; |
| 4211 | } |
| 4212 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4213 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4214 | /* |
| 4215 | * Insert preparation for an indexed directory is split into two |
| 4216 | * steps. The call to find_dir_space_dx reserves room in the index for |
| 4217 | * an additional item. If we run out of space there, it's a real error |
| 4218 | * we can't continue on. |
| 4219 | */ |
| 4220 | ret = ocfs2_find_dir_space_dx(osb, dir, di_bh, dx_root_bh, name, |
| 4221 | namelen, lookup); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4222 | if (ret) { |
| 4223 | mlog_errno(ret); |
| 4224 | goto out; |
| 4225 | } |
| 4226 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4227 | search_el: |
| 4228 | /* |
| 4229 | * Next, we need to find space in the unindexed tree. This call |
| 4230 | * searches using the free space linked list. If the unindexed tree |
| 4231 | * lacks sufficient space, we'll expand it below. The expansion code |
| 4232 | * is smart enough to add any new blocks to the free space list. |
| 4233 | */ |
| 4234 | ret = ocfs2_search_dx_free_list(dir, dx_root_bh, namelen, lookup); |
| 4235 | if (ret && ret != -ENOSPC) { |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4236 | mlog_errno(ret); |
| 4237 | goto out; |
| 4238 | } |
| 4239 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4240 | /* Do this up here - ocfs2_extend_dir might need the dx_root */ |
| 4241 | lookup->dl_dx_root_bh = dx_root_bh; |
| 4242 | free_dx_root = 0; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4243 | |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4244 | if (ret == -ENOSPC) { |
| 4245 | ret = ocfs2_extend_dir(osb, dir, di_bh, 1, lookup, &leaf_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4246 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4247 | if (ret) { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4248 | mlog_errno(ret); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4249 | goto out; |
| 4250 | } |
| 4251 | |
| 4252 | /* |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4253 | * We make the assumption here that new leaf blocks are added |
| 4254 | * to the front of our free list. |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4255 | */ |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4256 | lookup->dl_prev_leaf_bh = NULL; |
| 4257 | lookup->dl_leaf_bh = leaf_bh; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4258 | } |
| 4259 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4260 | out: |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4261 | if (free_dx_root) |
| 4262 | brelse(dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4263 | return ret; |
| 4264 | } |
| 4265 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 4266 | /* |
| 4267 | * Get a directory ready for insert. Any directory allocation required |
| 4268 | * happens here. Success returns zero, and enough context in the dir |
| 4269 | * lookup result that ocfs2_add_entry() will be able complete the task |
| 4270 | * with minimal performance impact. |
| 4271 | */ |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4272 | int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb, |
| 4273 | struct inode *dir, |
| 4274 | struct buffer_head *parent_fe_bh, |
| 4275 | const char *name, |
| 4276 | int namelen, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 4277 | struct ocfs2_dir_lookup_result *lookup) |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4278 | { |
| 4279 | int ret; |
| 4280 | unsigned int blocks_wanted = 1; |
| 4281 | struct buffer_head *bh = NULL; |
| 4282 | |
Tao Ma | f1088d4 | 2011-02-23 22:30:23 +0800 | [diff] [blame] | 4283 | trace_ocfs2_prepare_dir_for_insert( |
| 4284 | (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4285 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4286 | if (!namelen) { |
| 4287 | ret = -EINVAL; |
| 4288 | mlog_errno(ret); |
| 4289 | goto out; |
| 4290 | } |
| 4291 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4292 | /* |
| 4293 | * Do this up front to reduce confusion. |
| 4294 | * |
| 4295 | * The directory might start inline, then be turned into an |
| 4296 | * indexed one, in which case we'd need to hash deep inside |
| 4297 | * ocfs2_find_dir_space_id(). Since |
| 4298 | * ocfs2_prepare_dx_dir_for_insert() also needs this hash |
| 4299 | * done, there seems no point in spreading out the calls. We |
| 4300 | * can optimize away the case where the file system doesn't |
| 4301 | * support indexing. |
| 4302 | */ |
| 4303 | if (ocfs2_supports_indexed_dirs(osb)) |
| 4304 | ocfs2_dx_dir_name_hash(dir, name, namelen, &lookup->dl_hinfo); |
| 4305 | |
| 4306 | if (ocfs2_dir_indexed(dir)) { |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4307 | ret = ocfs2_prepare_dx_dir_for_insert(dir, parent_fe_bh, |
| 4308 | name, namelen, lookup); |
| 4309 | if (ret) |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4310 | mlog_errno(ret); |
Mark Fasheh | e7c17e4 | 2009-01-29 18:17:46 -0800 | [diff] [blame] | 4311 | goto out; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4312 | } |
| 4313 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4314 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { |
| 4315 | ret = ocfs2_find_dir_space_id(dir, parent_fe_bh, name, |
| 4316 | namelen, &bh, &blocks_wanted); |
| 4317 | } else |
| 4318 | ret = ocfs2_find_dir_space_el(dir, name, namelen, &bh); |
| 4319 | |
| 4320 | if (ret && ret != -ENOSPC) { |
| 4321 | mlog_errno(ret); |
| 4322 | goto out; |
| 4323 | } |
| 4324 | |
| 4325 | if (ret == -ENOSPC) { |
| 4326 | /* |
| 4327 | * We have to expand the directory to add this name. |
| 4328 | */ |
| 4329 | BUG_ON(bh); |
| 4330 | |
| 4331 | ret = ocfs2_extend_dir(osb, dir, parent_fe_bh, blocks_wanted, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4332 | lookup, &bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4333 | if (ret) { |
| 4334 | if (ret != -ENOSPC) |
| 4335 | mlog_errno(ret); |
| 4336 | goto out; |
| 4337 | } |
| 4338 | |
| 4339 | BUG_ON(!bh); |
| 4340 | } |
| 4341 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 4342 | lookup->dl_leaf_bh = bh; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4343 | bh = NULL; |
| 4344 | out: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 4345 | brelse(bh); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 4346 | return ret; |
| 4347 | } |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4348 | |
| 4349 | static int ocfs2_dx_dir_remove_index(struct inode *dir, |
| 4350 | struct buffer_head *di_bh, |
| 4351 | struct buffer_head *dx_root_bh) |
| 4352 | { |
| 4353 | int ret; |
| 4354 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 4355 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
| 4356 | struct ocfs2_dx_root_block *dx_root; |
| 4357 | struct inode *dx_alloc_inode = NULL; |
| 4358 | struct buffer_head *dx_alloc_bh = NULL; |
| 4359 | handle_t *handle; |
| 4360 | u64 blk; |
| 4361 | u16 bit; |
| 4362 | u64 bg_blkno; |
| 4363 | |
| 4364 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; |
| 4365 | |
| 4366 | dx_alloc_inode = ocfs2_get_system_file_inode(osb, |
| 4367 | EXTENT_ALLOC_SYSTEM_INODE, |
| 4368 | le16_to_cpu(dx_root->dr_suballoc_slot)); |
| 4369 | if (!dx_alloc_inode) { |
| 4370 | ret = -ENOMEM; |
| 4371 | mlog_errno(ret); |
| 4372 | goto out; |
| 4373 | } |
| 4374 | mutex_lock(&dx_alloc_inode->i_mutex); |
| 4375 | |
| 4376 | ret = ocfs2_inode_lock(dx_alloc_inode, &dx_alloc_bh, 1); |
| 4377 | if (ret) { |
| 4378 | mlog_errno(ret); |
| 4379 | goto out_mutex; |
| 4380 | } |
| 4381 | |
| 4382 | handle = ocfs2_start_trans(osb, OCFS2_DX_ROOT_REMOVE_CREDITS); |
| 4383 | if (IS_ERR(handle)) { |
| 4384 | ret = PTR_ERR(handle); |
| 4385 | mlog_errno(ret); |
| 4386 | goto out_unlock; |
| 4387 | } |
| 4388 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 4389 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4390 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 4391 | if (ret) { |
| 4392 | mlog_errno(ret); |
| 4393 | goto out_commit; |
| 4394 | } |
| 4395 | |
Tao Ma | 8ac33dc | 2010-12-15 16:30:00 +0800 | [diff] [blame] | 4396 | spin_lock(&OCFS2_I(dir)->ip_lock); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4397 | OCFS2_I(dir)->ip_dyn_features &= ~OCFS2_INDEXED_DIR_FL; |
| 4398 | di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features); |
Tao Ma | 8ac33dc | 2010-12-15 16:30:00 +0800 | [diff] [blame] | 4399 | spin_unlock(&OCFS2_I(dir)->ip_lock); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4400 | di->i_dx_root = cpu_to_le64(0ULL); |
Darrick J. Wong | 6fdb702 | 2014-04-03 14:47:08 -0700 | [diff] [blame] | 4401 | ocfs2_update_inode_fsync_trans(handle, dir, 1); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4402 | |
| 4403 | ocfs2_journal_dirty(handle, di_bh); |
| 4404 | |
| 4405 | blk = le64_to_cpu(dx_root->dr_blkno); |
| 4406 | bit = le16_to_cpu(dx_root->dr_suballoc_bit); |
Tao Ma | 74380c4 | 2010-03-22 14:20:18 +0800 | [diff] [blame] | 4407 | if (dx_root->dr_suballoc_loc) |
| 4408 | bg_blkno = le64_to_cpu(dx_root->dr_suballoc_loc); |
| 4409 | else |
| 4410 | bg_blkno = ocfs2_which_suballoc_group(blk, bit); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4411 | ret = ocfs2_free_suballoc_bits(handle, dx_alloc_inode, dx_alloc_bh, |
| 4412 | bit, bg_blkno, 1); |
| 4413 | if (ret) |
| 4414 | mlog_errno(ret); |
| 4415 | |
| 4416 | out_commit: |
| 4417 | ocfs2_commit_trans(osb, handle); |
| 4418 | |
| 4419 | out_unlock: |
| 4420 | ocfs2_inode_unlock(dx_alloc_inode, 1); |
| 4421 | |
| 4422 | out_mutex: |
| 4423 | mutex_unlock(&dx_alloc_inode->i_mutex); |
| 4424 | brelse(dx_alloc_bh); |
| 4425 | out: |
| 4426 | iput(dx_alloc_inode); |
| 4427 | return ret; |
| 4428 | } |
| 4429 | |
| 4430 | int ocfs2_dx_dir_truncate(struct inode *dir, struct buffer_head *di_bh) |
| 4431 | { |
| 4432 | int ret; |
| 4433 | unsigned int uninitialized_var(clen); |
| 4434 | u32 major_hash = UINT_MAX, p_cpos, uninitialized_var(cpos); |
| 4435 | u64 uninitialized_var(blkno); |
| 4436 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 4437 | struct buffer_head *dx_root_bh = NULL; |
| 4438 | struct ocfs2_dx_root_block *dx_root; |
| 4439 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
| 4440 | struct ocfs2_cached_dealloc_ctxt dealloc; |
| 4441 | struct ocfs2_extent_tree et; |
| 4442 | |
| 4443 | ocfs2_init_dealloc_ctxt(&dealloc); |
| 4444 | |
| 4445 | if (!ocfs2_dir_indexed(dir)) |
| 4446 | return 0; |
| 4447 | |
| 4448 | ret = ocfs2_read_dx_root(dir, di, &dx_root_bh); |
| 4449 | if (ret) { |
| 4450 | mlog_errno(ret); |
| 4451 | goto out; |
| 4452 | } |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4453 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
| 4454 | |
| 4455 | if (ocfs2_dx_root_inline(dx_root)) |
| 4456 | goto remove_index; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4457 | |
Joel Becker | 5e404e9 | 2009-02-13 03:54:22 -0800 | [diff] [blame] | 4458 | ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4459 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4460 | /* XXX: What if dr_clusters is too large? */ |
| 4461 | while (le32_to_cpu(dx_root->dr_clusters)) { |
| 4462 | ret = ocfs2_dx_dir_lookup_rec(dir, &dx_root->dr_list, |
| 4463 | major_hash, &cpos, &blkno, &clen); |
| 4464 | if (ret) { |
| 4465 | mlog_errno(ret); |
| 4466 | goto out; |
| 4467 | } |
| 4468 | |
| 4469 | p_cpos = ocfs2_blocks_to_clusters(dir->i_sb, blkno); |
| 4470 | |
Tristan Ye | 78f9467 | 2010-05-11 17:54:42 +0800 | [diff] [blame] | 4471 | ret = ocfs2_remove_btree_range(dir, &et, cpos, p_cpos, clen, 0, |
Junxiao Bi | f62f12b | 2014-12-18 16:17:32 -0800 | [diff] [blame] | 4472 | &dealloc, 0, false); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4473 | if (ret) { |
| 4474 | mlog_errno(ret); |
| 4475 | goto out; |
| 4476 | } |
| 4477 | |
| 4478 | if (cpos == 0) |
| 4479 | break; |
| 4480 | |
| 4481 | major_hash = cpos - 1; |
| 4482 | } |
| 4483 | |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 4484 | remove_index: |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4485 | ret = ocfs2_dx_dir_remove_index(dir, di_bh, dx_root_bh); |
| 4486 | if (ret) { |
| 4487 | mlog_errno(ret); |
| 4488 | goto out; |
| 4489 | } |
| 4490 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 4491 | ocfs2_remove_from_cache(INODE_CACHE(dir), dx_root_bh); |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 4492 | out: |
| 4493 | ocfs2_schedule_truncate_log_flush(osb, 1); |
| 4494 | ocfs2_run_deallocs(osb, &dealloc); |
| 4495 | |
| 4496 | brelse(dx_root_bh); |
| 4497 | return ret; |
| 4498 | } |