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 | * namei.c |
| 5 | * |
| 6 | * Create and rename file, directory, symlinks |
| 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 | * |
| 21 | * Copyright (C) 1991, 1992 Linux Torvalds |
| 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 | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 44 | |
| 45 | #define MLOG_MASK_PREFIX ML_NAMEI |
| 46 | #include <cluster/masklog.h> |
| 47 | |
| 48 | #include "ocfs2.h" |
| 49 | |
| 50 | #include "alloc.h" |
| 51 | #include "dcache.h" |
| 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 | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 60 | #include "super.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 61 | #include "symlink.h" |
| 62 | #include "sysfile.h" |
| 63 | #include "uptodate.h" |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 64 | #include "xattr.h" |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 65 | #include "acl.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 66 | |
| 67 | #include "buffer_head_io.h" |
| 68 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 69 | static int ocfs2_mknod_locked(struct ocfs2_super *osb, |
| 70 | struct inode *dir, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 71 | struct inode *inode, |
| 72 | struct dentry *dentry, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 73 | dev_t dev, |
| 74 | struct buffer_head **new_fe_bh, |
| 75 | struct buffer_head *parent_fe_bh, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 76 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 77 | struct ocfs2_alloc_context *inode_ac); |
| 78 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 79 | static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 80 | struct inode **ret_orphan_dir, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 81 | struct inode *inode, |
| 82 | char *name, |
| 83 | struct buffer_head **de_bh); |
| 84 | |
| 85 | static int ocfs2_orphan_add(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 86 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 87 | struct inode *inode, |
| 88 | struct ocfs2_dinode *fe, |
| 89 | char *name, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 90 | struct buffer_head *de_bh, |
| 91 | struct inode *orphan_dir_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 92 | |
| 93 | static int ocfs2_create_symlink_data(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 94 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 95 | struct inode *inode, |
| 96 | const char *symname); |
| 97 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 98 | /* An orphan dir name is an 8 byte value, printed as a hex string */ |
| 99 | #define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64))) |
| 100 | |
| 101 | static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry, |
| 102 | struct nameidata *nd) |
| 103 | { |
| 104 | int status; |
| 105 | u64 blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 106 | struct inode *inode = NULL; |
| 107 | struct dentry *ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 108 | struct ocfs2_inode_info *oi; |
| 109 | |
| 110 | mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry, |
| 111 | dentry->d_name.len, dentry->d_name.name); |
| 112 | |
| 113 | if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) { |
| 114 | ret = ERR_PTR(-ENAMETOOLONG); |
| 115 | goto bail; |
| 116 | } |
| 117 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 118 | mlog(0, "find name %.*s in directory %llu\n", dentry->d_name.len, |
| 119 | dentry->d_name.name, (unsigned long long)OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 120 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 121 | status = ocfs2_inode_lock(dir, NULL, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 122 | if (status < 0) { |
| 123 | if (status != -ENOENT) |
| 124 | mlog_errno(status); |
| 125 | ret = ERR_PTR(status); |
| 126 | goto bail; |
| 127 | } |
| 128 | |
Mark Fasheh | be94d11 | 2007-09-11 15:22:06 -0700 | [diff] [blame] | 129 | status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name, |
| 130 | dentry->d_name.len, &blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 131 | if (status < 0) |
| 132 | goto bail_add; |
| 133 | |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 134 | inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 135 | if (IS_ERR(inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 136 | ret = ERR_PTR(-EACCES); |
| 137 | goto bail_unlock; |
| 138 | } |
| 139 | |
| 140 | oi = OCFS2_I(inode); |
| 141 | /* Clear any orphaned state... If we were able to look up the |
| 142 | * inode from a directory, it certainly can't be orphaned. We |
| 143 | * might have the bad state from a node which intended to |
| 144 | * orphan this inode but crashed before it could commit the |
| 145 | * unlink. */ |
| 146 | spin_lock(&oi->ip_lock); |
| 147 | oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 148 | spin_unlock(&oi->ip_lock); |
| 149 | |
| 150 | bail_add: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 151 | dentry->d_op = &ocfs2_dentry_ops; |
| 152 | ret = d_splice_alias(inode, dentry); |
| 153 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 154 | if (inode) { |
| 155 | /* |
| 156 | * If d_splice_alias() finds a DCACHE_DISCONNECTED |
| 157 | * dentry, it will d_move() it on top of ourse. The |
| 158 | * return value will indicate this however, so in |
| 159 | * those cases, we switch them around for the locking |
| 160 | * code. |
| 161 | * |
| 162 | * NOTE: This dentry already has ->d_op set from |
| 163 | * ocfs2_get_parent() and ocfs2_get_dentry() |
| 164 | */ |
| 165 | if (ret) |
| 166 | dentry = ret; |
| 167 | |
| 168 | status = ocfs2_dentry_attach_lock(dentry, inode, |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 169 | OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 170 | if (status) { |
| 171 | mlog_errno(status); |
| 172 | ret = ERR_PTR(status); |
| 173 | goto bail_unlock; |
| 174 | } |
| 175 | } |
| 176 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 177 | bail_unlock: |
| 178 | /* Don't drop the cluster lock until *after* the d_add -- |
| 179 | * unlink on another node will message us to remove that |
| 180 | * dentry under this lock so otherwise we can race this with |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 181 | * the downconvert thread and have a stale dentry. */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 182 | ocfs2_inode_unlock(dir, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 183 | |
| 184 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 185 | |
| 186 | mlog_exit_ptr(ret); |
| 187 | |
| 188 | return ret; |
| 189 | } |
| 190 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 191 | static struct inode *ocfs2_get_init_inode(struct inode *dir, int mode) |
| 192 | { |
| 193 | struct inode *inode; |
| 194 | |
| 195 | inode = new_inode(dir->i_sb); |
| 196 | if (!inode) { |
| 197 | mlog(ML_ERROR, "new_inode failed!\n"); |
| 198 | return NULL; |
| 199 | } |
| 200 | |
| 201 | /* populate as many fields early on as possible - many of |
| 202 | * these are used by the support functions here and in |
| 203 | * callers. */ |
| 204 | if (S_ISDIR(mode)) |
| 205 | inode->i_nlink = 2; |
| 206 | else |
| 207 | inode->i_nlink = 1; |
| 208 | inode->i_uid = current_fsuid(); |
| 209 | if (dir->i_mode & S_ISGID) { |
| 210 | inode->i_gid = dir->i_gid; |
| 211 | if (S_ISDIR(mode)) |
| 212 | mode |= S_ISGID; |
| 213 | } else |
| 214 | inode->i_gid = current_fsgid(); |
| 215 | inode->i_mode = mode; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 216 | vfs_dq_init(inode); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 217 | return inode; |
| 218 | } |
| 219 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 220 | static int ocfs2_mknod(struct inode *dir, |
| 221 | struct dentry *dentry, |
| 222 | int mode, |
| 223 | dev_t dev) |
| 224 | { |
| 225 | int status = 0; |
| 226 | struct buffer_head *parent_fe_bh = NULL; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 227 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 228 | struct ocfs2_super *osb; |
| 229 | struct ocfs2_dinode *dirfe; |
| 230 | struct buffer_head *new_fe_bh = NULL; |
| 231 | struct buffer_head *de_bh = NULL; |
| 232 | struct inode *inode = NULL; |
| 233 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 234 | struct ocfs2_alloc_context *data_ac = NULL; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 235 | struct ocfs2_alloc_context *xattr_ac = NULL; |
| 236 | int want_clusters = 0; |
| 237 | int xattr_credits = 0; |
| 238 | struct ocfs2_security_xattr_info si = { |
| 239 | .enable = 1, |
| 240 | }; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 241 | int did_quota_inode = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 242 | |
| 243 | mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir, dentry, mode, |
| 244 | (unsigned long)dev, dentry->d_name.len, |
| 245 | dentry->d_name.name); |
| 246 | |
| 247 | /* get our super block */ |
| 248 | osb = OCFS2_SB(dir->i_sb); |
| 249 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 250 | status = ocfs2_inode_lock(dir, &parent_fe_bh, 1); |
Mark Fasheh | e3a8213 | 2006-10-05 16:04:17 -0700 | [diff] [blame] | 251 | if (status < 0) { |
| 252 | if (status != -ENOENT) |
| 253 | mlog_errno(status); |
| 254 | return status; |
| 255 | } |
| 256 | |
Mark Fasheh | a663e30 | 2006-08-09 11:45:07 -0700 | [diff] [blame] | 257 | if (S_ISDIR(mode) && (dir->i_nlink >= OCFS2_LINK_MAX)) { |
| 258 | status = -EMLINK; |
| 259 | goto leave; |
| 260 | } |
| 261 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 262 | dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data; |
| 263 | if (!dirfe->i_links_count) { |
| 264 | /* can't make a file in a deleted directory. */ |
| 265 | status = -ENOENT; |
| 266 | goto leave; |
| 267 | } |
| 268 | |
| 269 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 270 | dentry->d_name.len); |
| 271 | if (status) |
| 272 | goto leave; |
| 273 | |
| 274 | /* get a spot inside the dir. */ |
| 275 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 276 | dentry->d_name.name, |
| 277 | dentry->d_name.len, &de_bh); |
| 278 | if (status < 0) { |
| 279 | mlog_errno(status); |
| 280 | goto leave; |
| 281 | } |
| 282 | |
| 283 | /* reserve an inode spot */ |
Mark Fasheh | da5cbf2 | 2006-10-06 18:34:35 -0700 | [diff] [blame] | 284 | status = ocfs2_reserve_new_inode(osb, &inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 285 | if (status < 0) { |
| 286 | if (status != -ENOSPC) |
| 287 | mlog_errno(status); |
| 288 | goto leave; |
| 289 | } |
| 290 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 291 | inode = ocfs2_get_init_inode(dir, mode); |
| 292 | if (!inode) { |
| 293 | status = -ENOMEM; |
| 294 | mlog_errno(status); |
| 295 | goto leave; |
| 296 | } |
| 297 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 298 | /* get security xattr */ |
| 299 | status = ocfs2_init_security_get(inode, dir, &si); |
| 300 | if (status) { |
| 301 | if (status == -EOPNOTSUPP) |
| 302 | si.enable = 0; |
| 303 | else { |
| 304 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 305 | goto leave; |
| 306 | } |
| 307 | } |
| 308 | |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 309 | /* calculate meta data/clusters for setting security and acl xattr */ |
| 310 | status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode, |
| 311 | &si, &want_clusters, |
| 312 | &xattr_credits, &xattr_ac); |
| 313 | if (status < 0) { |
| 314 | mlog_errno(status); |
| 315 | goto leave; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | /* Reserve a cluster if creating an extent based directory. */ |
| 319 | if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) |
| 320 | want_clusters += 1; |
| 321 | |
| 322 | status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac); |
| 323 | if (status < 0) { |
| 324 | if (status != -ENOSPC) |
| 325 | mlog_errno(status); |
| 326 | goto leave; |
| 327 | } |
| 328 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 329 | handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb) + |
| 330 | xattr_credits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 331 | if (IS_ERR(handle)) { |
| 332 | status = PTR_ERR(handle); |
| 333 | handle = NULL; |
| 334 | mlog_errno(status); |
| 335 | goto leave; |
| 336 | } |
| 337 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 338 | /* We don't use standard VFS wrapper because we don't want vfs_dq_init |
| 339 | * to be called. */ |
| 340 | if (sb_any_quota_active(osb->sb) && |
| 341 | osb->sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) { |
| 342 | status = -EDQUOT; |
| 343 | goto leave; |
| 344 | } |
| 345 | did_quota_inode = 1; |
| 346 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 347 | /* do the real work now. */ |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 348 | status = ocfs2_mknod_locked(osb, dir, inode, dentry, dev, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 349 | &new_fe_bh, parent_fe_bh, handle, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 350 | inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 351 | if (status < 0) { |
| 352 | mlog_errno(status); |
| 353 | goto leave; |
| 354 | } |
| 355 | |
| 356 | if (S_ISDIR(mode)) { |
| 357 | status = ocfs2_fill_new_dir(osb, handle, dir, inode, |
| 358 | new_fe_bh, data_ac); |
| 359 | if (status < 0) { |
| 360 | mlog_errno(status); |
| 361 | goto leave; |
| 362 | } |
| 363 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 364 | status = ocfs2_journal_access_di(handle, dir, parent_fe_bh, |
| 365 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 366 | if (status < 0) { |
| 367 | mlog_errno(status); |
| 368 | goto leave; |
| 369 | } |
| 370 | le16_add_cpu(&dirfe->i_links_count, 1); |
| 371 | status = ocfs2_journal_dirty(handle, parent_fe_bh); |
| 372 | if (status < 0) { |
| 373 | mlog_errno(status); |
| 374 | goto leave; |
| 375 | } |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 376 | inc_nlink(dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 377 | } |
| 378 | |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 379 | status = ocfs2_init_acl(handle, inode, dir, new_fe_bh, parent_fe_bh, |
| 380 | xattr_ac, data_ac); |
| 381 | if (status < 0) { |
| 382 | mlog_errno(status); |
| 383 | goto leave; |
| 384 | } |
| 385 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 386 | if (si.enable) { |
| 387 | status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si, |
| 388 | xattr_ac, data_ac); |
| 389 | if (status < 0) { |
| 390 | mlog_errno(status); |
| 391 | goto leave; |
| 392 | } |
| 393 | } |
| 394 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 395 | status = ocfs2_add_entry(handle, dentry, inode, |
| 396 | OCFS2_I(inode)->ip_blkno, parent_fe_bh, |
| 397 | de_bh); |
| 398 | if (status < 0) { |
| 399 | mlog_errno(status); |
| 400 | goto leave; |
| 401 | } |
| 402 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 403 | status = ocfs2_dentry_attach_lock(dentry, inode, |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 404 | OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 405 | if (status) { |
| 406 | mlog_errno(status); |
| 407 | goto leave; |
| 408 | } |
| 409 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 410 | insert_inode_hash(inode); |
| 411 | dentry->d_op = &ocfs2_dentry_ops; |
| 412 | d_instantiate(dentry, inode); |
| 413 | status = 0; |
| 414 | leave: |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 415 | if (status < 0 && did_quota_inode) |
| 416 | vfs_dq_free_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 417 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 418 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 419 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 420 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | e3a8213 | 2006-10-05 16:04:17 -0700 | [diff] [blame] | 421 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 422 | if (status == -ENOSPC) |
| 423 | mlog(0, "Disk is full\n"); |
| 424 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 425 | brelse(new_fe_bh); |
| 426 | brelse(de_bh); |
| 427 | brelse(parent_fe_bh); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 428 | kfree(si.name); |
| 429 | kfree(si.value); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 430 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 431 | if ((status < 0) && inode) { |
| 432 | clear_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 433 | iput(inode); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 434 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 435 | |
| 436 | if (inode_ac) |
| 437 | ocfs2_free_alloc_context(inode_ac); |
| 438 | |
| 439 | if (data_ac) |
| 440 | ocfs2_free_alloc_context(data_ac); |
| 441 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 442 | if (xattr_ac) |
| 443 | ocfs2_free_alloc_context(xattr_ac); |
| 444 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 445 | mlog_exit(status); |
| 446 | |
| 447 | return status; |
| 448 | } |
| 449 | |
| 450 | static int ocfs2_mknod_locked(struct ocfs2_super *osb, |
| 451 | struct inode *dir, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 452 | struct inode *inode, |
| 453 | struct dentry *dentry, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 454 | dev_t dev, |
| 455 | struct buffer_head **new_fe_bh, |
| 456 | struct buffer_head *parent_fe_bh, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 457 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 458 | struct ocfs2_alloc_context *inode_ac) |
| 459 | { |
| 460 | int status = 0; |
| 461 | struct ocfs2_dinode *fe = NULL; |
| 462 | struct ocfs2_extent_list *fel; |
| 463 | u64 fe_blkno = 0; |
| 464 | u16 suballoc_bit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 465 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 466 | mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir, dentry, |
| 467 | inode->i_mode, (unsigned long)dev, dentry->d_name.len, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 468 | dentry->d_name.name); |
| 469 | |
| 470 | *new_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 471 | |
| 472 | status = ocfs2_claim_new_inode(osb, handle, inode_ac, &suballoc_bit, |
| 473 | &fe_blkno); |
| 474 | if (status < 0) { |
| 475 | mlog_errno(status); |
| 476 | goto leave; |
| 477 | } |
| 478 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 479 | /* populate as many fields early on as possible - many of |
| 480 | * these are used by the support functions here and in |
| 481 | * callers. */ |
| 482 | inode->i_ino = ino_from_blkno(osb->sb, fe_blkno); |
| 483 | OCFS2_I(inode)->ip_blkno = fe_blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 484 | spin_lock(&osb->osb_lock); |
| 485 | inode->i_generation = osb->s_next_generation++; |
| 486 | spin_unlock(&osb->osb_lock); |
| 487 | |
| 488 | *new_fe_bh = sb_getblk(osb->sb, fe_blkno); |
| 489 | if (!*new_fe_bh) { |
| 490 | status = -EIO; |
| 491 | mlog_errno(status); |
| 492 | goto leave; |
| 493 | } |
| 494 | ocfs2_set_new_buffer_uptodate(inode, *new_fe_bh); |
| 495 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 496 | status = ocfs2_journal_access_di(handle, inode, *new_fe_bh, |
| 497 | OCFS2_JOURNAL_ACCESS_CREATE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 498 | if (status < 0) { |
| 499 | mlog_errno(status); |
| 500 | goto leave; |
| 501 | } |
| 502 | |
| 503 | fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data; |
| 504 | memset(fe, 0, osb->sb->s_blocksize); |
| 505 | |
| 506 | fe->i_generation = cpu_to_le32(inode->i_generation); |
| 507 | fe->i_fs_generation = cpu_to_le32(osb->fs_generation); |
| 508 | fe->i_blkno = cpu_to_le64(fe_blkno); |
| 509 | fe->i_suballoc_bit = cpu_to_le16(suballoc_bit); |
Tao Ma | 4d0ddb2 | 2008-03-05 16:11:46 +0800 | [diff] [blame] | 510 | fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 511 | fe->i_uid = cpu_to_le32(inode->i_uid); |
| 512 | fe->i_gid = cpu_to_le32(inode->i_gid); |
| 513 | fe->i_mode = cpu_to_le16(inode->i_mode); |
| 514 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 515 | fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 516 | fe->i_links_count = cpu_to_le16(inode->i_nlink); |
| 517 | |
| 518 | fe->i_last_eb_blk = 0; |
| 519 | strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE); |
| 520 | le32_add_cpu(&fe->i_flags, OCFS2_VALID_FL); |
| 521 | fe->i_atime = fe->i_ctime = fe->i_mtime = |
| 522 | cpu_to_le64(CURRENT_TIME.tv_sec); |
| 523 | fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec = |
| 524 | cpu_to_le32(CURRENT_TIME.tv_nsec); |
| 525 | fe->i_dtime = 0; |
| 526 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 527 | /* |
| 528 | * If supported, directories start with inline data. |
| 529 | */ |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 530 | if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) { |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 531 | u16 feat = le16_to_cpu(fe->i_dyn_features); |
| 532 | |
| 533 | fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL); |
| 534 | |
| 535 | fe->id2.i_data.id_count = cpu_to_le16(ocfs2_max_inline_data(osb->sb)); |
| 536 | } else { |
| 537 | fel = &fe->id2.i_list; |
| 538 | fel->l_tree_depth = 0; |
| 539 | fel->l_next_free_rec = 0; |
| 540 | fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb)); |
| 541 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 542 | |
| 543 | status = ocfs2_journal_dirty(handle, *new_fe_bh); |
| 544 | if (status < 0) { |
| 545 | mlog_errno(status); |
| 546 | goto leave; |
| 547 | } |
| 548 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 549 | ocfs2_populate_inode(inode, fe, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 550 | ocfs2_inode_set_new(osb, inode); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 551 | if (!ocfs2_mount_local(osb)) { |
| 552 | status = ocfs2_create_new_inode_locks(inode); |
| 553 | if (status < 0) |
| 554 | mlog_errno(status); |
| 555 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 556 | |
| 557 | status = 0; /* error in ocfs2_create_new_inode_locks is not |
| 558 | * critical */ |
| 559 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 560 | leave: |
| 561 | if (status < 0) { |
| 562 | if (*new_fe_bh) { |
| 563 | brelse(*new_fe_bh); |
| 564 | *new_fe_bh = NULL; |
| 565 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | mlog_exit(status); |
| 569 | return status; |
| 570 | } |
| 571 | |
| 572 | static int ocfs2_mkdir(struct inode *dir, |
| 573 | struct dentry *dentry, |
| 574 | int mode) |
| 575 | { |
| 576 | int ret; |
| 577 | |
| 578 | mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode, |
| 579 | dentry->d_name.len, dentry->d_name.name); |
| 580 | ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0); |
| 581 | mlog_exit(ret); |
| 582 | |
| 583 | return ret; |
| 584 | } |
| 585 | |
| 586 | static int ocfs2_create(struct inode *dir, |
| 587 | struct dentry *dentry, |
| 588 | int mode, |
| 589 | struct nameidata *nd) |
| 590 | { |
| 591 | int ret; |
| 592 | |
| 593 | mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode, |
| 594 | dentry->d_name.len, dentry->d_name.name); |
| 595 | ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0); |
| 596 | mlog_exit(ret); |
| 597 | |
| 598 | return ret; |
| 599 | } |
| 600 | |
| 601 | static int ocfs2_link(struct dentry *old_dentry, |
| 602 | struct inode *dir, |
| 603 | struct dentry *dentry) |
| 604 | { |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 605 | handle_t *handle; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 606 | struct inode *inode = old_dentry->d_inode; |
| 607 | int err; |
| 608 | struct buffer_head *fe_bh = NULL; |
| 609 | struct buffer_head *parent_fe_bh = NULL; |
| 610 | struct buffer_head *de_bh = NULL; |
| 611 | struct ocfs2_dinode *fe = NULL; |
| 612 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 613 | |
| 614 | mlog_entry("(inode=%lu, old='%.*s' new='%.*s')\n", inode->i_ino, |
| 615 | old_dentry->d_name.len, old_dentry->d_name.name, |
| 616 | dentry->d_name.len, dentry->d_name.name); |
| 617 | |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 618 | if (S_ISDIR(inode->i_mode)) |
| 619 | return -EPERM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 620 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 621 | err = ocfs2_inode_lock(dir, &parent_fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 622 | if (err < 0) { |
| 623 | if (err != -ENOENT) |
| 624 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 625 | return err; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 626 | } |
| 627 | |
Tiger Yang | 0f62de2 | 2006-08-31 20:39:47 -0700 | [diff] [blame] | 628 | if (!dir->i_nlink) { |
| 629 | err = -ENOENT; |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 630 | goto out; |
Tiger Yang | 0f62de2 | 2006-08-31 20:39:47 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 633 | err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 634 | dentry->d_name.len); |
| 635 | if (err) |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 636 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 637 | |
| 638 | err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 639 | dentry->d_name.name, |
| 640 | dentry->d_name.len, &de_bh); |
| 641 | if (err < 0) { |
| 642 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 643 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 644 | } |
| 645 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 646 | err = ocfs2_inode_lock(inode, &fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 647 | if (err < 0) { |
| 648 | if (err != -ENOENT) |
| 649 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 650 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 651 | } |
| 652 | |
| 653 | fe = (struct ocfs2_dinode *) fe_bh->b_data; |
| 654 | if (le16_to_cpu(fe->i_links_count) >= OCFS2_LINK_MAX) { |
| 655 | err = -EMLINK; |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 656 | goto out_unlock_inode; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 657 | } |
| 658 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 659 | handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 660 | if (IS_ERR(handle)) { |
| 661 | err = PTR_ERR(handle); |
| 662 | handle = NULL; |
| 663 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 664 | goto out_unlock_inode; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 665 | } |
| 666 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 667 | err = ocfs2_journal_access_di(handle, inode, fe_bh, |
| 668 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 669 | if (err < 0) { |
| 670 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 671 | goto out_commit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 672 | } |
| 673 | |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 674 | inc_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 675 | inode->i_ctime = CURRENT_TIME; |
| 676 | fe->i_links_count = cpu_to_le16(inode->i_nlink); |
| 677 | fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec); |
| 678 | fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec); |
| 679 | |
| 680 | err = ocfs2_journal_dirty(handle, fe_bh); |
| 681 | if (err < 0) { |
| 682 | le16_add_cpu(&fe->i_links_count, -1); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 683 | drop_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 684 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 685 | goto out_commit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | err = ocfs2_add_entry(handle, dentry, inode, |
| 689 | OCFS2_I(inode)->ip_blkno, |
| 690 | parent_fe_bh, de_bh); |
| 691 | if (err) { |
| 692 | le16_add_cpu(&fe->i_links_count, -1); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 693 | drop_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 694 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 695 | goto out_commit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 696 | } |
| 697 | |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 698 | err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 699 | if (err) { |
| 700 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 701 | goto out_commit; |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 702 | } |
| 703 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 704 | atomic_inc(&inode->i_count); |
| 705 | dentry->d_op = &ocfs2_dentry_ops; |
| 706 | d_instantiate(dentry, inode); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 707 | |
| 708 | out_commit: |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 709 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 710 | out_unlock_inode: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 711 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 712 | |
| 713 | out: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 714 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 715 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 716 | brelse(de_bh); |
| 717 | brelse(fe_bh); |
| 718 | brelse(parent_fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 719 | |
| 720 | mlog_exit(err); |
| 721 | |
| 722 | return err; |
| 723 | } |
| 724 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 725 | /* |
| 726 | * Takes and drops an exclusive lock on the given dentry. This will |
| 727 | * force other nodes to drop it. |
| 728 | */ |
| 729 | static int ocfs2_remote_dentry_delete(struct dentry *dentry) |
| 730 | { |
| 731 | int ret; |
| 732 | |
| 733 | ret = ocfs2_dentry_lock(dentry, 1); |
| 734 | if (ret) |
| 735 | mlog_errno(ret); |
| 736 | else |
| 737 | ocfs2_dentry_unlock(dentry, 1); |
| 738 | |
| 739 | return ret; |
| 740 | } |
| 741 | |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 742 | static inline int inode_is_unlinkable(struct inode *inode) |
| 743 | { |
| 744 | if (S_ISDIR(inode->i_mode)) { |
| 745 | if (inode->i_nlink == 2) |
| 746 | return 1; |
| 747 | return 0; |
| 748 | } |
| 749 | |
| 750 | if (inode->i_nlink == 1) |
| 751 | return 1; |
| 752 | return 0; |
| 753 | } |
| 754 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 755 | static int ocfs2_unlink(struct inode *dir, |
| 756 | struct dentry *dentry) |
| 757 | { |
| 758 | int status; |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 759 | int child_locked = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 760 | struct inode *inode = dentry->d_inode; |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 761 | struct inode *orphan_dir = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 762 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 763 | u64 blkno; |
| 764 | struct ocfs2_dinode *fe = NULL; |
| 765 | struct buffer_head *fe_bh = NULL; |
| 766 | struct buffer_head *parent_node_bh = NULL; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 767 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 768 | struct ocfs2_dir_entry *dirent = NULL; |
| 769 | struct buffer_head *dirent_bh = NULL; |
| 770 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
| 771 | struct buffer_head *orphan_entry_bh = NULL; |
| 772 | |
| 773 | mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry, |
| 774 | dentry->d_name.len, dentry->d_name.name); |
| 775 | |
| 776 | BUG_ON(dentry->d_parent->d_inode != dir); |
| 777 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 778 | mlog(0, "ino = %llu\n", (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 779 | |
| 780 | if (inode == osb->root_inode) { |
| 781 | mlog(0, "Cannot delete the root directory\n"); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 782 | return -EPERM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 783 | } |
| 784 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 785 | status = ocfs2_inode_lock(dir, &parent_node_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 786 | if (status < 0) { |
| 787 | if (status != -ENOENT) |
| 788 | mlog_errno(status); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 789 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | status = ocfs2_find_files_on_disk(dentry->d_name.name, |
| 793 | dentry->d_name.len, &blkno, |
| 794 | dir, &dirent_bh, &dirent); |
| 795 | if (status < 0) { |
| 796 | if (status != -ENOENT) |
| 797 | mlog_errno(status); |
| 798 | goto leave; |
| 799 | } |
| 800 | |
| 801 | if (OCFS2_I(inode)->ip_blkno != blkno) { |
| 802 | status = -ENOENT; |
| 803 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 804 | mlog(0, "ip_blkno %llu != dirent blkno %llu ip_flags = %x\n", |
| 805 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 806 | (unsigned long long)blkno, OCFS2_I(inode)->ip_flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 807 | goto leave; |
| 808 | } |
| 809 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 810 | status = ocfs2_inode_lock(inode, &fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 811 | if (status < 0) { |
| 812 | if (status != -ENOENT) |
| 813 | mlog_errno(status); |
| 814 | goto leave; |
| 815 | } |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 816 | child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 817 | |
| 818 | if (S_ISDIR(inode->i_mode)) { |
| 819 | if (!ocfs2_empty_dir(inode)) { |
| 820 | status = -ENOTEMPTY; |
| 821 | goto leave; |
| 822 | } else if (inode->i_nlink != 2) { |
| 823 | status = -ENOTEMPTY; |
| 824 | goto leave; |
| 825 | } |
| 826 | } |
| 827 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 828 | status = ocfs2_remote_dentry_delete(dentry); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 829 | if (status < 0) { |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 830 | /* This remote delete should succeed under all normal |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 831 | * circumstances. */ |
| 832 | mlog_errno(status); |
| 833 | goto leave; |
| 834 | } |
| 835 | |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 836 | if (inode_is_unlinkable(inode)) { |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 837 | status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, inode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 838 | orphan_name, |
| 839 | &orphan_entry_bh); |
| 840 | if (status < 0) { |
| 841 | mlog_errno(status); |
| 842 | goto leave; |
| 843 | } |
| 844 | } |
| 845 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 846 | handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 847 | if (IS_ERR(handle)) { |
| 848 | status = PTR_ERR(handle); |
| 849 | handle = NULL; |
| 850 | mlog_errno(status); |
| 851 | goto leave; |
| 852 | } |
| 853 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 854 | status = ocfs2_journal_access_di(handle, inode, fe_bh, |
| 855 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 856 | if (status < 0) { |
| 857 | mlog_errno(status); |
| 858 | goto leave; |
| 859 | } |
| 860 | |
| 861 | fe = (struct ocfs2_dinode *) fe_bh->b_data; |
| 862 | |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 863 | if (inode_is_unlinkable(inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 864 | status = ocfs2_orphan_add(osb, handle, inode, fe, orphan_name, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 865 | orphan_entry_bh, orphan_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 866 | if (status < 0) { |
| 867 | mlog_errno(status); |
| 868 | goto leave; |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | /* delete the name from the parent dir */ |
| 873 | status = ocfs2_delete_entry(handle, dir, dirent, dirent_bh); |
| 874 | if (status < 0) { |
| 875 | mlog_errno(status); |
| 876 | goto leave; |
| 877 | } |
| 878 | |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 879 | if (S_ISDIR(inode->i_mode)) |
| 880 | drop_nlink(inode); |
| 881 | drop_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 882 | fe->i_links_count = cpu_to_le16(inode->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 883 | |
| 884 | status = ocfs2_journal_dirty(handle, fe_bh); |
| 885 | if (status < 0) { |
| 886 | mlog_errno(status); |
| 887 | goto leave; |
| 888 | } |
| 889 | |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 890 | dir->i_ctime = dir->i_mtime = CURRENT_TIME; |
| 891 | if (S_ISDIR(inode->i_mode)) |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 892 | drop_nlink(dir); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 893 | |
| 894 | status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh); |
| 895 | if (status < 0) { |
| 896 | mlog_errno(status); |
| 897 | if (S_ISDIR(inode->i_mode)) |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 898 | inc_nlink(dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | leave: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 902 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 903 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 904 | |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 905 | if (child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 906 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 907 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 908 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 909 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 910 | if (orphan_dir) { |
| 911 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 912 | ocfs2_inode_unlock(orphan_dir, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 913 | mutex_unlock(&orphan_dir->i_mutex); |
| 914 | iput(orphan_dir); |
| 915 | } |
| 916 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 917 | brelse(fe_bh); |
| 918 | brelse(dirent_bh); |
| 919 | brelse(parent_node_bh); |
| 920 | brelse(orphan_entry_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 921 | |
| 922 | mlog_exit(status); |
| 923 | |
| 924 | return status; |
| 925 | } |
| 926 | |
| 927 | /* |
| 928 | * The only place this should be used is rename! |
| 929 | * if they have the same id, then the 1st one is the only one locked. |
| 930 | */ |
| 931 | static int ocfs2_double_lock(struct ocfs2_super *osb, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 932 | struct buffer_head **bh1, |
| 933 | struct inode *inode1, |
| 934 | struct buffer_head **bh2, |
| 935 | struct inode *inode2) |
| 936 | { |
| 937 | int status; |
| 938 | struct ocfs2_inode_info *oi1 = OCFS2_I(inode1); |
| 939 | struct ocfs2_inode_info *oi2 = OCFS2_I(inode2); |
| 940 | struct buffer_head **tmpbh; |
| 941 | struct inode *tmpinode; |
| 942 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 943 | mlog_entry("(inode1 = %llu, inode2 = %llu)\n", |
| 944 | (unsigned long long)oi1->ip_blkno, |
| 945 | (unsigned long long)oi2->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 946 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 947 | if (*bh1) |
| 948 | *bh1 = NULL; |
| 949 | if (*bh2) |
| 950 | *bh2 = NULL; |
| 951 | |
| 952 | /* we always want to lock the one with the lower lockid first. */ |
| 953 | if (oi1->ip_blkno != oi2->ip_blkno) { |
| 954 | if (oi1->ip_blkno < oi2->ip_blkno) { |
| 955 | /* switch id1 and id2 around */ |
| 956 | mlog(0, "switching them around...\n"); |
| 957 | tmpbh = bh2; |
| 958 | bh2 = bh1; |
| 959 | bh1 = tmpbh; |
| 960 | |
| 961 | tmpinode = inode2; |
| 962 | inode2 = inode1; |
| 963 | inode1 = tmpinode; |
| 964 | } |
| 965 | /* lock id2 */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 966 | status = ocfs2_inode_lock(inode2, bh2, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 967 | if (status < 0) { |
| 968 | if (status != -ENOENT) |
| 969 | mlog_errno(status); |
| 970 | goto bail; |
| 971 | } |
| 972 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 973 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 974 | /* lock id1 */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 975 | status = ocfs2_inode_lock(inode1, bh1, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 976 | if (status < 0) { |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 977 | /* |
| 978 | * An error return must mean that no cluster locks |
| 979 | * were held on function exit. |
| 980 | */ |
| 981 | if (oi1->ip_blkno != oi2->ip_blkno) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 982 | ocfs2_inode_unlock(inode2, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 983 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 984 | if (status != -ENOENT) |
| 985 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 986 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 987 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 988 | bail: |
| 989 | mlog_exit(status); |
| 990 | return status; |
| 991 | } |
| 992 | |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 993 | static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2) |
| 994 | { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 995 | ocfs2_inode_unlock(inode1, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 996 | |
| 997 | if (inode1 != inode2) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 998 | ocfs2_inode_unlock(inode2, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 999 | } |
| 1000 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1001 | static int ocfs2_rename(struct inode *old_dir, |
| 1002 | struct dentry *old_dentry, |
| 1003 | struct inode *new_dir, |
| 1004 | struct dentry *new_dentry) |
| 1005 | { |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1006 | int status = 0, rename_lock = 0, parents_locked = 0; |
| 1007 | int old_child_locked = 0, new_child_locked = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1008 | struct inode *old_inode = old_dentry->d_inode; |
| 1009 | struct inode *new_inode = new_dentry->d_inode; |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1010 | struct inode *orphan_dir = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1011 | struct ocfs2_dinode *newfe = NULL; |
| 1012 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
| 1013 | struct buffer_head *orphan_entry_bh = NULL; |
| 1014 | struct buffer_head *newfe_bh = NULL; |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1015 | struct buffer_head *old_inode_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1016 | struct buffer_head *insert_entry_bh = NULL; |
| 1017 | struct ocfs2_super *osb = NULL; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1018 | u64 newfe_blkno, old_de_ino; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1019 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1020 | struct buffer_head *old_dir_bh = NULL; |
| 1021 | struct buffer_head *new_dir_bh = NULL; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1022 | struct ocfs2_dir_entry *old_inode_dot_dot_de = NULL, *old_de = NULL, |
| 1023 | *new_de = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1024 | struct buffer_head *new_de_bh = NULL, *old_de_bh = NULL; // bhs for above |
| 1025 | struct buffer_head *old_inode_de_bh = NULL; // if old_dentry is a dir, |
| 1026 | // this is the 1st dirent bh |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1027 | nlink_t old_dir_nlink = old_dir->i_nlink; |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1028 | struct ocfs2_dinode *old_di; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1029 | |
| 1030 | /* At some point it might be nice to break this function up a |
| 1031 | * bit. */ |
| 1032 | |
| 1033 | mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p, from='%.*s' to='%.*s')\n", |
| 1034 | old_dir, old_dentry, new_dir, new_dentry, |
| 1035 | old_dentry->d_name.len, old_dentry->d_name.name, |
| 1036 | new_dentry->d_name.len, new_dentry->d_name.name); |
| 1037 | |
| 1038 | osb = OCFS2_SB(old_dir->i_sb); |
| 1039 | |
| 1040 | if (new_inode) { |
| 1041 | if (!igrab(new_inode)) |
| 1042 | BUG(); |
| 1043 | } |
| 1044 | |
Uwe Kleine-König | 1b3c371 | 2007-02-17 19:23:03 +0100 | [diff] [blame] | 1045 | /* Assume a directory hierarchy thusly: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1046 | * a/b/c |
| 1047 | * a/d |
| 1048 | * a,b,c, and d are all directories. |
| 1049 | * |
| 1050 | * from cwd of 'a' on both nodes: |
| 1051 | * node1: mv b/c d |
| 1052 | * node2: mv d b/c |
| 1053 | * |
| 1054 | * And that's why, just like the VFS, we need a file system |
| 1055 | * rename lock. */ |
Jan Kara | 5dabd69 | 2008-02-21 18:00:00 +0100 | [diff] [blame] | 1056 | if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1057 | status = ocfs2_rename_lock(osb); |
| 1058 | if (status < 0) { |
| 1059 | mlog_errno(status); |
| 1060 | goto bail; |
| 1061 | } |
| 1062 | rename_lock = 1; |
| 1063 | } |
| 1064 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1065 | /* if old and new are the same, this'll just do one lock. */ |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1066 | status = ocfs2_double_lock(osb, &old_dir_bh, old_dir, |
| 1067 | &new_dir_bh, new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1068 | if (status < 0) { |
| 1069 | mlog_errno(status); |
| 1070 | goto bail; |
| 1071 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1072 | parents_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1073 | |
| 1074 | /* make sure both dirs have bhs |
| 1075 | * get an extra ref on old_dir_bh if old==new */ |
| 1076 | if (!new_dir_bh) { |
| 1077 | if (old_dir_bh) { |
| 1078 | new_dir_bh = old_dir_bh; |
| 1079 | get_bh(new_dir_bh); |
| 1080 | } else { |
| 1081 | mlog(ML_ERROR, "no old_dir_bh!\n"); |
| 1082 | status = -EIO; |
| 1083 | goto bail; |
| 1084 | } |
| 1085 | } |
| 1086 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1087 | /* |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1088 | * Aside from allowing a meta data update, the locking here |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1089 | * also ensures that the downconvert thread on other nodes |
| 1090 | * won't have to concurrently downconvert the inode and the |
| 1091 | * dentry locks. |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1092 | */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1093 | status = ocfs2_inode_lock(old_inode, &old_inode_bh, 1); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1094 | if (status < 0) { |
| 1095 | if (status != -ENOENT) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1096 | mlog_errno(status); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1097 | goto bail; |
| 1098 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1099 | old_child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1100 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1101 | status = ocfs2_remote_dentry_delete(old_dentry); |
| 1102 | if (status < 0) { |
| 1103 | mlog_errno(status); |
| 1104 | goto bail; |
| 1105 | } |
| 1106 | |
| 1107 | if (S_ISDIR(old_inode->i_mode)) { |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1108 | u64 old_inode_parent; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1109 | |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1110 | status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent, |
| 1111 | old_inode, &old_inode_de_bh, |
| 1112 | &old_inode_dot_dot_de); |
| 1113 | if (status) { |
| 1114 | status = -EIO; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1115 | goto bail; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) { |
| 1119 | status = -EIO; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1120 | goto bail; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | if (!new_inode && new_dir != old_dir && |
| 1124 | new_dir->i_nlink >= OCFS2_LINK_MAX) { |
| 1125 | status = -EMLINK; |
| 1126 | goto bail; |
| 1127 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1128 | } |
| 1129 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1130 | status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name, |
| 1131 | old_dentry->d_name.len, |
| 1132 | &old_de_ino); |
| 1133 | if (status) { |
| 1134 | status = -ENOENT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1135 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1136 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1137 | |
| 1138 | /* |
| 1139 | * Check for inode number is _not_ due to possible IO errors. |
| 1140 | * We might rmdir the source, keep it as pwd of some process |
| 1141 | * and merrily kill the link to whatever was created under the |
| 1142 | * same name. Goodbye sticky bit ;-< |
| 1143 | */ |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1144 | if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) { |
| 1145 | status = -ENOENT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1146 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1147 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1148 | |
| 1149 | /* check if the target already exists (in which case we need |
| 1150 | * to delete it */ |
| 1151 | status = ocfs2_find_files_on_disk(new_dentry->d_name.name, |
| 1152 | new_dentry->d_name.len, |
| 1153 | &newfe_blkno, new_dir, &new_de_bh, |
| 1154 | &new_de); |
| 1155 | /* The only error we allow here is -ENOENT because the new |
| 1156 | * file not existing is perfectly valid. */ |
| 1157 | if ((status < 0) && (status != -ENOENT)) { |
| 1158 | /* If we cannot find the file specified we should just */ |
| 1159 | /* return the error... */ |
| 1160 | mlog_errno(status); |
| 1161 | goto bail; |
| 1162 | } |
| 1163 | |
Srinivas Eeda | e325a88 | 2007-10-31 16:49:43 -0700 | [diff] [blame] | 1164 | if (!new_de && new_inode) { |
| 1165 | /* |
| 1166 | * Target was unlinked by another node while we were |
| 1167 | * waiting to get to ocfs2_rename(). There isn't |
| 1168 | * anything we can do here to help the situation, so |
| 1169 | * bubble up the appropriate error. |
| 1170 | */ |
| 1171 | status = -ENOENT; |
| 1172 | goto bail; |
| 1173 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1174 | |
| 1175 | /* In case we need to overwrite an existing file, we blow it |
| 1176 | * away first */ |
| 1177 | if (new_de) { |
| 1178 | /* VFS didn't think there existed an inode here, but |
| 1179 | * someone else in the cluster must have raced our |
| 1180 | * rename to create one. Today we error cleanly, in |
| 1181 | * the future we should consider calling iget to build |
| 1182 | * a new struct inode for this entry. */ |
| 1183 | if (!new_inode) { |
| 1184 | status = -EACCES; |
| 1185 | |
| 1186 | mlog(0, "We found an inode for name %.*s but VFS " |
| 1187 | "didn't give us one.\n", new_dentry->d_name.len, |
| 1188 | new_dentry->d_name.name); |
| 1189 | goto bail; |
| 1190 | } |
| 1191 | |
| 1192 | if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) { |
| 1193 | status = -EACCES; |
| 1194 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1195 | mlog(0, "Inode %llu and dir %llu disagree. flags = %x\n", |
| 1196 | (unsigned long long)OCFS2_I(new_inode)->ip_blkno, |
| 1197 | (unsigned long long)newfe_blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1198 | OCFS2_I(new_inode)->ip_flags); |
| 1199 | goto bail; |
| 1200 | } |
| 1201 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1202 | status = ocfs2_inode_lock(new_inode, &newfe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1203 | if (status < 0) { |
| 1204 | if (status != -ENOENT) |
| 1205 | mlog_errno(status); |
| 1206 | goto bail; |
| 1207 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1208 | new_child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1209 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1210 | status = ocfs2_remote_dentry_delete(new_dentry); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1211 | if (status < 0) { |
| 1212 | mlog_errno(status); |
| 1213 | goto bail; |
| 1214 | } |
| 1215 | |
| 1216 | newfe = (struct ocfs2_dinode *) newfe_bh->b_data; |
| 1217 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1218 | mlog(0, "aha rename over existing... new_de=%p new_blkno=%llu " |
| 1219 | "newfebh=%p bhblocknr=%llu\n", new_de, |
| 1220 | (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ? |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1221 | (unsigned long long)newfe_bh->b_blocknr : 0ULL); |
| 1222 | |
| 1223 | if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) { |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1224 | status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1225 | new_inode, |
| 1226 | orphan_name, |
| 1227 | &orphan_entry_bh); |
| 1228 | if (status < 0) { |
| 1229 | mlog_errno(status); |
| 1230 | goto bail; |
| 1231 | } |
| 1232 | } |
| 1233 | } else { |
| 1234 | BUG_ON(new_dentry->d_parent->d_inode != new_dir); |
| 1235 | |
| 1236 | status = ocfs2_check_dir_for_entry(new_dir, |
| 1237 | new_dentry->d_name.name, |
| 1238 | new_dentry->d_name.len); |
| 1239 | if (status) |
| 1240 | goto bail; |
| 1241 | |
| 1242 | status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh, |
| 1243 | new_dentry->d_name.name, |
| 1244 | new_dentry->d_name.len, |
| 1245 | &insert_entry_bh); |
| 1246 | if (status < 0) { |
| 1247 | mlog_errno(status); |
| 1248 | goto bail; |
| 1249 | } |
| 1250 | } |
| 1251 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1252 | handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1253 | if (IS_ERR(handle)) { |
| 1254 | status = PTR_ERR(handle); |
| 1255 | handle = NULL; |
| 1256 | mlog_errno(status); |
| 1257 | goto bail; |
| 1258 | } |
| 1259 | |
| 1260 | if (new_de) { |
| 1261 | if (S_ISDIR(new_inode->i_mode)) { |
| 1262 | if (!ocfs2_empty_dir(new_inode) || |
| 1263 | new_inode->i_nlink != 2) { |
| 1264 | status = -ENOTEMPTY; |
| 1265 | goto bail; |
| 1266 | } |
| 1267 | } |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1268 | status = ocfs2_journal_access_di(handle, new_inode, newfe_bh, |
| 1269 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1270 | if (status < 0) { |
| 1271 | mlog_errno(status); |
| 1272 | goto bail; |
| 1273 | } |
| 1274 | |
| 1275 | if (S_ISDIR(new_inode->i_mode) || |
| 1276 | (newfe->i_links_count == cpu_to_le16(1))){ |
| 1277 | status = ocfs2_orphan_add(osb, handle, new_inode, |
| 1278 | newfe, orphan_name, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1279 | orphan_entry_bh, orphan_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1280 | if (status < 0) { |
| 1281 | mlog_errno(status); |
| 1282 | goto bail; |
| 1283 | } |
| 1284 | } |
| 1285 | |
| 1286 | /* change the dirent to point to the correct inode */ |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1287 | status = ocfs2_update_entry(new_dir, handle, new_de_bh, |
| 1288 | new_de, old_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1289 | if (status < 0) { |
| 1290 | mlog_errno(status); |
| 1291 | goto bail; |
| 1292 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1293 | new_dir->i_version++; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1294 | |
| 1295 | if (S_ISDIR(new_inode->i_mode)) |
| 1296 | newfe->i_links_count = 0; |
| 1297 | else |
| 1298 | le16_add_cpu(&newfe->i_links_count, -1); |
| 1299 | |
| 1300 | status = ocfs2_journal_dirty(handle, newfe_bh); |
| 1301 | if (status < 0) { |
| 1302 | mlog_errno(status); |
| 1303 | goto bail; |
| 1304 | } |
| 1305 | } else { |
| 1306 | /* if the name was not found in new_dir, add it now */ |
| 1307 | status = ocfs2_add_entry(handle, new_dentry, old_inode, |
| 1308 | OCFS2_I(old_inode)->ip_blkno, |
| 1309 | new_dir_bh, insert_entry_bh); |
| 1310 | } |
| 1311 | |
| 1312 | old_inode->i_ctime = CURRENT_TIME; |
| 1313 | mark_inode_dirty(old_inode); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1314 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1315 | status = ocfs2_journal_access_di(handle, old_inode, old_inode_bh, |
| 1316 | OCFS2_JOURNAL_ACCESS_WRITE); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1317 | if (status >= 0) { |
| 1318 | old_di = (struct ocfs2_dinode *) old_inode_bh->b_data; |
| 1319 | |
| 1320 | old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec); |
| 1321 | old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec); |
| 1322 | |
| 1323 | status = ocfs2_journal_dirty(handle, old_inode_bh); |
| 1324 | if (status < 0) |
| 1325 | mlog_errno(status); |
| 1326 | } else |
| 1327 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1328 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1329 | /* |
| 1330 | * Now that the name has been added to new_dir, remove the old name. |
| 1331 | * |
| 1332 | * We don't keep any directory entry context around until now |
| 1333 | * because the insert might have changed the type of directory |
| 1334 | * we're dealing with. |
| 1335 | */ |
| 1336 | old_de_bh = ocfs2_find_entry(old_dentry->d_name.name, |
| 1337 | old_dentry->d_name.len, |
| 1338 | old_dir, &old_de); |
| 1339 | if (!old_de_bh) { |
| 1340 | status = -EIO; |
| 1341 | goto bail; |
| 1342 | } |
| 1343 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1344 | status = ocfs2_delete_entry(handle, old_dir, old_de, old_de_bh); |
| 1345 | if (status < 0) { |
| 1346 | mlog_errno(status); |
| 1347 | goto bail; |
| 1348 | } |
| 1349 | |
| 1350 | if (new_inode) { |
| 1351 | new_inode->i_nlink--; |
| 1352 | new_inode->i_ctime = CURRENT_TIME; |
| 1353 | } |
| 1354 | old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME; |
| 1355 | if (old_inode_de_bh) { |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1356 | status = ocfs2_update_entry(old_inode, handle, old_inode_de_bh, |
| 1357 | old_inode_dot_dot_de, new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1358 | old_dir->i_nlink--; |
| 1359 | if (new_inode) { |
| 1360 | new_inode->i_nlink--; |
| 1361 | } else { |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 1362 | inc_nlink(new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1363 | mark_inode_dirty(new_dir); |
| 1364 | } |
| 1365 | } |
| 1366 | mark_inode_dirty(old_dir); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1367 | ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh); |
| 1368 | if (new_inode) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1369 | mark_inode_dirty(new_inode); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1370 | ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh); |
| 1371 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1372 | |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1373 | if (old_dir != new_dir) { |
| 1374 | /* Keep the same times on both directories.*/ |
| 1375 | new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime; |
| 1376 | |
| 1377 | /* |
| 1378 | * This will also pick up the i_nlink change from the |
| 1379 | * block above. |
| 1380 | */ |
| 1381 | ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh); |
| 1382 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1383 | |
| 1384 | if (old_dir_nlink != old_dir->i_nlink) { |
| 1385 | if (!old_dir_bh) { |
| 1386 | mlog(ML_ERROR, "need to change nlink for old dir " |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1387 | "%llu from %d to %d but bh is NULL!\n", |
| 1388 | (unsigned long long)OCFS2_I(old_dir)->ip_blkno, |
| 1389 | (int)old_dir_nlink, old_dir->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1390 | } else { |
| 1391 | struct ocfs2_dinode *fe; |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1392 | status = ocfs2_journal_access_di(handle, old_dir, |
| 1393 | old_dir_bh, |
| 1394 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1395 | fe = (struct ocfs2_dinode *) old_dir_bh->b_data; |
| 1396 | fe->i_links_count = cpu_to_le16(old_dir->i_nlink); |
| 1397 | status = ocfs2_journal_dirty(handle, old_dir_bh); |
| 1398 | } |
| 1399 | } |
| 1400 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1401 | ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1402 | status = 0; |
| 1403 | bail: |
| 1404 | if (rename_lock) |
| 1405 | ocfs2_rename_unlock(osb); |
| 1406 | |
| 1407 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 1408 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1409 | |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1410 | if (parents_locked) |
| 1411 | ocfs2_double_unlock(old_dir, new_dir); |
| 1412 | |
| 1413 | if (old_child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1414 | ocfs2_inode_unlock(old_inode, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1415 | |
| 1416 | if (new_child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1417 | ocfs2_inode_unlock(new_inode, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1418 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1419 | if (orphan_dir) { |
| 1420 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1421 | ocfs2_inode_unlock(orphan_dir, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1422 | mutex_unlock(&orphan_dir->i_mutex); |
| 1423 | iput(orphan_dir); |
| 1424 | } |
| 1425 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1426 | if (new_inode) |
| 1427 | sync_mapping_buffers(old_inode->i_mapping); |
| 1428 | |
| 1429 | if (new_inode) |
| 1430 | iput(new_inode); |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1431 | brelse(newfe_bh); |
| 1432 | brelse(old_inode_bh); |
| 1433 | brelse(old_dir_bh); |
| 1434 | brelse(new_dir_bh); |
| 1435 | brelse(new_de_bh); |
| 1436 | brelse(old_de_bh); |
| 1437 | brelse(old_inode_de_bh); |
| 1438 | brelse(orphan_entry_bh); |
| 1439 | brelse(insert_entry_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1440 | |
| 1441 | mlog_exit(status); |
| 1442 | |
| 1443 | return status; |
| 1444 | } |
| 1445 | |
| 1446 | /* |
| 1447 | * we expect i_size = strlen(symname). Copy symname into the file |
| 1448 | * data, including the null terminator. |
| 1449 | */ |
| 1450 | static int ocfs2_create_symlink_data(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1451 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1452 | struct inode *inode, |
| 1453 | const char *symname) |
| 1454 | { |
| 1455 | struct buffer_head **bhs = NULL; |
| 1456 | const char *c; |
| 1457 | struct super_block *sb = osb->sb; |
Mark Fasheh | 4f902c3 | 2007-03-09 16:26:50 -0800 | [diff] [blame] | 1458 | u64 p_blkno, p_blocks; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1459 | int virtual, blocks, status, i, bytes_left; |
| 1460 | |
| 1461 | bytes_left = i_size_read(inode) + 1; |
| 1462 | /* we can't trust i_blocks because we're actually going to |
| 1463 | * write i_size + 1 bytes. */ |
| 1464 | blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits; |
| 1465 | |
Andrew Morton | 5515eff | 2006-03-26 01:37:53 -0800 | [diff] [blame] | 1466 | mlog_entry("i_blocks = %llu, i_size = %llu, blocks = %d\n", |
| 1467 | (unsigned long long)inode->i_blocks, |
| 1468 | i_size_read(inode), blocks); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1469 | |
| 1470 | /* Sanity check -- make sure we're going to fit. */ |
| 1471 | if (bytes_left > |
| 1472 | ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) { |
| 1473 | status = -EIO; |
| 1474 | mlog_errno(status); |
| 1475 | goto bail; |
| 1476 | } |
| 1477 | |
| 1478 | bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL); |
| 1479 | if (!bhs) { |
| 1480 | status = -ENOMEM; |
| 1481 | mlog_errno(status); |
| 1482 | goto bail; |
| 1483 | } |
| 1484 | |
Mark Fasheh | 49cb8d2 | 2007-03-09 16:21:46 -0800 | [diff] [blame] | 1485 | status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks, |
| 1486 | NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1487 | if (status < 0) { |
| 1488 | mlog_errno(status); |
| 1489 | goto bail; |
| 1490 | } |
| 1491 | |
| 1492 | /* links can never be larger than one cluster so we know this |
| 1493 | * is all going to be contiguous, but do a sanity check |
| 1494 | * anyway. */ |
| 1495 | if ((p_blocks << sb->s_blocksize_bits) < bytes_left) { |
| 1496 | status = -EIO; |
| 1497 | mlog_errno(status); |
| 1498 | goto bail; |
| 1499 | } |
| 1500 | |
| 1501 | virtual = 0; |
| 1502 | while(bytes_left > 0) { |
| 1503 | c = &symname[virtual * sb->s_blocksize]; |
| 1504 | |
| 1505 | bhs[virtual] = sb_getblk(sb, p_blkno); |
| 1506 | if (!bhs[virtual]) { |
| 1507 | status = -ENOMEM; |
| 1508 | mlog_errno(status); |
| 1509 | goto bail; |
| 1510 | } |
| 1511 | ocfs2_set_new_buffer_uptodate(inode, bhs[virtual]); |
| 1512 | |
| 1513 | status = ocfs2_journal_access(handle, inode, bhs[virtual], |
| 1514 | OCFS2_JOURNAL_ACCESS_CREATE); |
| 1515 | if (status < 0) { |
| 1516 | mlog_errno(status); |
| 1517 | goto bail; |
| 1518 | } |
| 1519 | |
| 1520 | memset(bhs[virtual]->b_data, 0, sb->s_blocksize); |
| 1521 | |
| 1522 | memcpy(bhs[virtual]->b_data, c, |
| 1523 | (bytes_left > sb->s_blocksize) ? sb->s_blocksize : |
| 1524 | bytes_left); |
| 1525 | |
| 1526 | status = ocfs2_journal_dirty(handle, bhs[virtual]); |
| 1527 | if (status < 0) { |
| 1528 | mlog_errno(status); |
| 1529 | goto bail; |
| 1530 | } |
| 1531 | |
| 1532 | virtual++; |
| 1533 | p_blkno++; |
| 1534 | bytes_left -= sb->s_blocksize; |
| 1535 | } |
| 1536 | |
| 1537 | status = 0; |
| 1538 | bail: |
| 1539 | |
| 1540 | if (bhs) { |
| 1541 | for(i = 0; i < blocks; i++) |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1542 | brelse(bhs[i]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1543 | kfree(bhs); |
| 1544 | } |
| 1545 | |
| 1546 | mlog_exit(status); |
| 1547 | return status; |
| 1548 | } |
| 1549 | |
| 1550 | static int ocfs2_symlink(struct inode *dir, |
| 1551 | struct dentry *dentry, |
| 1552 | const char *symname) |
| 1553 | { |
| 1554 | int status, l, credits; |
| 1555 | u64 newsize; |
| 1556 | struct ocfs2_super *osb = NULL; |
| 1557 | struct inode *inode = NULL; |
| 1558 | struct super_block *sb; |
| 1559 | struct buffer_head *new_fe_bh = NULL; |
| 1560 | struct buffer_head *de_bh = NULL; |
| 1561 | struct buffer_head *parent_fe_bh = NULL; |
| 1562 | struct ocfs2_dinode *fe = NULL; |
| 1563 | struct ocfs2_dinode *dirfe; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1564 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1565 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 1566 | struct ocfs2_alloc_context *data_ac = NULL; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1567 | struct ocfs2_alloc_context *xattr_ac = NULL; |
| 1568 | int want_clusters = 0; |
| 1569 | int xattr_credits = 0; |
| 1570 | struct ocfs2_security_xattr_info si = { |
| 1571 | .enable = 1, |
| 1572 | }; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1573 | int did_quota = 0, did_quota_inode = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1574 | |
| 1575 | mlog_entry("(0x%p, 0x%p, symname='%s' actual='%.*s')\n", dir, |
| 1576 | dentry, symname, dentry->d_name.len, dentry->d_name.name); |
| 1577 | |
| 1578 | sb = dir->i_sb; |
| 1579 | osb = OCFS2_SB(sb); |
| 1580 | |
| 1581 | l = strlen(symname) + 1; |
| 1582 | |
| 1583 | credits = ocfs2_calc_symlink_credits(sb); |
| 1584 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1585 | /* lock the parent directory */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1586 | status = ocfs2_inode_lock(dir, &parent_fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1587 | if (status < 0) { |
| 1588 | if (status != -ENOENT) |
| 1589 | mlog_errno(status); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1590 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1591 | } |
| 1592 | |
| 1593 | dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data; |
| 1594 | if (!dirfe->i_links_count) { |
| 1595 | /* can't make a file in a deleted directory. */ |
| 1596 | status = -ENOENT; |
| 1597 | goto bail; |
| 1598 | } |
| 1599 | |
| 1600 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 1601 | dentry->d_name.len); |
| 1602 | if (status) |
| 1603 | goto bail; |
| 1604 | |
| 1605 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 1606 | dentry->d_name.name, |
| 1607 | dentry->d_name.len, &de_bh); |
| 1608 | if (status < 0) { |
| 1609 | mlog_errno(status); |
| 1610 | goto bail; |
| 1611 | } |
| 1612 | |
Mark Fasheh | da5cbf2 | 2006-10-06 18:34:35 -0700 | [diff] [blame] | 1613 | status = ocfs2_reserve_new_inode(osb, &inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1614 | if (status < 0) { |
| 1615 | if (status != -ENOSPC) |
| 1616 | mlog_errno(status); |
| 1617 | goto bail; |
| 1618 | } |
| 1619 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1620 | inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO); |
| 1621 | if (!inode) { |
| 1622 | status = -ENOMEM; |
| 1623 | mlog_errno(status); |
| 1624 | goto bail; |
| 1625 | } |
| 1626 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1627 | /* get security xattr */ |
| 1628 | status = ocfs2_init_security_get(inode, dir, &si); |
| 1629 | if (status) { |
| 1630 | if (status == -EOPNOTSUPP) |
| 1631 | si.enable = 0; |
| 1632 | else { |
| 1633 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1634 | goto bail; |
| 1635 | } |
| 1636 | } |
| 1637 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1638 | /* calculate meta data/clusters for setting security xattr */ |
| 1639 | if (si.enable) { |
| 1640 | status = ocfs2_calc_security_init(dir, &si, &want_clusters, |
| 1641 | &xattr_credits, &xattr_ac); |
| 1642 | if (status < 0) { |
| 1643 | mlog_errno(status); |
| 1644 | goto bail; |
| 1645 | } |
| 1646 | } |
| 1647 | |
| 1648 | /* don't reserve bitmap space for fast symlinks. */ |
| 1649 | if (l > ocfs2_fast_symlink_chars(sb)) |
| 1650 | want_clusters += 1; |
| 1651 | |
| 1652 | status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac); |
| 1653 | if (status < 0) { |
| 1654 | if (status != -ENOSPC) |
| 1655 | mlog_errno(status); |
| 1656 | goto bail; |
| 1657 | } |
| 1658 | |
| 1659 | handle = ocfs2_start_trans(osb, credits + xattr_credits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1660 | if (IS_ERR(handle)) { |
| 1661 | status = PTR_ERR(handle); |
| 1662 | handle = NULL; |
| 1663 | mlog_errno(status); |
| 1664 | goto bail; |
| 1665 | } |
| 1666 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1667 | /* We don't use standard VFS wrapper because we don't want vfs_dq_init |
| 1668 | * to be called. */ |
| 1669 | if (sb_any_quota_active(osb->sb) && |
| 1670 | osb->sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) { |
| 1671 | status = -EDQUOT; |
| 1672 | goto bail; |
| 1673 | } |
| 1674 | did_quota_inode = 1; |
| 1675 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1676 | status = ocfs2_mknod_locked(osb, dir, inode, dentry, |
| 1677 | 0, &new_fe_bh, parent_fe_bh, handle, |
| 1678 | inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1679 | if (status < 0) { |
| 1680 | mlog_errno(status); |
| 1681 | goto bail; |
| 1682 | } |
| 1683 | |
| 1684 | fe = (struct ocfs2_dinode *) new_fe_bh->b_data; |
| 1685 | inode->i_rdev = 0; |
| 1686 | newsize = l - 1; |
| 1687 | if (l > ocfs2_fast_symlink_chars(sb)) { |
Mark Fasheh | dcd0538 | 2007-01-16 11:32:23 -0800 | [diff] [blame] | 1688 | u32 offset = 0; |
| 1689 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1690 | inode->i_op = &ocfs2_symlink_inode_operations; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1691 | if (vfs_dq_alloc_space_nodirty(inode, |
| 1692 | ocfs2_clusters_to_bytes(osb->sb, 1))) { |
| 1693 | status = -EDQUOT; |
| 1694 | goto bail; |
| 1695 | } |
| 1696 | did_quota = 1; |
Tao Ma | 0eb8d47 | 2008-08-18 17:38:45 +0800 | [diff] [blame] | 1697 | status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0, |
| 1698 | new_fe_bh, |
| 1699 | handle, data_ac, NULL, |
| 1700 | NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1701 | if (status < 0) { |
| 1702 | if (status != -ENOSPC && status != -EINTR) { |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1703 | mlog(ML_ERROR, |
| 1704 | "Failed to extend file to %llu\n", |
| 1705 | (unsigned long long)newsize); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1706 | mlog_errno(status); |
| 1707 | status = -ENOSPC; |
| 1708 | } |
| 1709 | goto bail; |
| 1710 | } |
| 1711 | i_size_write(inode, newsize); |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 1712 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1713 | } else { |
| 1714 | inode->i_op = &ocfs2_fast_symlink_inode_operations; |
| 1715 | memcpy((char *) fe->id2.i_symlink, symname, l); |
| 1716 | i_size_write(inode, newsize); |
| 1717 | inode->i_blocks = 0; |
| 1718 | } |
| 1719 | |
| 1720 | status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh); |
| 1721 | if (status < 0) { |
| 1722 | mlog_errno(status); |
| 1723 | goto bail; |
| 1724 | } |
| 1725 | |
| 1726 | if (!ocfs2_inode_is_fast_symlink(inode)) { |
| 1727 | status = ocfs2_create_symlink_data(osb, handle, inode, |
| 1728 | symname); |
| 1729 | if (status < 0) { |
| 1730 | mlog_errno(status); |
| 1731 | goto bail; |
| 1732 | } |
| 1733 | } |
| 1734 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1735 | if (si.enable) { |
| 1736 | status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si, |
| 1737 | xattr_ac, data_ac); |
| 1738 | if (status < 0) { |
| 1739 | mlog_errno(status); |
| 1740 | goto bail; |
| 1741 | } |
| 1742 | } |
| 1743 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1744 | status = ocfs2_add_entry(handle, dentry, inode, |
| 1745 | le64_to_cpu(fe->i_blkno), parent_fe_bh, |
| 1746 | de_bh); |
| 1747 | if (status < 0) { |
| 1748 | mlog_errno(status); |
| 1749 | goto bail; |
| 1750 | } |
| 1751 | |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 1752 | status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1753 | if (status) { |
| 1754 | mlog_errno(status); |
| 1755 | goto bail; |
| 1756 | } |
| 1757 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1758 | insert_inode_hash(inode); |
| 1759 | dentry->d_op = &ocfs2_dentry_ops; |
| 1760 | d_instantiate(dentry, inode); |
| 1761 | bail: |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1762 | if (status < 0 && did_quota) |
| 1763 | vfs_dq_free_space_nodirty(inode, |
| 1764 | ocfs2_clusters_to_bytes(osb->sb, 1)); |
| 1765 | if (status < 0 && did_quota_inode) |
| 1766 | vfs_dq_free_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1767 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 1768 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1769 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1770 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1771 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1772 | brelse(new_fe_bh); |
| 1773 | brelse(parent_fe_bh); |
| 1774 | brelse(de_bh); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1775 | kfree(si.name); |
| 1776 | kfree(si.value); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1777 | if (inode_ac) |
| 1778 | ocfs2_free_alloc_context(inode_ac); |
| 1779 | if (data_ac) |
| 1780 | ocfs2_free_alloc_context(data_ac); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1781 | if (xattr_ac) |
| 1782 | ocfs2_free_alloc_context(xattr_ac); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1783 | if ((status < 0) && inode) { |
| 1784 | clear_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1785 | iput(inode); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1786 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1787 | |
| 1788 | mlog_exit(status); |
| 1789 | |
| 1790 | return status; |
| 1791 | } |
| 1792 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1793 | static int ocfs2_blkno_stringify(u64 blkno, char *name) |
| 1794 | { |
| 1795 | int status, namelen; |
| 1796 | |
| 1797 | mlog_entry_void(); |
| 1798 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1799 | namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx", |
| 1800 | (long long)blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1801 | if (namelen <= 0) { |
| 1802 | if (namelen) |
| 1803 | status = namelen; |
| 1804 | else |
| 1805 | status = -EINVAL; |
| 1806 | mlog_errno(status); |
| 1807 | goto bail; |
| 1808 | } |
| 1809 | if (namelen != OCFS2_ORPHAN_NAMELEN) { |
| 1810 | status = -EINVAL; |
| 1811 | mlog_errno(status); |
| 1812 | goto bail; |
| 1813 | } |
| 1814 | |
| 1815 | mlog(0, "built filename '%s' for orphan dir (len=%d)\n", name, |
| 1816 | namelen); |
| 1817 | |
| 1818 | status = 0; |
| 1819 | bail: |
| 1820 | mlog_exit(status); |
| 1821 | return status; |
| 1822 | } |
| 1823 | |
| 1824 | static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1825 | struct inode **ret_orphan_dir, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1826 | struct inode *inode, |
| 1827 | char *name, |
| 1828 | struct buffer_head **de_bh) |
| 1829 | { |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1830 | struct inode *orphan_dir_inode; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1831 | struct buffer_head *orphan_dir_bh = NULL; |
| 1832 | int status = 0; |
| 1833 | |
| 1834 | status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name); |
| 1835 | if (status < 0) { |
| 1836 | mlog_errno(status); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1837 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1838 | } |
| 1839 | |
| 1840 | orphan_dir_inode = ocfs2_get_system_file_inode(osb, |
| 1841 | ORPHAN_DIR_SYSTEM_INODE, |
| 1842 | osb->slot_num); |
| 1843 | if (!orphan_dir_inode) { |
| 1844 | status = -ENOENT; |
| 1845 | mlog_errno(status); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1846 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1847 | } |
| 1848 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1849 | mutex_lock(&orphan_dir_inode->i_mutex); |
| 1850 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1851 | status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1852 | if (status < 0) { |
| 1853 | mlog_errno(status); |
| 1854 | goto leave; |
| 1855 | } |
| 1856 | |
| 1857 | status = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode, |
| 1858 | orphan_dir_bh, name, |
| 1859 | OCFS2_ORPHAN_NAMELEN, de_bh); |
| 1860 | if (status < 0) { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1861 | ocfs2_inode_unlock(orphan_dir_inode, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1862 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1863 | mlog_errno(status); |
| 1864 | goto leave; |
| 1865 | } |
| 1866 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1867 | *ret_orphan_dir = orphan_dir_inode; |
| 1868 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1869 | leave: |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1870 | if (status) { |
| 1871 | mutex_unlock(&orphan_dir_inode->i_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1872 | iput(orphan_dir_inode); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1873 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1874 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1875 | brelse(orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1876 | |
| 1877 | mlog_exit(status); |
| 1878 | return status; |
| 1879 | } |
| 1880 | |
| 1881 | static int ocfs2_orphan_add(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1882 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1883 | struct inode *inode, |
| 1884 | struct ocfs2_dinode *fe, |
| 1885 | char *name, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1886 | struct buffer_head *de_bh, |
| 1887 | struct inode *orphan_dir_inode) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1888 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1889 | struct buffer_head *orphan_dir_bh = NULL; |
| 1890 | int status = 0; |
| 1891 | struct ocfs2_dinode *orphan_fe; |
| 1892 | |
| 1893 | mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino); |
| 1894 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 1895 | status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1896 | if (status < 0) { |
| 1897 | mlog_errno(status); |
| 1898 | goto leave; |
| 1899 | } |
| 1900 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1901 | status = ocfs2_journal_access_di(handle, orphan_dir_inode, orphan_dir_bh, |
| 1902 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1903 | if (status < 0) { |
| 1904 | mlog_errno(status); |
| 1905 | goto leave; |
| 1906 | } |
| 1907 | |
| 1908 | /* we're a cluster, and nlink can change on disk from |
| 1909 | * underneath us... */ |
| 1910 | orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data; |
| 1911 | if (S_ISDIR(inode->i_mode)) |
| 1912 | le16_add_cpu(&orphan_fe->i_links_count, 1); |
| 1913 | orphan_dir_inode->i_nlink = le16_to_cpu(orphan_fe->i_links_count); |
| 1914 | |
| 1915 | status = ocfs2_journal_dirty(handle, orphan_dir_bh); |
| 1916 | if (status < 0) { |
| 1917 | mlog_errno(status); |
| 1918 | goto leave; |
| 1919 | } |
| 1920 | |
| 1921 | status = __ocfs2_add_entry(handle, orphan_dir_inode, name, |
| 1922 | OCFS2_ORPHAN_NAMELEN, inode, |
| 1923 | OCFS2_I(inode)->ip_blkno, |
| 1924 | orphan_dir_bh, de_bh); |
| 1925 | if (status < 0) { |
| 1926 | mlog_errno(status); |
| 1927 | goto leave; |
| 1928 | } |
| 1929 | |
| 1930 | le32_add_cpu(&fe->i_flags, OCFS2_ORPHANED_FL); |
| 1931 | |
| 1932 | /* Record which orphan dir our inode now resides |
| 1933 | * in. delete_inode will use this to determine which orphan |
| 1934 | * dir to lock. */ |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1935 | fe->i_orphaned_slot = cpu_to_le16(osb->slot_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1936 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1937 | mlog(0, "Inode %llu orphaned in slot %d\n", |
| 1938 | (unsigned long long)OCFS2_I(inode)->ip_blkno, osb->slot_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1939 | |
| 1940 | leave: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1941 | brelse(orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1942 | |
| 1943 | mlog_exit(status); |
| 1944 | return status; |
| 1945 | } |
| 1946 | |
| 1947 | /* unlike orphan_add, we expect the orphan dir to already be locked here. */ |
| 1948 | int ocfs2_orphan_del(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1949 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1950 | struct inode *orphan_dir_inode, |
| 1951 | struct inode *inode, |
| 1952 | struct buffer_head *orphan_dir_bh) |
| 1953 | { |
| 1954 | char name[OCFS2_ORPHAN_NAMELEN + 1]; |
| 1955 | struct ocfs2_dinode *orphan_fe; |
| 1956 | int status = 0; |
| 1957 | struct buffer_head *target_de_bh = NULL; |
| 1958 | struct ocfs2_dir_entry *target_de = NULL; |
| 1959 | |
| 1960 | mlog_entry_void(); |
| 1961 | |
| 1962 | status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name); |
| 1963 | if (status < 0) { |
| 1964 | mlog_errno(status); |
| 1965 | goto leave; |
| 1966 | } |
| 1967 | |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1968 | mlog(0, "removing '%s' from orphan dir %llu (namelen=%d)\n", |
| 1969 | name, (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno, |
| 1970 | OCFS2_ORPHAN_NAMELEN); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1971 | |
| 1972 | /* find it's spot in the orphan directory */ |
| 1973 | target_de_bh = ocfs2_find_entry(name, OCFS2_ORPHAN_NAMELEN, |
| 1974 | orphan_dir_inode, &target_de); |
| 1975 | if (!target_de_bh) { |
| 1976 | status = -ENOENT; |
| 1977 | mlog_errno(status); |
| 1978 | goto leave; |
| 1979 | } |
| 1980 | |
| 1981 | /* remove it from the orphan directory */ |
| 1982 | status = ocfs2_delete_entry(handle, orphan_dir_inode, target_de, |
| 1983 | target_de_bh); |
| 1984 | if (status < 0) { |
| 1985 | mlog_errno(status); |
| 1986 | goto leave; |
| 1987 | } |
| 1988 | |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1989 | status = ocfs2_journal_access_di(handle,orphan_dir_inode, orphan_dir_bh, |
| 1990 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1991 | if (status < 0) { |
| 1992 | mlog_errno(status); |
| 1993 | goto leave; |
| 1994 | } |
| 1995 | |
| 1996 | /* do the i_nlink dance! :) */ |
| 1997 | orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data; |
| 1998 | if (S_ISDIR(inode->i_mode)) |
| 1999 | le16_add_cpu(&orphan_fe->i_links_count, -1); |
| 2000 | orphan_dir_inode->i_nlink = le16_to_cpu(orphan_fe->i_links_count); |
| 2001 | |
| 2002 | status = ocfs2_journal_dirty(handle, orphan_dir_bh); |
| 2003 | if (status < 0) { |
| 2004 | mlog_errno(status); |
| 2005 | goto leave; |
| 2006 | } |
| 2007 | |
| 2008 | leave: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 2009 | brelse(target_de_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2010 | |
| 2011 | mlog_exit(status); |
| 2012 | return status; |
| 2013 | } |
| 2014 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 2015 | const struct inode_operations ocfs2_dir_iops = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2016 | .create = ocfs2_create, |
| 2017 | .lookup = ocfs2_lookup, |
| 2018 | .link = ocfs2_link, |
| 2019 | .unlink = ocfs2_unlink, |
| 2020 | .rmdir = ocfs2_unlink, |
| 2021 | .symlink = ocfs2_symlink, |
| 2022 | .mkdir = ocfs2_mkdir, |
| 2023 | .mknod = ocfs2_mknod, |
| 2024 | .rename = ocfs2_rename, |
| 2025 | .setattr = ocfs2_setattr, |
| 2026 | .getattr = ocfs2_getattr, |
Tiger Yang | d38eb8d | 2006-11-27 09:59:21 +0800 | [diff] [blame] | 2027 | .permission = ocfs2_permission, |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 2028 | .setxattr = generic_setxattr, |
| 2029 | .getxattr = generic_getxattr, |
| 2030 | .listxattr = ocfs2_listxattr, |
| 2031 | .removexattr = generic_removexattr, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2032 | }; |