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 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 45 | #include <cluster/masklog.h> |
| 46 | |
| 47 | #include "ocfs2.h" |
| 48 | |
| 49 | #include "alloc.h" |
| 50 | #include "dcache.h" |
| 51 | #include "dir.h" |
| 52 | #include "dlmglue.h" |
| 53 | #include "extent_map.h" |
| 54 | #include "file.h" |
| 55 | #include "inode.h" |
| 56 | #include "journal.h" |
| 57 | #include "namei.h" |
| 58 | #include "suballoc.h" |
Mark Fasheh | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 59 | #include "super.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 60 | #include "symlink.h" |
| 61 | #include "sysfile.h" |
| 62 | #include "uptodate.h" |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 63 | #include "xattr.h" |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 64 | #include "acl.h" |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 65 | #include "ocfs2_trace.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, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 72 | dev_t dev, |
| 73 | struct buffer_head **new_fe_bh, |
| 74 | struct buffer_head *parent_fe_bh, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 75 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 76 | struct ocfs2_alloc_context *inode_ac); |
| 77 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 78 | static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 79 | struct inode **ret_orphan_dir, |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 80 | u64 blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 81 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 82 | struct ocfs2_dir_lookup_result *lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 83 | |
| 84 | static int ocfs2_orphan_add(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 85 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 86 | struct inode *inode, |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 87 | struct buffer_head *fe_bh, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 88 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 89 | struct ocfs2_dir_lookup_result *lookup, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 90 | struct inode *orphan_dir_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 91 | |
| 92 | static int ocfs2_create_symlink_data(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 93 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 94 | struct inode *inode, |
| 95 | const char *symname); |
| 96 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 97 | /* An orphan dir name is an 8 byte value, printed as a hex string */ |
| 98 | #define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64))) |
| 99 | |
| 100 | static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 101 | unsigned int flags) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 102 | { |
| 103 | int status; |
| 104 | u64 blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 105 | struct inode *inode = NULL; |
| 106 | struct dentry *ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 107 | struct ocfs2_inode_info *oi; |
| 108 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 109 | trace_ocfs2_lookup(dir, dentry, dentry->d_name.len, |
| 110 | dentry->d_name.name, |
| 111 | (unsigned long long)OCFS2_I(dir)->ip_blkno, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 112 | |
| 113 | if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) { |
| 114 | ret = ERR_PTR(-ENAMETOOLONG); |
| 115 | goto bail; |
| 116 | } |
| 117 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 118 | status = ocfs2_inode_lock_nested(dir, NULL, 0, OI_LS_PARENT); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 119 | if (status < 0) { |
| 120 | if (status != -ENOENT) |
| 121 | mlog_errno(status); |
| 122 | ret = ERR_PTR(status); |
| 123 | goto bail; |
| 124 | } |
| 125 | |
Mark Fasheh | be94d11 | 2007-09-11 15:22:06 -0700 | [diff] [blame] | 126 | status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name, |
| 127 | dentry->d_name.len, &blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 128 | if (status < 0) |
| 129 | goto bail_add; |
| 130 | |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 131 | inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 132 | if (IS_ERR(inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 133 | ret = ERR_PTR(-EACCES); |
| 134 | goto bail_unlock; |
| 135 | } |
| 136 | |
| 137 | oi = OCFS2_I(inode); |
| 138 | /* Clear any orphaned state... If we were able to look up the |
| 139 | * inode from a directory, it certainly can't be orphaned. We |
| 140 | * might have the bad state from a node which intended to |
| 141 | * orphan this inode but crashed before it could commit the |
| 142 | * unlink. */ |
| 143 | spin_lock(&oi->ip_lock); |
| 144 | oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 145 | spin_unlock(&oi->ip_lock); |
| 146 | |
| 147 | bail_add: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 148 | ret = d_splice_alias(inode, dentry); |
| 149 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 150 | if (inode) { |
| 151 | /* |
| 152 | * If d_splice_alias() finds a DCACHE_DISCONNECTED |
| 153 | * dentry, it will d_move() it on top of ourse. The |
| 154 | * return value will indicate this however, so in |
| 155 | * those cases, we switch them around for the locking |
| 156 | * code. |
| 157 | * |
| 158 | * NOTE: This dentry already has ->d_op set from |
| 159 | * ocfs2_get_parent() and ocfs2_get_dentry() |
| 160 | */ |
| 161 | if (ret) |
| 162 | dentry = ret; |
| 163 | |
| 164 | status = ocfs2_dentry_attach_lock(dentry, inode, |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 165 | OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 166 | if (status) { |
| 167 | mlog_errno(status); |
| 168 | ret = ERR_PTR(status); |
| 169 | goto bail_unlock; |
| 170 | } |
Goldwyn Rodrigues | 5e98d49 | 2010-06-28 10:04:32 -0500 | [diff] [blame] | 171 | } else |
| 172 | ocfs2_dentry_attach_gen(dentry); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 173 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 174 | bail_unlock: |
| 175 | /* Don't drop the cluster lock until *after* the d_add -- |
| 176 | * unlink on another node will message us to remove that |
| 177 | * dentry under this lock so otherwise we can race this with |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 178 | * the downconvert thread and have a stale dentry. */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 179 | ocfs2_inode_unlock(dir, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 180 | |
| 181 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 182 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 183 | trace_ocfs2_lookup_ret(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 184 | |
| 185 | return ret; |
| 186 | } |
| 187 | |
Al Viro | 67697cb | 2011-07-26 02:55:32 -0400 | [diff] [blame] | 188 | static struct inode *ocfs2_get_init_inode(struct inode *dir, umode_t mode) |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 189 | { |
| 190 | struct inode *inode; |
| 191 | |
| 192 | inode = new_inode(dir->i_sb); |
| 193 | if (!inode) { |
| 194 | mlog(ML_ERROR, "new_inode failed!\n"); |
| 195 | return NULL; |
| 196 | } |
| 197 | |
| 198 | /* populate as many fields early on as possible - many of |
| 199 | * these are used by the support functions here and in |
| 200 | * callers. */ |
| 201 | if (S_ISDIR(mode)) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 202 | set_nlink(inode, 2); |
Dmitry Monakhov | 75fe0a2 | 2010-03-04 17:32:16 +0300 | [diff] [blame] | 203 | inode_init_owner(inode, dir, mode); |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 204 | dquot_initialize(inode); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 205 | return inode; |
| 206 | } |
| 207 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 208 | static int ocfs2_mknod(struct inode *dir, |
| 209 | struct dentry *dentry, |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 210 | umode_t mode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 211 | dev_t dev) |
| 212 | { |
| 213 | int status = 0; |
| 214 | struct buffer_head *parent_fe_bh = NULL; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 215 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 216 | struct ocfs2_super *osb; |
| 217 | struct ocfs2_dinode *dirfe; |
| 218 | struct buffer_head *new_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 219 | struct inode *inode = NULL; |
| 220 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 221 | struct ocfs2_alloc_context *data_ac = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 222 | struct ocfs2_alloc_context *meta_ac = NULL; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 223 | int want_clusters = 0; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 224 | int want_meta = 0; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 225 | int xattr_credits = 0; |
| 226 | struct ocfs2_security_xattr_info si = { |
| 227 | .enable = 1, |
| 228 | }; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 229 | int did_quota_inode = 0; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 230 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 231 | sigset_t oldset; |
| 232 | int did_block_signals = 0; |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 233 | struct posix_acl *default_acl = NULL, *acl = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 234 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 235 | trace_ocfs2_mknod(dir, dentry, dentry->d_name.len, dentry->d_name.name, |
| 236 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 237 | (unsigned long)dev, mode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 238 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 239 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 240 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 241 | /* get our super block */ |
| 242 | osb = OCFS2_SB(dir->i_sb); |
| 243 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 244 | status = ocfs2_inode_lock(dir, &parent_fe_bh, 1); |
Mark Fasheh | e3a8213 | 2006-10-05 16:04:17 -0700 | [diff] [blame] | 245 | if (status < 0) { |
| 246 | if (status != -ENOENT) |
| 247 | mlog_errno(status); |
| 248 | return status; |
| 249 | } |
| 250 | |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 251 | if (S_ISDIR(mode) && (dir->i_nlink >= ocfs2_link_max(osb))) { |
Mark Fasheh | a663e30 | 2006-08-09 11:45:07 -0700 | [diff] [blame] | 252 | status = -EMLINK; |
| 253 | goto leave; |
| 254 | } |
| 255 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 256 | dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 257 | if (!ocfs2_read_links_count(dirfe)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 258 | /* can't make a file in a deleted directory. */ |
| 259 | status = -ENOENT; |
| 260 | goto leave; |
| 261 | } |
| 262 | |
| 263 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 264 | dentry->d_name.len); |
| 265 | if (status) |
| 266 | goto leave; |
| 267 | |
| 268 | /* get a spot inside the dir. */ |
| 269 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 270 | dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 271 | dentry->d_name.len, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 272 | if (status < 0) { |
| 273 | mlog_errno(status); |
| 274 | goto leave; |
| 275 | } |
| 276 | |
| 277 | /* reserve an inode spot */ |
Mark Fasheh | da5cbf2 | 2006-10-06 18:34:35 -0700 | [diff] [blame] | 278 | status = ocfs2_reserve_new_inode(osb, &inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 279 | if (status < 0) { |
| 280 | if (status != -ENOSPC) |
| 281 | mlog_errno(status); |
| 282 | goto leave; |
| 283 | } |
| 284 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 285 | inode = ocfs2_get_init_inode(dir, mode); |
| 286 | if (!inode) { |
| 287 | status = -ENOMEM; |
| 288 | mlog_errno(status); |
| 289 | goto leave; |
| 290 | } |
| 291 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 292 | /* get security xattr */ |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 293 | status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 294 | if (status) { |
| 295 | if (status == -EOPNOTSUPP) |
| 296 | si.enable = 0; |
| 297 | else { |
| 298 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 299 | goto leave; |
| 300 | } |
| 301 | } |
| 302 | |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 303 | /* calculate meta data/clusters for setting security and acl xattr */ |
| 304 | status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 305 | &si, &want_clusters, |
| 306 | &xattr_credits, &want_meta); |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 307 | if (status < 0) { |
| 308 | mlog_errno(status); |
| 309 | goto leave; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | /* Reserve a cluster if creating an extent based directory. */ |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 313 | if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) { |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 314 | want_clusters += 1; |
| 315 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 316 | /* Dir indexing requires extra space as well */ |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 317 | if (ocfs2_supports_indexed_dirs(osb)) |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 318 | want_meta++; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | status = ocfs2_reserve_new_metadata_blocks(osb, want_meta, &meta_ac); |
| 322 | if (status < 0) { |
| 323 | if (status != -ENOSPC) |
| 324 | mlog_errno(status); |
| 325 | goto leave; |
| 326 | } |
| 327 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 328 | status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac); |
| 329 | if (status < 0) { |
| 330 | if (status != -ENOSPC) |
| 331 | mlog_errno(status); |
| 332 | goto leave; |
| 333 | } |
| 334 | |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 335 | status = posix_acl_create(dir, &mode, &default_acl, &acl); |
| 336 | if (status) { |
| 337 | mlog_errno(status); |
| 338 | goto leave; |
| 339 | } |
| 340 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 341 | handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, |
| 342 | S_ISDIR(mode), |
| 343 | xattr_credits)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 344 | if (IS_ERR(handle)) { |
| 345 | status = PTR_ERR(handle); |
| 346 | handle = NULL; |
| 347 | mlog_errno(status); |
| 348 | goto leave; |
| 349 | } |
| 350 | |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 351 | /* Starting to change things, restart is no longer possible. */ |
| 352 | ocfs2_block_signals(&oldset); |
| 353 | did_block_signals = 1; |
| 354 | |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 355 | status = dquot_alloc_inode(inode); |
| 356 | if (status) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 357 | goto leave; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 358 | did_quota_inode = 1; |
| 359 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 360 | /* do the real work now. */ |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 361 | status = ocfs2_mknod_locked(osb, dir, inode, dev, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 362 | &new_fe_bh, parent_fe_bh, handle, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 363 | inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 364 | if (status < 0) { |
| 365 | mlog_errno(status); |
| 366 | goto leave; |
| 367 | } |
| 368 | |
| 369 | if (S_ISDIR(mode)) { |
| 370 | status = ocfs2_fill_new_dir(osb, handle, dir, inode, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 371 | new_fe_bh, data_ac, meta_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 372 | if (status < 0) { |
| 373 | mlog_errno(status); |
| 374 | goto leave; |
| 375 | } |
| 376 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 377 | status = ocfs2_journal_access_di(handle, INODE_CACHE(dir), |
| 378 | parent_fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 379 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 380 | if (status < 0) { |
| 381 | mlog_errno(status); |
| 382 | goto leave; |
| 383 | } |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 384 | ocfs2_add_links_count(dirfe, 1); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 385 | ocfs2_journal_dirty(handle, parent_fe_bh); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 386 | inc_nlink(dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 387 | } |
| 388 | |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 389 | if (default_acl) { |
| 390 | status = ocfs2_set_acl(handle, inode, new_fe_bh, |
| 391 | ACL_TYPE_DEFAULT, default_acl, |
| 392 | meta_ac, data_ac); |
| 393 | } |
| 394 | if (!status && acl) { |
| 395 | status = ocfs2_set_acl(handle, inode, new_fe_bh, |
| 396 | ACL_TYPE_ACCESS, acl, |
| 397 | meta_ac, data_ac); |
| 398 | } |
| 399 | |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 400 | if (status < 0) { |
| 401 | mlog_errno(status); |
| 402 | goto leave; |
| 403 | } |
| 404 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 405 | if (si.enable) { |
| 406 | status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 407 | meta_ac, data_ac); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 408 | if (status < 0) { |
| 409 | mlog_errno(status); |
| 410 | goto leave; |
| 411 | } |
| 412 | } |
| 413 | |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 414 | /* |
| 415 | * Do this before adding the entry to the directory. We add |
| 416 | * also set d_op after success so that ->d_iput() will cleanup |
| 417 | * the dentry lock even if ocfs2_add_entry() fails below. |
| 418 | */ |
| 419 | status = ocfs2_dentry_attach_lock(dentry, inode, |
| 420 | OCFS2_I(dir)->ip_blkno); |
| 421 | if (status) { |
| 422 | mlog_errno(status); |
| 423 | goto leave; |
| 424 | } |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 425 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 426 | status = ocfs2_add_entry(handle, dentry, inode, |
| 427 | OCFS2_I(inode)->ip_blkno, parent_fe_bh, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 428 | &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 429 | if (status < 0) { |
| 430 | mlog_errno(status); |
| 431 | goto leave; |
| 432 | } |
| 433 | |
| 434 | insert_inode_hash(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 435 | d_instantiate(dentry, inode); |
| 436 | status = 0; |
| 437 | leave: |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 438 | if (default_acl) |
| 439 | posix_acl_release(default_acl); |
| 440 | if (acl) |
| 441 | posix_acl_release(acl); |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 442 | if (status < 0 && did_quota_inode) |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 443 | dquot_free_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 444 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 445 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 446 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 447 | ocfs2_inode_unlock(dir, 1); |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 448 | if (did_block_signals) |
| 449 | ocfs2_unblock_signals(&oldset); |
Mark Fasheh | e3a8213 | 2006-10-05 16:04:17 -0700 | [diff] [blame] | 450 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 451 | brelse(new_fe_bh); |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 452 | brelse(parent_fe_bh); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 453 | kfree(si.value); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 454 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 455 | ocfs2_free_dir_lookup_result(&lookup); |
| 456 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 457 | if (inode_ac) |
| 458 | ocfs2_free_alloc_context(inode_ac); |
| 459 | |
| 460 | if (data_ac) |
| 461 | ocfs2_free_alloc_context(data_ac); |
| 462 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 463 | if (meta_ac) |
| 464 | ocfs2_free_alloc_context(meta_ac); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 465 | |
Li Dongyang | 062d340 | 2010-04-22 16:11:29 +0800 | [diff] [blame] | 466 | /* |
| 467 | * We should call iput after the i_mutex of the bitmap been |
| 468 | * unlocked in ocfs2_free_alloc_context, or the |
| 469 | * ocfs2_delete_inode will mutex_lock again. |
| 470 | */ |
| 471 | if ((status < 0) && inode) { |
| 472 | OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR; |
| 473 | clear_nlink(inode); |
| 474 | iput(inode); |
| 475 | } |
| 476 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 477 | if (status) |
| 478 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 479 | |
| 480 | return status; |
| 481 | } |
| 482 | |
Mark Fasheh | 021960c | 2010-08-13 15:15:15 -0700 | [diff] [blame] | 483 | static int __ocfs2_mknod_locked(struct inode *dir, |
| 484 | struct inode *inode, |
| 485 | dev_t dev, |
| 486 | struct buffer_head **new_fe_bh, |
| 487 | struct buffer_head *parent_fe_bh, |
| 488 | handle_t *handle, |
| 489 | struct ocfs2_alloc_context *inode_ac, |
| 490 | u64 fe_blkno, u64 suballoc_loc, u16 suballoc_bit) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 491 | { |
| 492 | int status = 0; |
Mark Fasheh | 021960c | 2010-08-13 15:15:15 -0700 | [diff] [blame] | 493 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 494 | struct ocfs2_dinode *fe = NULL; |
| 495 | struct ocfs2_extent_list *fel; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 496 | u16 feat; |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 497 | struct ocfs2_inode_info *oi = OCFS2_I(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 498 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 499 | *new_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 500 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 501 | /* populate as many fields early on as possible - many of |
| 502 | * these are used by the support functions here and in |
| 503 | * callers. */ |
| 504 | inode->i_ino = ino_from_blkno(osb->sb, fe_blkno); |
| 505 | OCFS2_I(inode)->ip_blkno = fe_blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 506 | spin_lock(&osb->osb_lock); |
| 507 | inode->i_generation = osb->s_next_generation++; |
| 508 | spin_unlock(&osb->osb_lock); |
| 509 | |
| 510 | *new_fe_bh = sb_getblk(osb->sb, fe_blkno); |
| 511 | if (!*new_fe_bh) { |
Rui Xiang | 7391a29 | 2013-11-12 15:06:54 -0800 | [diff] [blame] | 512 | status = -ENOMEM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 513 | mlog_errno(status); |
| 514 | goto leave; |
| 515 | } |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 516 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), *new_fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 517 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 518 | status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), |
| 519 | *new_fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 520 | OCFS2_JOURNAL_ACCESS_CREATE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 521 | if (status < 0) { |
| 522 | mlog_errno(status); |
| 523 | goto leave; |
| 524 | } |
| 525 | |
| 526 | fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data; |
| 527 | memset(fe, 0, osb->sb->s_blocksize); |
| 528 | |
| 529 | fe->i_generation = cpu_to_le32(inode->i_generation); |
| 530 | fe->i_fs_generation = cpu_to_le32(osb->fs_generation); |
| 531 | fe->i_blkno = cpu_to_le64(fe_blkno); |
Joel Becker | 2b6cb57 | 2010-03-26 10:09:15 +0800 | [diff] [blame] | 532 | fe->i_suballoc_loc = cpu_to_le64(suballoc_loc); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 533 | fe->i_suballoc_bit = cpu_to_le16(suballoc_bit); |
Tao Ma | 4d0ddb2 | 2008-03-05 16:11:46 +0800 | [diff] [blame] | 534 | fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot); |
Eric W. Biederman | 2c03417 | 2013-01-31 17:27:11 -0800 | [diff] [blame] | 535 | fe->i_uid = cpu_to_le32(i_uid_read(inode)); |
| 536 | fe->i_gid = cpu_to_le32(i_gid_read(inode)); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 537 | fe->i_mode = cpu_to_le16(inode->i_mode); |
| 538 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 539 | fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev)); |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 540 | |
| 541 | ocfs2_set_links_count(fe, inode->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 542 | |
| 543 | fe->i_last_eb_blk = 0; |
| 544 | strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE); |
Joseph Qi | 13eb988 | 2013-07-03 15:00:48 -0700 | [diff] [blame] | 545 | fe->i_flags |= cpu_to_le32(OCFS2_VALID_FL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 546 | fe->i_atime = fe->i_ctime = fe->i_mtime = |
| 547 | cpu_to_le64(CURRENT_TIME.tv_sec); |
| 548 | fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec = |
| 549 | cpu_to_le32(CURRENT_TIME.tv_nsec); |
| 550 | fe->i_dtime = 0; |
| 551 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 552 | /* |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 553 | * If supported, directories start with inline data. If inline |
| 554 | * isn't supported, but indexing is, we start them as indexed. |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 555 | */ |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 556 | feat = le16_to_cpu(fe->i_dyn_features); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 557 | if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) { |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 558 | fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL); |
| 559 | |
Tiger Yang | d9ae49d | 2009-03-05 11:06:15 +0800 | [diff] [blame] | 560 | fe->id2.i_data.id_count = cpu_to_le16( |
| 561 | ocfs2_max_inline_data_with_xattr(osb->sb, fe)); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 562 | } else { |
| 563 | fel = &fe->id2.i_list; |
| 564 | fel->l_tree_depth = 0; |
| 565 | fel->l_next_free_rec = 0; |
| 566 | fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb)); |
| 567 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 568 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 569 | ocfs2_journal_dirty(handle, *new_fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 570 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 571 | ocfs2_populate_inode(inode, fe, 1); |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 572 | ocfs2_ci_set_new(osb, INODE_CACHE(inode)); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 573 | if (!ocfs2_mount_local(osb)) { |
| 574 | status = ocfs2_create_new_inode_locks(inode); |
| 575 | if (status < 0) |
| 576 | mlog_errno(status); |
| 577 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 578 | |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 579 | oi->i_sync_tid = handle->h_transaction->t_tid; |
| 580 | oi->i_datasync_tid = handle->h_transaction->t_tid; |
| 581 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 582 | leave: |
| 583 | if (status < 0) { |
| 584 | if (*new_fe_bh) { |
| 585 | brelse(*new_fe_bh); |
| 586 | *new_fe_bh = NULL; |
| 587 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 588 | } |
| 589 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 590 | if (status) |
| 591 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 592 | return status; |
| 593 | } |
| 594 | |
Mark Fasheh | 021960c | 2010-08-13 15:15:15 -0700 | [diff] [blame] | 595 | static int ocfs2_mknod_locked(struct ocfs2_super *osb, |
| 596 | struct inode *dir, |
| 597 | struct inode *inode, |
| 598 | dev_t dev, |
| 599 | struct buffer_head **new_fe_bh, |
| 600 | struct buffer_head *parent_fe_bh, |
| 601 | handle_t *handle, |
| 602 | struct ocfs2_alloc_context *inode_ac) |
| 603 | { |
| 604 | int status = 0; |
| 605 | u64 suballoc_loc, fe_blkno = 0; |
| 606 | u16 suballoc_bit; |
| 607 | |
| 608 | *new_fe_bh = NULL; |
| 609 | |
| 610 | status = ocfs2_claim_new_inode(handle, dir, parent_fe_bh, |
| 611 | inode_ac, &suballoc_loc, |
| 612 | &suballoc_bit, &fe_blkno); |
| 613 | if (status < 0) { |
| 614 | mlog_errno(status); |
| 615 | return status; |
| 616 | } |
| 617 | |
| 618 | return __ocfs2_mknod_locked(dir, inode, dev, new_fe_bh, |
| 619 | parent_fe_bh, handle, inode_ac, |
| 620 | fe_blkno, suballoc_loc, suballoc_bit); |
| 621 | } |
| 622 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 623 | static int ocfs2_mkdir(struct inode *dir, |
| 624 | struct dentry *dentry, |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 625 | umode_t mode) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 626 | { |
| 627 | int ret; |
| 628 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 629 | trace_ocfs2_mkdir(dir, dentry, dentry->d_name.len, dentry->d_name.name, |
| 630 | OCFS2_I(dir)->ip_blkno, mode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 631 | ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0); |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 632 | if (ret) |
| 633 | mlog_errno(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 634 | |
| 635 | return ret; |
| 636 | } |
| 637 | |
| 638 | static int ocfs2_create(struct inode *dir, |
| 639 | struct dentry *dentry, |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 640 | umode_t mode, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 641 | bool excl) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 642 | { |
| 643 | int ret; |
| 644 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 645 | trace_ocfs2_create(dir, dentry, dentry->d_name.len, dentry->d_name.name, |
| 646 | (unsigned long long)OCFS2_I(dir)->ip_blkno, mode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 647 | ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0); |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 648 | if (ret) |
| 649 | mlog_errno(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 650 | |
| 651 | return ret; |
| 652 | } |
| 653 | |
| 654 | static int ocfs2_link(struct dentry *old_dentry, |
| 655 | struct inode *dir, |
| 656 | struct dentry *dentry) |
| 657 | { |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 658 | handle_t *handle; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 659 | struct inode *inode = old_dentry->d_inode; |
| 660 | int err; |
| 661 | struct buffer_head *fe_bh = NULL; |
| 662 | struct buffer_head *parent_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 663 | struct ocfs2_dinode *fe = NULL; |
| 664 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 665 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 666 | sigset_t oldset; |
Xue jiufei | 0e04831 | 2014-02-10 14:25:54 -0800 | [diff] [blame] | 667 | u64 old_de_ino; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 668 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 669 | trace_ocfs2_link((unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 670 | old_dentry->d_name.len, old_dentry->d_name.name, |
| 671 | dentry->d_name.len, dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 672 | |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 673 | if (S_ISDIR(inode->i_mode)) |
| 674 | return -EPERM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 675 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 676 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 677 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 678 | err = ocfs2_inode_lock_nested(dir, &parent_fe_bh, 1, OI_LS_PARENT); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 679 | if (err < 0) { |
| 680 | if (err != -ENOENT) |
| 681 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 682 | return err; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 683 | } |
| 684 | |
Tiger Yang | 0f62de2 | 2006-08-31 20:39:47 -0700 | [diff] [blame] | 685 | if (!dir->i_nlink) { |
| 686 | err = -ENOENT; |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 687 | goto out; |
Tiger Yang | 0f62de2 | 2006-08-31 20:39:47 -0700 | [diff] [blame] | 688 | } |
| 689 | |
Xue jiufei | 0e04831 | 2014-02-10 14:25:54 -0800 | [diff] [blame] | 690 | err = ocfs2_lookup_ino_from_name(dir, old_dentry->d_name.name, |
| 691 | old_dentry->d_name.len, &old_de_ino); |
| 692 | if (err) { |
| 693 | err = -ENOENT; |
| 694 | goto out; |
| 695 | } |
| 696 | |
| 697 | /* |
| 698 | * Check whether another node removed the source inode while we |
| 699 | * were in the vfs. |
| 700 | */ |
| 701 | if (old_de_ino != OCFS2_I(inode)->ip_blkno) { |
| 702 | err = -ENOENT; |
| 703 | goto out; |
| 704 | } |
| 705 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 706 | err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 707 | dentry->d_name.len); |
| 708 | if (err) |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 709 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 710 | |
| 711 | err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 712 | dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 713 | dentry->d_name.len, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 714 | if (err < 0) { |
| 715 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 716 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 717 | } |
| 718 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 719 | err = ocfs2_inode_lock(inode, &fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 720 | if (err < 0) { |
| 721 | if (err != -ENOENT) |
| 722 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 723 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | fe = (struct ocfs2_dinode *) fe_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 727 | if (ocfs2_read_links_count(fe) >= ocfs2_link_max(osb)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 728 | err = -EMLINK; |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 729 | goto out_unlock_inode; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 730 | } |
| 731 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 732 | handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 733 | if (IS_ERR(handle)) { |
| 734 | err = PTR_ERR(handle); |
| 735 | handle = NULL; |
| 736 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 737 | goto out_unlock_inode; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 738 | } |
| 739 | |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 740 | /* Starting to change things, restart is no longer possible. */ |
| 741 | ocfs2_block_signals(&oldset); |
| 742 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 743 | err = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 744 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 745 | if (err < 0) { |
| 746 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 747 | goto out_commit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 748 | } |
| 749 | |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 750 | inc_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 751 | inode->i_ctime = CURRENT_TIME; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 752 | ocfs2_set_links_count(fe, inode->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 753 | fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec); |
| 754 | fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 755 | ocfs2_journal_dirty(handle, fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 756 | |
| 757 | err = ocfs2_add_entry(handle, dentry, inode, |
| 758 | OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 759 | parent_fe_bh, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 760 | if (err) { |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 761 | ocfs2_add_links_count(fe, -1); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 762 | drop_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 763 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 764 | goto out_commit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 765 | } |
| 766 | |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 767 | err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 768 | if (err) { |
| 769 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 770 | goto out_commit; |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 771 | } |
| 772 | |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 773 | ihold(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 774 | d_instantiate(dentry, inode); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 775 | |
| 776 | out_commit: |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 777 | ocfs2_commit_trans(osb, handle); |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 778 | ocfs2_unblock_signals(&oldset); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 779 | out_unlock_inode: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 780 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 781 | |
| 782 | out: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 783 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 784 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 785 | brelse(fe_bh); |
| 786 | brelse(parent_fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 787 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 788 | ocfs2_free_dir_lookup_result(&lookup); |
| 789 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 790 | if (err) |
| 791 | mlog_errno(err); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 792 | |
| 793 | return err; |
| 794 | } |
| 795 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 796 | /* |
| 797 | * Takes and drops an exclusive lock on the given dentry. This will |
| 798 | * force other nodes to drop it. |
| 799 | */ |
| 800 | static int ocfs2_remote_dentry_delete(struct dentry *dentry) |
| 801 | { |
| 802 | int ret; |
| 803 | |
| 804 | ret = ocfs2_dentry_lock(dentry, 1); |
| 805 | if (ret) |
| 806 | mlog_errno(ret); |
| 807 | else |
| 808 | ocfs2_dentry_unlock(dentry, 1); |
| 809 | |
| 810 | return ret; |
| 811 | } |
| 812 | |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 813 | static inline int ocfs2_inode_is_unlinkable(struct inode *inode) |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 814 | { |
| 815 | if (S_ISDIR(inode->i_mode)) { |
| 816 | if (inode->i_nlink == 2) |
| 817 | return 1; |
| 818 | return 0; |
| 819 | } |
| 820 | |
| 821 | if (inode->i_nlink == 1) |
| 822 | return 1; |
| 823 | return 0; |
| 824 | } |
| 825 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 826 | static int ocfs2_unlink(struct inode *dir, |
| 827 | struct dentry *dentry) |
| 828 | { |
| 829 | int status; |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 830 | int child_locked = 0; |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 831 | bool is_unlinkable = false; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 832 | struct inode *inode = dentry->d_inode; |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 833 | struct inode *orphan_dir = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 834 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 835 | u64 blkno; |
| 836 | struct ocfs2_dinode *fe = NULL; |
| 837 | struct buffer_head *fe_bh = NULL; |
| 838 | struct buffer_head *parent_node_bh = NULL; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 839 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 840 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 841 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
| 842 | struct ocfs2_dir_lookup_result orphan_insert = { NULL, }; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 843 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 844 | trace_ocfs2_unlink(dir, dentry, dentry->d_name.len, |
| 845 | dentry->d_name.name, |
| 846 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 847 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 848 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 849 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 850 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 851 | BUG_ON(dentry->d_parent->d_inode != dir); |
| 852 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 853 | if (inode == osb->root_inode) |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 854 | return -EPERM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 855 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 856 | status = ocfs2_inode_lock_nested(dir, &parent_node_bh, 1, |
| 857 | OI_LS_PARENT); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 858 | if (status < 0) { |
| 859 | if (status != -ENOENT) |
| 860 | mlog_errno(status); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 861 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | status = ocfs2_find_files_on_disk(dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 865 | dentry->d_name.len, &blkno, dir, |
| 866 | &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 867 | if (status < 0) { |
| 868 | if (status != -ENOENT) |
| 869 | mlog_errno(status); |
| 870 | goto leave; |
| 871 | } |
| 872 | |
| 873 | if (OCFS2_I(inode)->ip_blkno != blkno) { |
| 874 | status = -ENOENT; |
| 875 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 876 | trace_ocfs2_unlink_noent( |
| 877 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 878 | (unsigned long long)blkno, |
| 879 | OCFS2_I(inode)->ip_flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 880 | goto leave; |
| 881 | } |
| 882 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 883 | status = ocfs2_inode_lock(inode, &fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 884 | if (status < 0) { |
| 885 | if (status != -ENOENT) |
| 886 | mlog_errno(status); |
| 887 | goto leave; |
| 888 | } |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 889 | child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 890 | |
| 891 | if (S_ISDIR(inode->i_mode)) { |
Mark Fasheh | b80b549 | 2009-02-18 11:41:38 -0800 | [diff] [blame] | 892 | if (inode->i_nlink != 2 || !ocfs2_empty_dir(inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 893 | status = -ENOTEMPTY; |
| 894 | goto leave; |
| 895 | } |
| 896 | } |
| 897 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 898 | status = ocfs2_remote_dentry_delete(dentry); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 899 | if (status < 0) { |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 900 | /* This remote delete should succeed under all normal |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 901 | * circumstances. */ |
| 902 | mlog_errno(status); |
| 903 | goto leave; |
| 904 | } |
| 905 | |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 906 | if (ocfs2_inode_is_unlinkable(inode)) { |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 907 | status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, |
| 908 | OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 909 | orphan_name, &orphan_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 910 | if (status < 0) { |
| 911 | mlog_errno(status); |
| 912 | goto leave; |
| 913 | } |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 914 | is_unlinkable = true; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 915 | } |
| 916 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 917 | handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 918 | if (IS_ERR(handle)) { |
| 919 | status = PTR_ERR(handle); |
| 920 | handle = NULL; |
| 921 | mlog_errno(status); |
| 922 | goto leave; |
| 923 | } |
| 924 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 925 | status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 926 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 927 | if (status < 0) { |
| 928 | mlog_errno(status); |
| 929 | goto leave; |
| 930 | } |
| 931 | |
| 932 | fe = (struct ocfs2_dinode *) fe_bh->b_data; |
| 933 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 934 | /* delete the name from the parent dir */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 935 | status = ocfs2_delete_entry(handle, dir, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 936 | if (status < 0) { |
| 937 | mlog_errno(status); |
| 938 | goto leave; |
| 939 | } |
| 940 | |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 941 | if (S_ISDIR(inode->i_mode)) |
| 942 | drop_nlink(inode); |
| 943 | drop_nlink(inode); |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 944 | ocfs2_set_links_count(fe, inode->i_nlink); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 945 | ocfs2_journal_dirty(handle, fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 946 | |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 947 | dir->i_ctime = dir->i_mtime = CURRENT_TIME; |
| 948 | if (S_ISDIR(inode->i_mode)) |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 949 | drop_nlink(dir); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 950 | |
| 951 | status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh); |
| 952 | if (status < 0) { |
| 953 | mlog_errno(status); |
| 954 | if (S_ISDIR(inode->i_mode)) |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 955 | inc_nlink(dir); |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 956 | goto leave; |
| 957 | } |
| 958 | |
| 959 | if (is_unlinkable) { |
| 960 | status = ocfs2_orphan_add(osb, handle, inode, fe_bh, |
| 961 | orphan_name, &orphan_insert, orphan_dir); |
| 962 | if (status < 0) |
| 963 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | leave: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 967 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 968 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 969 | |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 970 | if (child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 971 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 972 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 973 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 974 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 975 | if (orphan_dir) { |
| 976 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 977 | ocfs2_inode_unlock(orphan_dir, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 978 | mutex_unlock(&orphan_dir->i_mutex); |
| 979 | iput(orphan_dir); |
| 980 | } |
| 981 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 982 | brelse(fe_bh); |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 983 | brelse(parent_node_bh); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 984 | |
| 985 | ocfs2_free_dir_lookup_result(&orphan_insert); |
| 986 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 987 | |
Xiaowei.Hu | f5b2585 | 2014-01-27 17:06:56 -0800 | [diff] [blame] | 988 | if (status && (status != -ENOTEMPTY) && (status != -ENOENT)) |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 989 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 990 | |
| 991 | return status; |
| 992 | } |
| 993 | |
Yiwen Jiang | f7a14f3 | 2014-06-23 13:22:09 -0700 | [diff] [blame^] | 994 | static int ocfs2_check_if_ancestor(struct ocfs2_super *osb, |
| 995 | u64 src_inode_no, u64 dest_inode_no) |
| 996 | { |
| 997 | int ret = 0, i = 0; |
| 998 | u64 parent_inode_no = 0; |
| 999 | u64 child_inode_no = src_inode_no; |
| 1000 | struct inode *child_inode; |
| 1001 | |
| 1002 | #define MAX_LOOKUP_TIMES 32 |
| 1003 | while (1) { |
| 1004 | child_inode = ocfs2_iget(osb, child_inode_no, 0, 0); |
| 1005 | if (IS_ERR(child_inode)) { |
| 1006 | ret = PTR_ERR(child_inode); |
| 1007 | break; |
| 1008 | } |
| 1009 | |
| 1010 | ret = ocfs2_inode_lock(child_inode, NULL, 0); |
| 1011 | if (ret < 0) { |
| 1012 | iput(child_inode); |
| 1013 | if (ret != -ENOENT) |
| 1014 | mlog_errno(ret); |
| 1015 | break; |
| 1016 | } |
| 1017 | |
| 1018 | ret = ocfs2_lookup_ino_from_name(child_inode, "..", 2, |
| 1019 | &parent_inode_no); |
| 1020 | ocfs2_inode_unlock(child_inode, 0); |
| 1021 | iput(child_inode); |
| 1022 | if (ret < 0) { |
| 1023 | ret = -ENOENT; |
| 1024 | break; |
| 1025 | } |
| 1026 | |
| 1027 | if (parent_inode_no == dest_inode_no) { |
| 1028 | ret = 1; |
| 1029 | break; |
| 1030 | } |
| 1031 | |
| 1032 | if (parent_inode_no == osb->root_inode->i_ino) { |
| 1033 | ret = 0; |
| 1034 | break; |
| 1035 | } |
| 1036 | |
| 1037 | child_inode_no = parent_inode_no; |
| 1038 | |
| 1039 | if (++i >= MAX_LOOKUP_TIMES) { |
| 1040 | mlog(ML_NOTICE, "max lookup times reached, filesystem " |
| 1041 | "may have nested directories, " |
| 1042 | "src inode: %llu, dest inode: %llu.\n", |
| 1043 | (unsigned long long)src_inode_no, |
| 1044 | (unsigned long long)dest_inode_no); |
| 1045 | ret = 0; |
| 1046 | break; |
| 1047 | } |
| 1048 | } |
| 1049 | |
| 1050 | return ret; |
| 1051 | } |
| 1052 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1053 | /* |
| 1054 | * The only place this should be used is rename! |
| 1055 | * if they have the same id, then the 1st one is the only one locked. |
| 1056 | */ |
| 1057 | static int ocfs2_double_lock(struct ocfs2_super *osb, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1058 | struct buffer_head **bh1, |
| 1059 | struct inode *inode1, |
| 1060 | struct buffer_head **bh2, |
| 1061 | struct inode *inode2) |
| 1062 | { |
| 1063 | int status; |
Yiwen Jiang | f7a14f3 | 2014-06-23 13:22:09 -0700 | [diff] [blame^] | 1064 | int inode1_is_ancestor, inode2_is_ancestor; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1065 | struct ocfs2_inode_info *oi1 = OCFS2_I(inode1); |
| 1066 | struct ocfs2_inode_info *oi2 = OCFS2_I(inode2); |
| 1067 | struct buffer_head **tmpbh; |
| 1068 | struct inode *tmpinode; |
| 1069 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1070 | trace_ocfs2_double_lock((unsigned long long)oi1->ip_blkno, |
| 1071 | (unsigned long long)oi2->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1072 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1073 | if (*bh1) |
| 1074 | *bh1 = NULL; |
| 1075 | if (*bh2) |
| 1076 | *bh2 = NULL; |
| 1077 | |
Yiwen Jiang | f7a14f3 | 2014-06-23 13:22:09 -0700 | [diff] [blame^] | 1078 | /* we always want to lock the one with the lower lockid first. |
| 1079 | * and if they are nested, we lock ancestor first */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1080 | if (oi1->ip_blkno != oi2->ip_blkno) { |
Yiwen Jiang | f7a14f3 | 2014-06-23 13:22:09 -0700 | [diff] [blame^] | 1081 | inode1_is_ancestor = ocfs2_check_if_ancestor(osb, oi2->ip_blkno, |
| 1082 | oi1->ip_blkno); |
| 1083 | if (inode1_is_ancestor < 0) { |
| 1084 | status = inode1_is_ancestor; |
| 1085 | goto bail; |
| 1086 | } |
| 1087 | |
| 1088 | inode2_is_ancestor = ocfs2_check_if_ancestor(osb, oi1->ip_blkno, |
| 1089 | oi2->ip_blkno); |
| 1090 | if (inode2_is_ancestor < 0) { |
| 1091 | status = inode2_is_ancestor; |
| 1092 | goto bail; |
| 1093 | } |
| 1094 | |
| 1095 | if ((inode1_is_ancestor == 1) || |
| 1096 | (oi1->ip_blkno < oi2->ip_blkno && |
| 1097 | inode2_is_ancestor == 0)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1098 | /* switch id1 and id2 around */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1099 | tmpbh = bh2; |
| 1100 | bh2 = bh1; |
| 1101 | bh1 = tmpbh; |
| 1102 | |
| 1103 | tmpinode = inode2; |
| 1104 | inode2 = inode1; |
| 1105 | inode1 = tmpinode; |
| 1106 | } |
| 1107 | /* lock id2 */ |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1108 | status = ocfs2_inode_lock_nested(inode2, bh2, 1, |
| 1109 | OI_LS_RENAME1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1110 | if (status < 0) { |
| 1111 | if (status != -ENOENT) |
| 1112 | mlog_errno(status); |
| 1113 | goto bail; |
| 1114 | } |
| 1115 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1116 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1117 | /* lock id1 */ |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1118 | status = ocfs2_inode_lock_nested(inode1, bh1, 1, OI_LS_RENAME2); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1119 | if (status < 0) { |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1120 | /* |
| 1121 | * An error return must mean that no cluster locks |
| 1122 | * were held on function exit. |
| 1123 | */ |
Tao Ma | 1e6d915 | 2010-12-20 16:21:11 +0800 | [diff] [blame] | 1124 | if (oi1->ip_blkno != oi2->ip_blkno) { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1125 | ocfs2_inode_unlock(inode2, 1); |
Tao Ma | 1e6d915 | 2010-12-20 16:21:11 +0800 | [diff] [blame] | 1126 | brelse(*bh2); |
| 1127 | *bh2 = NULL; |
| 1128 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1129 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1130 | if (status != -ENOENT) |
| 1131 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1132 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1133 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1134 | trace_ocfs2_double_lock_end( |
| 1135 | (unsigned long long)OCFS2_I(inode1)->ip_blkno, |
| 1136 | (unsigned long long)OCFS2_I(inode2)->ip_blkno); |
| 1137 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1138 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1139 | if (status) |
| 1140 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1141 | return status; |
| 1142 | } |
| 1143 | |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1144 | static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2) |
| 1145 | { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1146 | ocfs2_inode_unlock(inode1, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1147 | |
| 1148 | if (inode1 != inode2) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1149 | ocfs2_inode_unlock(inode2, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1150 | } |
| 1151 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1152 | static int ocfs2_rename(struct inode *old_dir, |
| 1153 | struct dentry *old_dentry, |
| 1154 | struct inode *new_dir, |
| 1155 | struct dentry *new_dentry) |
| 1156 | { |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1157 | int status = 0, rename_lock = 0, parents_locked = 0, target_exists = 0; |
| 1158 | int old_child_locked = 0, new_child_locked = 0, update_dot_dot = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1159 | struct inode *old_inode = old_dentry->d_inode; |
| 1160 | struct inode *new_inode = new_dentry->d_inode; |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1161 | struct inode *orphan_dir = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1162 | struct ocfs2_dinode *newfe = NULL; |
| 1163 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1164 | struct buffer_head *newfe_bh = NULL; |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1165 | struct buffer_head *old_inode_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1166 | struct ocfs2_super *osb = NULL; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1167 | u64 newfe_blkno, old_de_ino; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1168 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1169 | struct buffer_head *old_dir_bh = NULL; |
| 1170 | struct buffer_head *new_dir_bh = NULL; |
Al Viro | 847c9db | 2012-02-12 21:00:05 -0500 | [diff] [blame] | 1171 | u32 old_dir_nlink = old_dir->i_nlink; |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1172 | struct ocfs2_dinode *old_di; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1173 | struct ocfs2_dir_lookup_result old_inode_dot_dot_res = { NULL, }; |
| 1174 | struct ocfs2_dir_lookup_result target_lookup_res = { NULL, }; |
| 1175 | struct ocfs2_dir_lookup_result old_entry_lookup = { NULL, }; |
| 1176 | struct ocfs2_dir_lookup_result orphan_insert = { NULL, }; |
| 1177 | struct ocfs2_dir_lookup_result target_insert = { NULL, }; |
alex chen | 5fb1beb | 2014-06-23 13:22:07 -0700 | [diff] [blame] | 1178 | bool should_add_orphan = false; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1179 | |
| 1180 | /* At some point it might be nice to break this function up a |
| 1181 | * bit. */ |
| 1182 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1183 | trace_ocfs2_rename(old_dir, old_dentry, new_dir, new_dentry, |
| 1184 | old_dentry->d_name.len, old_dentry->d_name.name, |
| 1185 | new_dentry->d_name.len, new_dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1186 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 1187 | dquot_initialize(old_dir); |
| 1188 | dquot_initialize(new_dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 1189 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1190 | osb = OCFS2_SB(old_dir->i_sb); |
| 1191 | |
| 1192 | if (new_inode) { |
| 1193 | if (!igrab(new_inode)) |
| 1194 | BUG(); |
| 1195 | } |
| 1196 | |
Uwe Kleine-König | 1b3c371 | 2007-02-17 19:23:03 +0100 | [diff] [blame] | 1197 | /* Assume a directory hierarchy thusly: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1198 | * a/b/c |
| 1199 | * a/d |
| 1200 | * a,b,c, and d are all directories. |
| 1201 | * |
| 1202 | * from cwd of 'a' on both nodes: |
| 1203 | * node1: mv b/c d |
| 1204 | * node2: mv d b/c |
| 1205 | * |
| 1206 | * And that's why, just like the VFS, we need a file system |
| 1207 | * rename lock. */ |
Jan Kara | 5dabd69 | 2008-02-21 18:00:00 +0100 | [diff] [blame] | 1208 | if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1209 | status = ocfs2_rename_lock(osb); |
| 1210 | if (status < 0) { |
| 1211 | mlog_errno(status); |
| 1212 | goto bail; |
| 1213 | } |
| 1214 | rename_lock = 1; |
Yiwen Jiang | f7a14f3 | 2014-06-23 13:22:09 -0700 | [diff] [blame^] | 1215 | |
| 1216 | /* here we cannot guarantee the inodes haven't just been |
| 1217 | * changed, so check if they are nested again */ |
| 1218 | status = ocfs2_check_if_ancestor(osb, new_dir->i_ino, |
| 1219 | old_inode->i_ino); |
| 1220 | if (status < 0) { |
| 1221 | mlog_errno(status); |
| 1222 | goto bail; |
| 1223 | } else if (status == 1) { |
| 1224 | status = -EPERM; |
| 1225 | trace_ocfs2_rename_not_permitted( |
| 1226 | (unsigned long long)old_inode->i_ino, |
| 1227 | (unsigned long long)new_dir->i_ino); |
| 1228 | goto bail; |
| 1229 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1230 | } |
| 1231 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1232 | /* 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] | 1233 | status = ocfs2_double_lock(osb, &old_dir_bh, old_dir, |
| 1234 | &new_dir_bh, new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1235 | if (status < 0) { |
| 1236 | mlog_errno(status); |
| 1237 | goto bail; |
| 1238 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1239 | parents_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1240 | |
| 1241 | /* make sure both dirs have bhs |
| 1242 | * get an extra ref on old_dir_bh if old==new */ |
| 1243 | if (!new_dir_bh) { |
| 1244 | if (old_dir_bh) { |
| 1245 | new_dir_bh = old_dir_bh; |
| 1246 | get_bh(new_dir_bh); |
| 1247 | } else { |
| 1248 | mlog(ML_ERROR, "no old_dir_bh!\n"); |
| 1249 | status = -EIO; |
| 1250 | goto bail; |
| 1251 | } |
| 1252 | } |
| 1253 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1254 | /* |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1255 | * Aside from allowing a meta data update, the locking here |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1256 | * also ensures that the downconvert thread on other nodes |
| 1257 | * won't have to concurrently downconvert the inode and the |
| 1258 | * dentry locks. |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1259 | */ |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1260 | status = ocfs2_inode_lock_nested(old_inode, &old_inode_bh, 1, |
| 1261 | OI_LS_PARENT); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1262 | if (status < 0) { |
| 1263 | if (status != -ENOENT) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1264 | mlog_errno(status); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1265 | goto bail; |
| 1266 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1267 | old_child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1268 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1269 | status = ocfs2_remote_dentry_delete(old_dentry); |
| 1270 | if (status < 0) { |
| 1271 | mlog_errno(status); |
| 1272 | goto bail; |
| 1273 | } |
| 1274 | |
| 1275 | if (S_ISDIR(old_inode->i_mode)) { |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1276 | u64 old_inode_parent; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1277 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1278 | update_dot_dot = 1; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1279 | status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1280 | old_inode, |
| 1281 | &old_inode_dot_dot_res); |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1282 | if (status) { |
| 1283 | status = -EIO; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1284 | goto bail; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1285 | } |
| 1286 | |
| 1287 | if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) { |
| 1288 | status = -EIO; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1289 | goto bail; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1290 | } |
| 1291 | |
| 1292 | if (!new_inode && new_dir != old_dir && |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1293 | new_dir->i_nlink >= ocfs2_link_max(osb)) { |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1294 | status = -EMLINK; |
| 1295 | goto bail; |
| 1296 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1297 | } |
| 1298 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1299 | status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name, |
| 1300 | old_dentry->d_name.len, |
| 1301 | &old_de_ino); |
| 1302 | if (status) { |
| 1303 | status = -ENOENT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1304 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1305 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1306 | |
| 1307 | /* |
| 1308 | * Check for inode number is _not_ due to possible IO errors. |
| 1309 | * We might rmdir the source, keep it as pwd of some process |
| 1310 | * and merrily kill the link to whatever was created under the |
| 1311 | * same name. Goodbye sticky bit ;-< |
| 1312 | */ |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1313 | if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) { |
| 1314 | status = -ENOENT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1315 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1316 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1317 | |
| 1318 | /* check if the target already exists (in which case we need |
| 1319 | * to delete it */ |
| 1320 | status = ocfs2_find_files_on_disk(new_dentry->d_name.name, |
| 1321 | new_dentry->d_name.len, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1322 | &newfe_blkno, new_dir, |
| 1323 | &target_lookup_res); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1324 | /* The only error we allow here is -ENOENT because the new |
| 1325 | * file not existing is perfectly valid. */ |
| 1326 | if ((status < 0) && (status != -ENOENT)) { |
| 1327 | /* If we cannot find the file specified we should just */ |
| 1328 | /* return the error... */ |
| 1329 | mlog_errno(status); |
| 1330 | goto bail; |
| 1331 | } |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1332 | if (status == 0) |
| 1333 | target_exists = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1334 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1335 | if (!target_exists && new_inode) { |
Srinivas Eeda | e325a88 | 2007-10-31 16:49:43 -0700 | [diff] [blame] | 1336 | /* |
| 1337 | * Target was unlinked by another node while we were |
| 1338 | * waiting to get to ocfs2_rename(). There isn't |
| 1339 | * anything we can do here to help the situation, so |
| 1340 | * bubble up the appropriate error. |
| 1341 | */ |
| 1342 | status = -ENOENT; |
| 1343 | goto bail; |
| 1344 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1345 | |
| 1346 | /* In case we need to overwrite an existing file, we blow it |
| 1347 | * away first */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1348 | if (target_exists) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1349 | /* VFS didn't think there existed an inode here, but |
| 1350 | * someone else in the cluster must have raced our |
| 1351 | * rename to create one. Today we error cleanly, in |
| 1352 | * the future we should consider calling iget to build |
| 1353 | * a new struct inode for this entry. */ |
| 1354 | if (!new_inode) { |
| 1355 | status = -EACCES; |
| 1356 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1357 | trace_ocfs2_rename_target_exists(new_dentry->d_name.len, |
| 1358 | new_dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1359 | goto bail; |
| 1360 | } |
| 1361 | |
| 1362 | if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) { |
| 1363 | status = -EACCES; |
| 1364 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1365 | trace_ocfs2_rename_disagree( |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1366 | (unsigned long long)OCFS2_I(new_inode)->ip_blkno, |
| 1367 | (unsigned long long)newfe_blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1368 | OCFS2_I(new_inode)->ip_flags); |
| 1369 | goto bail; |
| 1370 | } |
| 1371 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1372 | status = ocfs2_inode_lock(new_inode, &newfe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1373 | if (status < 0) { |
| 1374 | if (status != -ENOENT) |
| 1375 | mlog_errno(status); |
| 1376 | goto bail; |
| 1377 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1378 | new_child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1379 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1380 | status = ocfs2_remote_dentry_delete(new_dentry); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1381 | if (status < 0) { |
| 1382 | mlog_errno(status); |
| 1383 | goto bail; |
| 1384 | } |
| 1385 | |
| 1386 | newfe = (struct ocfs2_dinode *) newfe_bh->b_data; |
| 1387 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1388 | trace_ocfs2_rename_over_existing( |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1389 | (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ? |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1390 | (unsigned long long)newfe_bh->b_blocknr : 0ULL); |
| 1391 | |
| 1392 | if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) { |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1393 | status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 1394 | OCFS2_I(new_inode)->ip_blkno, |
| 1395 | orphan_name, &orphan_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1396 | if (status < 0) { |
| 1397 | mlog_errno(status); |
| 1398 | goto bail; |
| 1399 | } |
alex chen | 5fb1beb | 2014-06-23 13:22:07 -0700 | [diff] [blame] | 1400 | should_add_orphan = true; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1401 | } |
| 1402 | } else { |
| 1403 | BUG_ON(new_dentry->d_parent->d_inode != new_dir); |
| 1404 | |
| 1405 | status = ocfs2_check_dir_for_entry(new_dir, |
| 1406 | new_dentry->d_name.name, |
| 1407 | new_dentry->d_name.len); |
| 1408 | if (status) |
| 1409 | goto bail; |
| 1410 | |
| 1411 | status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh, |
| 1412 | new_dentry->d_name.name, |
| 1413 | new_dentry->d_name.len, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1414 | &target_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1415 | if (status < 0) { |
| 1416 | mlog_errno(status); |
| 1417 | goto bail; |
| 1418 | } |
| 1419 | } |
| 1420 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1421 | handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1422 | if (IS_ERR(handle)) { |
| 1423 | status = PTR_ERR(handle); |
| 1424 | handle = NULL; |
| 1425 | mlog_errno(status); |
| 1426 | goto bail; |
| 1427 | } |
| 1428 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1429 | if (target_exists) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1430 | if (S_ISDIR(new_inode->i_mode)) { |
Mark Fasheh | b80b549 | 2009-02-18 11:41:38 -0800 | [diff] [blame] | 1431 | if (new_inode->i_nlink != 2 || |
| 1432 | !ocfs2_empty_dir(new_inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1433 | status = -ENOTEMPTY; |
| 1434 | goto bail; |
| 1435 | } |
| 1436 | } |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1437 | status = ocfs2_journal_access_di(handle, INODE_CACHE(new_inode), |
| 1438 | newfe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1439 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1440 | if (status < 0) { |
| 1441 | mlog_errno(status); |
| 1442 | goto bail; |
| 1443 | } |
| 1444 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1445 | /* change the dirent to point to the correct inode */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1446 | status = ocfs2_update_entry(new_dir, handle, &target_lookup_res, |
| 1447 | old_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1448 | if (status < 0) { |
| 1449 | mlog_errno(status); |
| 1450 | goto bail; |
| 1451 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1452 | new_dir->i_version++; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1453 | |
| 1454 | if (S_ISDIR(new_inode->i_mode)) |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1455 | ocfs2_set_links_count(newfe, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1456 | else |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1457 | ocfs2_add_links_count(newfe, -1); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1458 | ocfs2_journal_dirty(handle, newfe_bh); |
alex chen | 5fb1beb | 2014-06-23 13:22:07 -0700 | [diff] [blame] | 1459 | if (should_add_orphan) { |
| 1460 | status = ocfs2_orphan_add(osb, handle, new_inode, |
| 1461 | newfe_bh, orphan_name, |
| 1462 | &orphan_insert, orphan_dir); |
| 1463 | if (status < 0) { |
| 1464 | mlog_errno(status); |
| 1465 | goto bail; |
| 1466 | } |
| 1467 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1468 | } else { |
| 1469 | /* if the name was not found in new_dir, add it now */ |
| 1470 | status = ocfs2_add_entry(handle, new_dentry, old_inode, |
| 1471 | OCFS2_I(old_inode)->ip_blkno, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1472 | new_dir_bh, &target_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | old_inode->i_ctime = CURRENT_TIME; |
| 1476 | mark_inode_dirty(old_inode); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1477 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1478 | status = ocfs2_journal_access_di(handle, INODE_CACHE(old_inode), |
| 1479 | old_inode_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1480 | OCFS2_JOURNAL_ACCESS_WRITE); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1481 | if (status >= 0) { |
| 1482 | old_di = (struct ocfs2_dinode *) old_inode_bh->b_data; |
| 1483 | |
| 1484 | old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec); |
| 1485 | old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1486 | ocfs2_journal_dirty(handle, old_inode_bh); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1487 | } else |
| 1488 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1489 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1490 | /* |
| 1491 | * Now that the name has been added to new_dir, remove the old name. |
| 1492 | * |
| 1493 | * We don't keep any directory entry context around until now |
| 1494 | * because the insert might have changed the type of directory |
| 1495 | * we're dealing with. |
| 1496 | */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1497 | status = ocfs2_find_entry(old_dentry->d_name.name, |
| 1498 | old_dentry->d_name.len, old_dir, |
| 1499 | &old_entry_lookup); |
| 1500 | if (status) |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1501 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1502 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1503 | status = ocfs2_delete_entry(handle, old_dir, &old_entry_lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1504 | if (status < 0) { |
| 1505 | mlog_errno(status); |
| 1506 | goto bail; |
| 1507 | } |
| 1508 | |
| 1509 | if (new_inode) { |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 1510 | drop_nlink(new_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1511 | new_inode->i_ctime = CURRENT_TIME; |
| 1512 | } |
| 1513 | old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1514 | |
| 1515 | if (update_dot_dot) { |
| 1516 | status = ocfs2_update_entry(old_inode, handle, |
| 1517 | &old_inode_dot_dot_res, new_dir); |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 1518 | drop_nlink(old_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1519 | if (new_inode) { |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 1520 | drop_nlink(new_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1521 | } else { |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 1522 | inc_nlink(new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1523 | mark_inode_dirty(new_dir); |
| 1524 | } |
| 1525 | } |
| 1526 | mark_inode_dirty(old_dir); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1527 | ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh); |
| 1528 | if (new_inode) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1529 | mark_inode_dirty(new_inode); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1530 | ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh); |
| 1531 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1532 | |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1533 | if (old_dir != new_dir) { |
| 1534 | /* Keep the same times on both directories.*/ |
| 1535 | new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime; |
| 1536 | |
| 1537 | /* |
| 1538 | * This will also pick up the i_nlink change from the |
| 1539 | * block above. |
| 1540 | */ |
| 1541 | ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh); |
| 1542 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1543 | |
| 1544 | if (old_dir_nlink != old_dir->i_nlink) { |
| 1545 | if (!old_dir_bh) { |
| 1546 | mlog(ML_ERROR, "need to change nlink for old dir " |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1547 | "%llu from %d to %d but bh is NULL!\n", |
| 1548 | (unsigned long long)OCFS2_I(old_dir)->ip_blkno, |
| 1549 | (int)old_dir_nlink, old_dir->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1550 | } else { |
| 1551 | struct ocfs2_dinode *fe; |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1552 | status = ocfs2_journal_access_di(handle, |
| 1553 | INODE_CACHE(old_dir), |
| 1554 | old_dir_bh, |
| 1555 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1556 | fe = (struct ocfs2_dinode *) old_dir_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1557 | ocfs2_set_links_count(fe, old_dir->i_nlink); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1558 | ocfs2_journal_dirty(handle, old_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1559 | } |
| 1560 | } |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1561 | ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1562 | status = 0; |
| 1563 | bail: |
| 1564 | if (rename_lock) |
| 1565 | ocfs2_rename_unlock(osb); |
| 1566 | |
| 1567 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 1568 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1569 | |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1570 | if (parents_locked) |
| 1571 | ocfs2_double_unlock(old_dir, new_dir); |
| 1572 | |
| 1573 | if (old_child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1574 | ocfs2_inode_unlock(old_inode, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1575 | |
| 1576 | if (new_child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1577 | ocfs2_inode_unlock(new_inode, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1578 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1579 | if (orphan_dir) { |
| 1580 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1581 | ocfs2_inode_unlock(orphan_dir, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1582 | mutex_unlock(&orphan_dir->i_mutex); |
| 1583 | iput(orphan_dir); |
| 1584 | } |
| 1585 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1586 | if (new_inode) |
| 1587 | sync_mapping_buffers(old_inode->i_mapping); |
| 1588 | |
| 1589 | if (new_inode) |
| 1590 | iput(new_inode); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1591 | |
| 1592 | ocfs2_free_dir_lookup_result(&target_lookup_res); |
| 1593 | ocfs2_free_dir_lookup_result(&old_entry_lookup); |
| 1594 | ocfs2_free_dir_lookup_result(&old_inode_dot_dot_res); |
| 1595 | ocfs2_free_dir_lookup_result(&orphan_insert); |
| 1596 | ocfs2_free_dir_lookup_result(&target_insert); |
| 1597 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1598 | brelse(newfe_bh); |
| 1599 | brelse(old_inode_bh); |
| 1600 | brelse(old_dir_bh); |
| 1601 | brelse(new_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1602 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1603 | if (status) |
| 1604 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1605 | |
| 1606 | return status; |
| 1607 | } |
| 1608 | |
| 1609 | /* |
| 1610 | * we expect i_size = strlen(symname). Copy symname into the file |
| 1611 | * data, including the null terminator. |
| 1612 | */ |
| 1613 | static int ocfs2_create_symlink_data(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1614 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1615 | struct inode *inode, |
| 1616 | const char *symname) |
| 1617 | { |
| 1618 | struct buffer_head **bhs = NULL; |
| 1619 | const char *c; |
| 1620 | struct super_block *sb = osb->sb; |
Mark Fasheh | 4f902c3 | 2007-03-09 16:26:50 -0800 | [diff] [blame] | 1621 | u64 p_blkno, p_blocks; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1622 | int virtual, blocks, status, i, bytes_left; |
| 1623 | |
| 1624 | bytes_left = i_size_read(inode) + 1; |
| 1625 | /* we can't trust i_blocks because we're actually going to |
| 1626 | * write i_size + 1 bytes. */ |
| 1627 | blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits; |
| 1628 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1629 | trace_ocfs2_create_symlink_data((unsigned long long)inode->i_blocks, |
| 1630 | i_size_read(inode), blocks); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1631 | |
| 1632 | /* Sanity check -- make sure we're going to fit. */ |
| 1633 | if (bytes_left > |
| 1634 | ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) { |
| 1635 | status = -EIO; |
| 1636 | mlog_errno(status); |
| 1637 | goto bail; |
| 1638 | } |
| 1639 | |
| 1640 | bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL); |
| 1641 | if (!bhs) { |
| 1642 | status = -ENOMEM; |
| 1643 | mlog_errno(status); |
| 1644 | goto bail; |
| 1645 | } |
| 1646 | |
Mark Fasheh | 49cb8d2 | 2007-03-09 16:21:46 -0800 | [diff] [blame] | 1647 | status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks, |
| 1648 | NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1649 | if (status < 0) { |
| 1650 | mlog_errno(status); |
| 1651 | goto bail; |
| 1652 | } |
| 1653 | |
| 1654 | /* links can never be larger than one cluster so we know this |
| 1655 | * is all going to be contiguous, but do a sanity check |
| 1656 | * anyway. */ |
| 1657 | if ((p_blocks << sb->s_blocksize_bits) < bytes_left) { |
| 1658 | status = -EIO; |
| 1659 | mlog_errno(status); |
| 1660 | goto bail; |
| 1661 | } |
| 1662 | |
| 1663 | virtual = 0; |
| 1664 | while(bytes_left > 0) { |
| 1665 | c = &symname[virtual * sb->s_blocksize]; |
| 1666 | |
| 1667 | bhs[virtual] = sb_getblk(sb, p_blkno); |
| 1668 | if (!bhs[virtual]) { |
| 1669 | status = -ENOMEM; |
| 1670 | mlog_errno(status); |
| 1671 | goto bail; |
| 1672 | } |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 1673 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), |
| 1674 | bhs[virtual]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1675 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1676 | status = ocfs2_journal_access(handle, INODE_CACHE(inode), |
| 1677 | bhs[virtual], |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1678 | OCFS2_JOURNAL_ACCESS_CREATE); |
| 1679 | if (status < 0) { |
| 1680 | mlog_errno(status); |
| 1681 | goto bail; |
| 1682 | } |
| 1683 | |
| 1684 | memset(bhs[virtual]->b_data, 0, sb->s_blocksize); |
| 1685 | |
| 1686 | memcpy(bhs[virtual]->b_data, c, |
| 1687 | (bytes_left > sb->s_blocksize) ? sb->s_blocksize : |
| 1688 | bytes_left); |
| 1689 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1690 | ocfs2_journal_dirty(handle, bhs[virtual]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1691 | |
| 1692 | virtual++; |
| 1693 | p_blkno++; |
| 1694 | bytes_left -= sb->s_blocksize; |
| 1695 | } |
| 1696 | |
| 1697 | status = 0; |
| 1698 | bail: |
| 1699 | |
| 1700 | if (bhs) { |
| 1701 | for(i = 0; i < blocks; i++) |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1702 | brelse(bhs[i]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1703 | kfree(bhs); |
| 1704 | } |
| 1705 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1706 | if (status) |
| 1707 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1708 | return status; |
| 1709 | } |
| 1710 | |
| 1711 | static int ocfs2_symlink(struct inode *dir, |
| 1712 | struct dentry *dentry, |
| 1713 | const char *symname) |
| 1714 | { |
| 1715 | int status, l, credits; |
| 1716 | u64 newsize; |
| 1717 | struct ocfs2_super *osb = NULL; |
| 1718 | struct inode *inode = NULL; |
| 1719 | struct super_block *sb; |
| 1720 | struct buffer_head *new_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1721 | struct buffer_head *parent_fe_bh = NULL; |
| 1722 | struct ocfs2_dinode *fe = NULL; |
| 1723 | struct ocfs2_dinode *dirfe; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1724 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1725 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 1726 | struct ocfs2_alloc_context *data_ac = NULL; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1727 | struct ocfs2_alloc_context *xattr_ac = NULL; |
| 1728 | int want_clusters = 0; |
| 1729 | int xattr_credits = 0; |
| 1730 | struct ocfs2_security_xattr_info si = { |
| 1731 | .enable = 1, |
| 1732 | }; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1733 | int did_quota = 0, did_quota_inode = 0; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1734 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 1735 | sigset_t oldset; |
| 1736 | int did_block_signals = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1737 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1738 | trace_ocfs2_symlink_begin(dir, dentry, symname, |
| 1739 | dentry->d_name.len, dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1740 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 1741 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 1742 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1743 | sb = dir->i_sb; |
| 1744 | osb = OCFS2_SB(sb); |
| 1745 | |
| 1746 | l = strlen(symname) + 1; |
| 1747 | |
| 1748 | credits = ocfs2_calc_symlink_credits(sb); |
| 1749 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1750 | /* lock the parent directory */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1751 | status = ocfs2_inode_lock(dir, &parent_fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1752 | if (status < 0) { |
| 1753 | if (status != -ENOENT) |
| 1754 | mlog_errno(status); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1755 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1759 | if (!ocfs2_read_links_count(dirfe)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1760 | /* can't make a file in a deleted directory. */ |
| 1761 | status = -ENOENT; |
| 1762 | goto bail; |
| 1763 | } |
| 1764 | |
| 1765 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 1766 | dentry->d_name.len); |
| 1767 | if (status) |
| 1768 | goto bail; |
| 1769 | |
| 1770 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 1771 | dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1772 | dentry->d_name.len, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1773 | if (status < 0) { |
| 1774 | mlog_errno(status); |
| 1775 | goto bail; |
| 1776 | } |
| 1777 | |
Mark Fasheh | da5cbf2 | 2006-10-06 18:34:35 -0700 | [diff] [blame] | 1778 | status = ocfs2_reserve_new_inode(osb, &inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1779 | if (status < 0) { |
| 1780 | if (status != -ENOSPC) |
| 1781 | mlog_errno(status); |
| 1782 | goto bail; |
| 1783 | } |
| 1784 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1785 | inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO); |
| 1786 | if (!inode) { |
| 1787 | status = -ENOMEM; |
| 1788 | mlog_errno(status); |
| 1789 | goto bail; |
| 1790 | } |
| 1791 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1792 | /* get security xattr */ |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 1793 | status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1794 | if (status) { |
| 1795 | if (status == -EOPNOTSUPP) |
| 1796 | si.enable = 0; |
| 1797 | else { |
| 1798 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1799 | goto bail; |
| 1800 | } |
| 1801 | } |
| 1802 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1803 | /* calculate meta data/clusters for setting security xattr */ |
| 1804 | if (si.enable) { |
| 1805 | status = ocfs2_calc_security_init(dir, &si, &want_clusters, |
| 1806 | &xattr_credits, &xattr_ac); |
| 1807 | if (status < 0) { |
| 1808 | mlog_errno(status); |
| 1809 | goto bail; |
| 1810 | } |
| 1811 | } |
| 1812 | |
| 1813 | /* don't reserve bitmap space for fast symlinks. */ |
| 1814 | if (l > ocfs2_fast_symlink_chars(sb)) |
| 1815 | want_clusters += 1; |
| 1816 | |
| 1817 | status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac); |
| 1818 | if (status < 0) { |
| 1819 | if (status != -ENOSPC) |
| 1820 | mlog_errno(status); |
| 1821 | goto bail; |
| 1822 | } |
| 1823 | |
| 1824 | handle = ocfs2_start_trans(osb, credits + xattr_credits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1825 | if (IS_ERR(handle)) { |
| 1826 | status = PTR_ERR(handle); |
| 1827 | handle = NULL; |
| 1828 | mlog_errno(status); |
| 1829 | goto bail; |
| 1830 | } |
| 1831 | |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 1832 | /* Starting to change things, restart is no longer possible. */ |
| 1833 | ocfs2_block_signals(&oldset); |
| 1834 | did_block_signals = 1; |
| 1835 | |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 1836 | status = dquot_alloc_inode(inode); |
| 1837 | if (status) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1838 | goto bail; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1839 | did_quota_inode = 1; |
| 1840 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1841 | trace_ocfs2_symlink_create(dir, dentry, dentry->d_name.len, |
| 1842 | dentry->d_name.name, |
| 1843 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 1844 | inode->i_mode); |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 1845 | |
| 1846 | status = ocfs2_mknod_locked(osb, dir, inode, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1847 | 0, &new_fe_bh, parent_fe_bh, handle, |
| 1848 | inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1849 | if (status < 0) { |
| 1850 | mlog_errno(status); |
| 1851 | goto bail; |
| 1852 | } |
| 1853 | |
| 1854 | fe = (struct ocfs2_dinode *) new_fe_bh->b_data; |
| 1855 | inode->i_rdev = 0; |
| 1856 | newsize = l - 1; |
Al Viro | ea022dfb | 2012-05-03 10:14:29 -0400 | [diff] [blame] | 1857 | inode->i_op = &ocfs2_symlink_inode_operations; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1858 | if (l > ocfs2_fast_symlink_chars(sb)) { |
Mark Fasheh | dcd0538 | 2007-01-16 11:32:23 -0800 | [diff] [blame] | 1859 | u32 offset = 0; |
| 1860 | |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 1861 | status = dquot_alloc_space_nodirty(inode, |
| 1862 | ocfs2_clusters_to_bytes(osb->sb, 1)); |
| 1863 | if (status) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1864 | goto bail; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1865 | did_quota = 1; |
Al Viro | ea022dfb | 2012-05-03 10:14:29 -0400 | [diff] [blame] | 1866 | inode->i_mapping->a_ops = &ocfs2_aops; |
Tao Ma | 0eb8d47 | 2008-08-18 17:38:45 +0800 | [diff] [blame] | 1867 | status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0, |
| 1868 | new_fe_bh, |
| 1869 | handle, data_ac, NULL, |
| 1870 | NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1871 | if (status < 0) { |
| 1872 | if (status != -ENOSPC && status != -EINTR) { |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1873 | mlog(ML_ERROR, |
| 1874 | "Failed to extend file to %llu\n", |
| 1875 | (unsigned long long)newsize); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1876 | mlog_errno(status); |
| 1877 | status = -ENOSPC; |
| 1878 | } |
| 1879 | goto bail; |
| 1880 | } |
| 1881 | i_size_write(inode, newsize); |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 1882 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1883 | } else { |
Al Viro | ea022dfb | 2012-05-03 10:14:29 -0400 | [diff] [blame] | 1884 | inode->i_mapping->a_ops = &ocfs2_fast_symlink_aops; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1885 | memcpy((char *) fe->id2.i_symlink, symname, l); |
| 1886 | i_size_write(inode, newsize); |
| 1887 | inode->i_blocks = 0; |
| 1888 | } |
| 1889 | |
| 1890 | status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh); |
| 1891 | if (status < 0) { |
| 1892 | mlog_errno(status); |
| 1893 | goto bail; |
| 1894 | } |
| 1895 | |
| 1896 | if (!ocfs2_inode_is_fast_symlink(inode)) { |
| 1897 | status = ocfs2_create_symlink_data(osb, handle, inode, |
| 1898 | symname); |
| 1899 | if (status < 0) { |
| 1900 | mlog_errno(status); |
| 1901 | goto bail; |
| 1902 | } |
| 1903 | } |
| 1904 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1905 | if (si.enable) { |
| 1906 | status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si, |
| 1907 | xattr_ac, data_ac); |
| 1908 | if (status < 0) { |
| 1909 | mlog_errno(status); |
| 1910 | goto bail; |
| 1911 | } |
| 1912 | } |
| 1913 | |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 1914 | /* |
| 1915 | * Do this before adding the entry to the directory. We add |
| 1916 | * also set d_op after success so that ->d_iput() will cleanup |
| 1917 | * the dentry lock even if ocfs2_add_entry() fails below. |
| 1918 | */ |
| 1919 | status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno); |
| 1920 | if (status) { |
| 1921 | mlog_errno(status); |
| 1922 | goto bail; |
| 1923 | } |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 1924 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1925 | status = ocfs2_add_entry(handle, dentry, inode, |
| 1926 | le64_to_cpu(fe->i_blkno), parent_fe_bh, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1927 | &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1928 | if (status < 0) { |
| 1929 | mlog_errno(status); |
| 1930 | goto bail; |
| 1931 | } |
| 1932 | |
| 1933 | insert_inode_hash(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1934 | d_instantiate(dentry, inode); |
| 1935 | bail: |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1936 | if (status < 0 && did_quota) |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 1937 | dquot_free_space_nodirty(inode, |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1938 | ocfs2_clusters_to_bytes(osb->sb, 1)); |
| 1939 | if (status < 0 && did_quota_inode) |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 1940 | dquot_free_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1941 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 1942 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1943 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1944 | ocfs2_inode_unlock(dir, 1); |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 1945 | if (did_block_signals) |
| 1946 | ocfs2_unblock_signals(&oldset); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1947 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1948 | brelse(new_fe_bh); |
| 1949 | brelse(parent_fe_bh); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1950 | kfree(si.value); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1951 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1952 | if (inode_ac) |
| 1953 | ocfs2_free_alloc_context(inode_ac); |
| 1954 | if (data_ac) |
| 1955 | ocfs2_free_alloc_context(data_ac); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1956 | if (xattr_ac) |
| 1957 | ocfs2_free_alloc_context(xattr_ac); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1958 | if ((status < 0) && inode) { |
Li Dongyang | ab41fdc | 2010-04-22 16:11:25 +0800 | [diff] [blame] | 1959 | OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR; |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1960 | clear_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1961 | iput(inode); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1962 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1963 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1964 | if (status) |
| 1965 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1966 | |
| 1967 | return status; |
| 1968 | } |
| 1969 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1970 | static int ocfs2_blkno_stringify(u64 blkno, char *name) |
| 1971 | { |
| 1972 | int status, namelen; |
| 1973 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1974 | namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx", |
| 1975 | (long long)blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1976 | if (namelen <= 0) { |
| 1977 | if (namelen) |
| 1978 | status = namelen; |
| 1979 | else |
| 1980 | status = -EINVAL; |
| 1981 | mlog_errno(status); |
| 1982 | goto bail; |
| 1983 | } |
| 1984 | if (namelen != OCFS2_ORPHAN_NAMELEN) { |
| 1985 | status = -EINVAL; |
| 1986 | mlog_errno(status); |
| 1987 | goto bail; |
| 1988 | } |
| 1989 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1990 | trace_ocfs2_blkno_stringify(blkno, name, namelen); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1991 | |
| 1992 | status = 0; |
| 1993 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1994 | if (status < 0) |
| 1995 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1996 | return status; |
| 1997 | } |
| 1998 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 1999 | static int ocfs2_lookup_lock_orphan_dir(struct ocfs2_super *osb, |
| 2000 | struct inode **ret_orphan_dir, |
| 2001 | struct buffer_head **ret_orphan_dir_bh) |
| 2002 | { |
| 2003 | struct inode *orphan_dir_inode; |
| 2004 | struct buffer_head *orphan_dir_bh = NULL; |
| 2005 | int ret = 0; |
| 2006 | |
| 2007 | orphan_dir_inode = ocfs2_get_system_file_inode(osb, |
| 2008 | ORPHAN_DIR_SYSTEM_INODE, |
| 2009 | osb->slot_num); |
| 2010 | if (!orphan_dir_inode) { |
| 2011 | ret = -ENOENT; |
| 2012 | mlog_errno(ret); |
| 2013 | return ret; |
| 2014 | } |
| 2015 | |
| 2016 | mutex_lock(&orphan_dir_inode->i_mutex); |
| 2017 | |
| 2018 | ret = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1); |
| 2019 | if (ret < 0) { |
| 2020 | mutex_unlock(&orphan_dir_inode->i_mutex); |
| 2021 | iput(orphan_dir_inode); |
| 2022 | |
| 2023 | mlog_errno(ret); |
| 2024 | return ret; |
| 2025 | } |
| 2026 | |
| 2027 | *ret_orphan_dir = orphan_dir_inode; |
| 2028 | *ret_orphan_dir_bh = orphan_dir_bh; |
| 2029 | |
| 2030 | return 0; |
| 2031 | } |
| 2032 | |
| 2033 | static int __ocfs2_prepare_orphan_dir(struct inode *orphan_dir_inode, |
| 2034 | struct buffer_head *orphan_dir_bh, |
| 2035 | u64 blkno, |
| 2036 | char *name, |
| 2037 | struct ocfs2_dir_lookup_result *lookup) |
| 2038 | { |
| 2039 | int ret; |
| 2040 | struct ocfs2_super *osb = OCFS2_SB(orphan_dir_inode->i_sb); |
| 2041 | |
| 2042 | ret = ocfs2_blkno_stringify(blkno, name); |
| 2043 | if (ret < 0) { |
| 2044 | mlog_errno(ret); |
| 2045 | return ret; |
| 2046 | } |
| 2047 | |
| 2048 | ret = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode, |
| 2049 | orphan_dir_bh, name, |
| 2050 | OCFS2_ORPHAN_NAMELEN, lookup); |
| 2051 | if (ret < 0) { |
| 2052 | mlog_errno(ret); |
| 2053 | return ret; |
| 2054 | } |
| 2055 | |
| 2056 | return 0; |
| 2057 | } |
| 2058 | |
| 2059 | /** |
| 2060 | * ocfs2_prepare_orphan_dir() - Prepare an orphan directory for |
| 2061 | * insertion of an orphan. |
| 2062 | * @osb: ocfs2 file system |
| 2063 | * @ret_orphan_dir: Orphan dir inode - returned locked! |
| 2064 | * @blkno: Actual block number of the inode to be inserted into orphan dir. |
| 2065 | * @lookup: dir lookup result, to be passed back into functions like |
| 2066 | * ocfs2_orphan_add |
| 2067 | * |
| 2068 | * Returns zero on success and the ret_orphan_dir, name and lookup |
| 2069 | * fields will be populated. |
| 2070 | * |
| 2071 | * Returns non-zero on failure. |
| 2072 | */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2073 | static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 2074 | struct inode **ret_orphan_dir, |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 2075 | u64 blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2076 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2077 | struct ocfs2_dir_lookup_result *lookup) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2078 | { |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 2079 | struct inode *orphan_dir_inode = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2080 | struct buffer_head *orphan_dir_bh = NULL; |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 2081 | int ret = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2082 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 2083 | ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir_inode, |
| 2084 | &orphan_dir_bh); |
| 2085 | if (ret < 0) { |
| 2086 | mlog_errno(ret); |
| 2087 | return ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2088 | } |
| 2089 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 2090 | ret = __ocfs2_prepare_orphan_dir(orphan_dir_inode, orphan_dir_bh, |
| 2091 | blkno, name, lookup); |
| 2092 | if (ret < 0) { |
| 2093 | mlog_errno(ret); |
| 2094 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2095 | } |
| 2096 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 2097 | *ret_orphan_dir = orphan_dir_inode; |
| 2098 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 2099 | out: |
| 2100 | brelse(orphan_dir_bh); |
| 2101 | |
| 2102 | if (ret) { |
| 2103 | ocfs2_inode_unlock(orphan_dir_inode, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 2104 | mutex_unlock(&orphan_dir_inode->i_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2105 | iput(orphan_dir_inode); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 2106 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2107 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2108 | if (ret) |
| 2109 | mlog_errno(ret); |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 2110 | return ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2111 | } |
| 2112 | |
| 2113 | static int ocfs2_orphan_add(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 2114 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2115 | struct inode *inode, |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2116 | struct buffer_head *fe_bh, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2117 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2118 | struct ocfs2_dir_lookup_result *lookup, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 2119 | struct inode *orphan_dir_inode) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2120 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2121 | struct buffer_head *orphan_dir_bh = NULL; |
| 2122 | int status = 0; |
| 2123 | struct ocfs2_dinode *orphan_fe; |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2124 | struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2125 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2126 | trace_ocfs2_orphan_add_begin( |
| 2127 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2128 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 2129 | status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2130 | if (status < 0) { |
| 2131 | mlog_errno(status); |
| 2132 | goto leave; |
| 2133 | } |
| 2134 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2135 | status = ocfs2_journal_access_di(handle, |
| 2136 | INODE_CACHE(orphan_dir_inode), |
| 2137 | orphan_dir_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2138 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2139 | if (status < 0) { |
| 2140 | mlog_errno(status); |
| 2141 | goto leave; |
| 2142 | } |
| 2143 | |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2144 | /* |
| 2145 | * We're going to journal the change of i_flags and i_orphaned_slot. |
| 2146 | * It's safe anyway, though some callers may duplicate the journaling. |
| 2147 | * Journaling within the func just make the logic look more |
| 2148 | * straightforward. |
| 2149 | */ |
| 2150 | status = ocfs2_journal_access_di(handle, |
| 2151 | INODE_CACHE(inode), |
| 2152 | fe_bh, |
| 2153 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 2154 | if (status < 0) { |
| 2155 | mlog_errno(status); |
| 2156 | goto leave; |
| 2157 | } |
| 2158 | |
Younger Liu | ea45466 | 2013-07-03 15:00:58 -0700 | [diff] [blame] | 2159 | /* we're a cluster, and nlink can change on disk from |
| 2160 | * underneath us... */ |
| 2161 | orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data; |
| 2162 | if (S_ISDIR(inode->i_mode)) |
| 2163 | ocfs2_add_links_count(orphan_fe, 1); |
| 2164 | set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe)); |
| 2165 | ocfs2_journal_dirty(handle, orphan_dir_bh); |
| 2166 | |
| 2167 | status = __ocfs2_add_entry(handle, orphan_dir_inode, name, |
| 2168 | OCFS2_ORPHAN_NAMELEN, inode, |
| 2169 | OCFS2_I(inode)->ip_blkno, |
| 2170 | orphan_dir_bh, lookup); |
| 2171 | if (status < 0) { |
| 2172 | mlog_errno(status); |
| 2173 | goto rollback; |
| 2174 | } |
| 2175 | |
Joseph Qi | 13eb988 | 2013-07-03 15:00:48 -0700 | [diff] [blame] | 2176 | fe->i_flags |= cpu_to_le32(OCFS2_ORPHANED_FL); |
Li Dongyang | d4cd187 | 2010-04-22 16:11:19 +0800 | [diff] [blame] | 2177 | OCFS2_I(inode)->ip_flags &= ~OCFS2_INODE_SKIP_ORPHAN_DIR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2178 | |
| 2179 | /* Record which orphan dir our inode now resides |
| 2180 | * in. delete_inode will use this to determine which orphan |
| 2181 | * dir to lock. */ |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 2182 | fe->i_orphaned_slot = cpu_to_le16(osb->slot_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2183 | |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2184 | ocfs2_journal_dirty(handle, fe_bh); |
| 2185 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2186 | trace_ocfs2_orphan_add_end((unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 2187 | osb->slot_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2188 | |
Younger Liu | ea45466 | 2013-07-03 15:00:58 -0700 | [diff] [blame] | 2189 | rollback: |
| 2190 | if (status < 0) { |
| 2191 | if (S_ISDIR(inode->i_mode)) |
| 2192 | ocfs2_add_links_count(orphan_fe, -1); |
| 2193 | set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe)); |
| 2194 | } |
| 2195 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2196 | leave: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 2197 | brelse(orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2198 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2199 | return status; |
| 2200 | } |
| 2201 | |
| 2202 | /* unlike orphan_add, we expect the orphan dir to already be locked here. */ |
| 2203 | int ocfs2_orphan_del(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 2204 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2205 | struct inode *orphan_dir_inode, |
| 2206 | struct inode *inode, |
| 2207 | struct buffer_head *orphan_dir_bh) |
| 2208 | { |
| 2209 | char name[OCFS2_ORPHAN_NAMELEN + 1]; |
| 2210 | struct ocfs2_dinode *orphan_fe; |
| 2211 | int status = 0; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2212 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2213 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2214 | status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name); |
| 2215 | if (status < 0) { |
| 2216 | mlog_errno(status); |
| 2217 | goto leave; |
| 2218 | } |
| 2219 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2220 | trace_ocfs2_orphan_del( |
| 2221 | (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno, |
| 2222 | name, OCFS2_ORPHAN_NAMELEN); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2223 | |
| 2224 | /* find it's spot in the orphan directory */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2225 | status = ocfs2_find_entry(name, OCFS2_ORPHAN_NAMELEN, orphan_dir_inode, |
| 2226 | &lookup); |
| 2227 | if (status) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2228 | mlog_errno(status); |
| 2229 | goto leave; |
| 2230 | } |
| 2231 | |
| 2232 | /* remove it from the orphan directory */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2233 | status = ocfs2_delete_entry(handle, orphan_dir_inode, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2234 | if (status < 0) { |
| 2235 | mlog_errno(status); |
| 2236 | goto leave; |
| 2237 | } |
| 2238 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2239 | status = ocfs2_journal_access_di(handle, |
| 2240 | INODE_CACHE(orphan_dir_inode), |
| 2241 | orphan_dir_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2242 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2243 | if (status < 0) { |
| 2244 | mlog_errno(status); |
| 2245 | goto leave; |
| 2246 | } |
| 2247 | |
| 2248 | /* do the i_nlink dance! :) */ |
| 2249 | orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data; |
| 2250 | if (S_ISDIR(inode->i_mode)) |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 2251 | ocfs2_add_links_count(orphan_fe, -1); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2252 | set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe)); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 2253 | ocfs2_journal_dirty(handle, orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2254 | |
| 2255 | leave: |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2256 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2257 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2258 | if (status) |
| 2259 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2260 | return status; |
| 2261 | } |
| 2262 | |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2263 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2264 | * ocfs2_prep_new_orphaned_file() - Prepare the orphan dir to receive a newly |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2265 | * allocated file. This is different from the typical 'add to orphan dir' |
| 2266 | * operation in that the inode does not yet exist. This is a problem because |
| 2267 | * the orphan dir stringifies the inode block number to come up with it's |
| 2268 | * dirent. Obviously if the inode does not yet exist we have a chicken and egg |
| 2269 | * problem. This function works around it by calling deeper into the orphan |
| 2270 | * and suballoc code than other callers. Use this only by necessity. |
| 2271 | * @dir: The directory which this inode will ultimately wind up under - not the |
| 2272 | * orphan dir! |
| 2273 | * @dir_bh: buffer_head the @dir inode block |
| 2274 | * @orphan_name: string of length (CFS2_ORPHAN_NAMELEN + 1). Will be filled |
| 2275 | * with the string to be used for orphan dirent. Pass back to the orphan dir |
| 2276 | * code. |
| 2277 | * @ret_orphan_dir: orphan dir inode returned to be passed back into orphan |
| 2278 | * dir code. |
| 2279 | * @ret_di_blkno: block number where the new inode will be allocated. |
| 2280 | * @orphan_insert: Dir insert context to be passed back into orphan dir code. |
| 2281 | * @ret_inode_ac: Inode alloc context to be passed back to the allocator. |
| 2282 | * |
| 2283 | * Returns zero on success and the ret_orphan_dir, name and lookup |
| 2284 | * fields will be populated. |
| 2285 | * |
| 2286 | * Returns non-zero on failure. |
| 2287 | */ |
| 2288 | static int ocfs2_prep_new_orphaned_file(struct inode *dir, |
| 2289 | struct buffer_head *dir_bh, |
| 2290 | char *orphan_name, |
| 2291 | struct inode **ret_orphan_dir, |
| 2292 | u64 *ret_di_blkno, |
| 2293 | struct ocfs2_dir_lookup_result *orphan_insert, |
| 2294 | struct ocfs2_alloc_context **ret_inode_ac) |
| 2295 | { |
| 2296 | int ret; |
| 2297 | u64 di_blkno; |
| 2298 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2299 | struct inode *orphan_dir = NULL; |
| 2300 | struct buffer_head *orphan_dir_bh = NULL; |
| 2301 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 2302 | |
| 2303 | ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir, &orphan_dir_bh); |
| 2304 | if (ret < 0) { |
| 2305 | mlog_errno(ret); |
| 2306 | return ret; |
| 2307 | } |
| 2308 | |
| 2309 | /* reserve an inode spot */ |
| 2310 | ret = ocfs2_reserve_new_inode(osb, &inode_ac); |
| 2311 | if (ret < 0) { |
| 2312 | if (ret != -ENOSPC) |
| 2313 | mlog_errno(ret); |
| 2314 | goto out; |
| 2315 | } |
| 2316 | |
| 2317 | ret = ocfs2_find_new_inode_loc(dir, dir_bh, inode_ac, |
| 2318 | &di_blkno); |
| 2319 | if (ret) { |
| 2320 | mlog_errno(ret); |
| 2321 | goto out; |
| 2322 | } |
| 2323 | |
| 2324 | ret = __ocfs2_prepare_orphan_dir(orphan_dir, orphan_dir_bh, |
| 2325 | di_blkno, orphan_name, orphan_insert); |
| 2326 | if (ret < 0) { |
| 2327 | mlog_errno(ret); |
| 2328 | goto out; |
| 2329 | } |
| 2330 | |
| 2331 | out: |
| 2332 | if (ret == 0) { |
| 2333 | *ret_orphan_dir = orphan_dir; |
| 2334 | *ret_di_blkno = di_blkno; |
| 2335 | *ret_inode_ac = inode_ac; |
| 2336 | /* |
| 2337 | * orphan_name and orphan_insert are already up to |
| 2338 | * date via prepare_orphan_dir |
| 2339 | */ |
| 2340 | } else { |
| 2341 | /* Unroll reserve_new_inode* */ |
| 2342 | if (inode_ac) |
| 2343 | ocfs2_free_alloc_context(inode_ac); |
| 2344 | |
| 2345 | /* Unroll orphan dir locking */ |
| 2346 | mutex_unlock(&orphan_dir->i_mutex); |
| 2347 | ocfs2_inode_unlock(orphan_dir, 1); |
| 2348 | iput(orphan_dir); |
| 2349 | } |
| 2350 | |
| 2351 | brelse(orphan_dir_bh); |
| 2352 | |
Xiaowei.Hu | 7869e59 | 2013-06-12 14:04:41 -0700 | [diff] [blame] | 2353 | return ret; |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2354 | } |
| 2355 | |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2356 | int ocfs2_create_inode_in_orphan(struct inode *dir, |
| 2357 | int mode, |
| 2358 | struct inode **new_inode) |
| 2359 | { |
| 2360 | int status, did_quota_inode = 0; |
| 2361 | struct inode *inode = NULL; |
| 2362 | struct inode *orphan_dir = NULL; |
| 2363 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2364 | struct ocfs2_dinode *di = NULL; |
| 2365 | handle_t *handle = NULL; |
| 2366 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
| 2367 | struct buffer_head *parent_di_bh = NULL; |
| 2368 | struct buffer_head *new_di_bh = NULL; |
| 2369 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 2370 | struct ocfs2_dir_lookup_result orphan_insert = { NULL, }; |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2371 | u64 uninitialized_var(di_blkno), suballoc_loc; |
| 2372 | u16 suballoc_bit; |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2373 | |
| 2374 | status = ocfs2_inode_lock(dir, &parent_di_bh, 1); |
| 2375 | if (status < 0) { |
| 2376 | if (status != -ENOENT) |
| 2377 | mlog_errno(status); |
| 2378 | return status; |
| 2379 | } |
| 2380 | |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2381 | status = ocfs2_prep_new_orphaned_file(dir, parent_di_bh, |
| 2382 | orphan_name, &orphan_dir, |
| 2383 | &di_blkno, &orphan_insert, &inode_ac); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2384 | if (status < 0) { |
| 2385 | if (status != -ENOSPC) |
| 2386 | mlog_errno(status); |
| 2387 | goto leave; |
| 2388 | } |
| 2389 | |
| 2390 | inode = ocfs2_get_init_inode(dir, mode); |
| 2391 | if (!inode) { |
| 2392 | status = -ENOMEM; |
| 2393 | mlog_errno(status); |
| 2394 | goto leave; |
| 2395 | } |
| 2396 | |
| 2397 | handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, 0, 0)); |
| 2398 | if (IS_ERR(handle)) { |
| 2399 | status = PTR_ERR(handle); |
| 2400 | handle = NULL; |
| 2401 | mlog_errno(status); |
| 2402 | goto leave; |
| 2403 | } |
| 2404 | |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 2405 | status = dquot_alloc_inode(inode); |
| 2406 | if (status) |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2407 | goto leave; |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2408 | did_quota_inode = 1; |
| 2409 | |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2410 | status = ocfs2_claim_new_inode_at_loc(handle, dir, inode_ac, |
| 2411 | &suballoc_loc, |
| 2412 | &suballoc_bit, di_blkno); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2413 | if (status < 0) { |
| 2414 | mlog_errno(status); |
| 2415 | goto leave; |
| 2416 | } |
| 2417 | |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 2418 | clear_nlink(inode); |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2419 | /* do the real work now. */ |
| 2420 | status = __ocfs2_mknod_locked(dir, inode, |
| 2421 | 0, &new_di_bh, parent_di_bh, handle, |
| 2422 | inode_ac, di_blkno, suballoc_loc, |
| 2423 | suballoc_bit); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2424 | if (status < 0) { |
| 2425 | mlog_errno(status); |
| 2426 | goto leave; |
| 2427 | } |
| 2428 | |
| 2429 | di = (struct ocfs2_dinode *)new_di_bh->b_data; |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2430 | status = ocfs2_orphan_add(osb, handle, inode, new_di_bh, orphan_name, |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2431 | &orphan_insert, orphan_dir); |
| 2432 | if (status < 0) { |
| 2433 | mlog_errno(status); |
| 2434 | goto leave; |
| 2435 | } |
| 2436 | |
| 2437 | /* get open lock so that only nodes can't remove it from orphan dir. */ |
| 2438 | status = ocfs2_open_lock(inode); |
| 2439 | if (status < 0) |
| 2440 | mlog_errno(status); |
| 2441 | |
Tao Ma | c7d260a | 2009-12-18 10:24:54 +0800 | [diff] [blame] | 2442 | insert_inode_hash(inode); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2443 | leave: |
| 2444 | if (status < 0 && did_quota_inode) |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 2445 | dquot_free_inode(inode); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2446 | if (handle) |
| 2447 | ocfs2_commit_trans(osb, handle); |
| 2448 | |
| 2449 | if (orphan_dir) { |
| 2450 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
| 2451 | ocfs2_inode_unlock(orphan_dir, 1); |
| 2452 | mutex_unlock(&orphan_dir->i_mutex); |
| 2453 | iput(orphan_dir); |
| 2454 | } |
| 2455 | |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2456 | if ((status < 0) && inode) { |
| 2457 | clear_nlink(inode); |
| 2458 | iput(inode); |
| 2459 | } |
| 2460 | |
| 2461 | if (inode_ac) |
| 2462 | ocfs2_free_alloc_context(inode_ac); |
| 2463 | |
| 2464 | brelse(new_di_bh); |
| 2465 | |
| 2466 | if (!status) |
| 2467 | *new_inode = inode; |
| 2468 | |
| 2469 | ocfs2_free_dir_lookup_result(&orphan_insert); |
| 2470 | |
| 2471 | ocfs2_inode_unlock(dir, 1); |
| 2472 | brelse(parent_di_bh); |
| 2473 | return status; |
| 2474 | } |
| 2475 | |
| 2476 | int ocfs2_mv_orphaned_inode_to_new(struct inode *dir, |
| 2477 | struct inode *inode, |
| 2478 | struct dentry *dentry) |
| 2479 | { |
| 2480 | int status = 0; |
| 2481 | struct buffer_head *parent_di_bh = NULL; |
| 2482 | handle_t *handle = NULL; |
| 2483 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2484 | struct ocfs2_dinode *dir_di, *di; |
| 2485 | struct inode *orphan_dir_inode = NULL; |
| 2486 | struct buffer_head *orphan_dir_bh = NULL; |
| 2487 | struct buffer_head *di_bh = NULL; |
| 2488 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
| 2489 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2490 | trace_ocfs2_mv_orphaned_inode_to_new(dir, dentry, |
| 2491 | dentry->d_name.len, dentry->d_name.name, |
| 2492 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 2493 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2494 | |
| 2495 | status = ocfs2_inode_lock(dir, &parent_di_bh, 1); |
| 2496 | if (status < 0) { |
| 2497 | if (status != -ENOENT) |
| 2498 | mlog_errno(status); |
| 2499 | return status; |
| 2500 | } |
| 2501 | |
| 2502 | dir_di = (struct ocfs2_dinode *) parent_di_bh->b_data; |
| 2503 | if (!dir_di->i_links_count) { |
| 2504 | /* can't make a file in a deleted directory. */ |
| 2505 | status = -ENOENT; |
| 2506 | goto leave; |
| 2507 | } |
| 2508 | |
| 2509 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 2510 | dentry->d_name.len); |
| 2511 | if (status) |
| 2512 | goto leave; |
| 2513 | |
| 2514 | /* get a spot inside the dir. */ |
| 2515 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_di_bh, |
| 2516 | dentry->d_name.name, |
| 2517 | dentry->d_name.len, &lookup); |
| 2518 | if (status < 0) { |
| 2519 | mlog_errno(status); |
| 2520 | goto leave; |
| 2521 | } |
| 2522 | |
| 2523 | orphan_dir_inode = ocfs2_get_system_file_inode(osb, |
| 2524 | ORPHAN_DIR_SYSTEM_INODE, |
| 2525 | osb->slot_num); |
| 2526 | if (!orphan_dir_inode) { |
| 2527 | status = -EEXIST; |
| 2528 | mlog_errno(status); |
| 2529 | goto leave; |
| 2530 | } |
| 2531 | |
| 2532 | mutex_lock(&orphan_dir_inode->i_mutex); |
| 2533 | |
| 2534 | status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1); |
| 2535 | if (status < 0) { |
| 2536 | mlog_errno(status); |
| 2537 | mutex_unlock(&orphan_dir_inode->i_mutex); |
| 2538 | iput(orphan_dir_inode); |
| 2539 | goto leave; |
| 2540 | } |
| 2541 | |
| 2542 | status = ocfs2_read_inode_block(inode, &di_bh); |
| 2543 | if (status < 0) { |
| 2544 | mlog_errno(status); |
| 2545 | goto orphan_unlock; |
| 2546 | } |
| 2547 | |
| 2548 | handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb)); |
| 2549 | if (IS_ERR(handle)) { |
| 2550 | status = PTR_ERR(handle); |
| 2551 | handle = NULL; |
| 2552 | mlog_errno(status); |
| 2553 | goto orphan_unlock; |
| 2554 | } |
| 2555 | |
| 2556 | status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), |
| 2557 | di_bh, OCFS2_JOURNAL_ACCESS_WRITE); |
| 2558 | if (status < 0) { |
| 2559 | mlog_errno(status); |
| 2560 | goto out_commit; |
| 2561 | } |
| 2562 | |
| 2563 | status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode, |
| 2564 | orphan_dir_bh); |
| 2565 | if (status < 0) { |
| 2566 | mlog_errno(status); |
| 2567 | goto out_commit; |
| 2568 | } |
| 2569 | |
| 2570 | di = (struct ocfs2_dinode *)di_bh->b_data; |
Joseph Qi | 13eb988 | 2013-07-03 15:00:48 -0700 | [diff] [blame] | 2571 | di->i_flags &= ~cpu_to_le32(OCFS2_ORPHANED_FL); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2572 | di->i_orphaned_slot = 0; |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2573 | set_nlink(inode, 1); |
Tao Ma | 10cf1a0 | 2009-12-18 10:24:55 +0800 | [diff] [blame] | 2574 | ocfs2_set_links_count(di, inode->i_nlink); |
Darrick J. Wong | 6fdb702 | 2014-04-03 14:47:08 -0700 | [diff] [blame] | 2575 | ocfs2_update_inode_fsync_trans(handle, inode, 1); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2576 | ocfs2_journal_dirty(handle, di_bh); |
| 2577 | |
| 2578 | status = ocfs2_add_entry(handle, dentry, inode, |
| 2579 | OCFS2_I(inode)->ip_blkno, parent_di_bh, |
| 2580 | &lookup); |
| 2581 | if (status < 0) { |
| 2582 | mlog_errno(status); |
| 2583 | goto out_commit; |
| 2584 | } |
| 2585 | |
| 2586 | status = ocfs2_dentry_attach_lock(dentry, inode, |
| 2587 | OCFS2_I(dir)->ip_blkno); |
| 2588 | if (status) { |
| 2589 | mlog_errno(status); |
| 2590 | goto out_commit; |
| 2591 | } |
| 2592 | |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2593 | d_instantiate(dentry, inode); |
| 2594 | status = 0; |
| 2595 | out_commit: |
| 2596 | ocfs2_commit_trans(osb, handle); |
| 2597 | orphan_unlock: |
| 2598 | ocfs2_inode_unlock(orphan_dir_inode, 1); |
| 2599 | mutex_unlock(&orphan_dir_inode->i_mutex); |
| 2600 | iput(orphan_dir_inode); |
| 2601 | leave: |
| 2602 | |
| 2603 | ocfs2_inode_unlock(dir, 1); |
| 2604 | |
| 2605 | brelse(di_bh); |
| 2606 | brelse(parent_di_bh); |
| 2607 | brelse(orphan_dir_bh); |
| 2608 | |
| 2609 | ocfs2_free_dir_lookup_result(&lookup); |
| 2610 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2611 | if (status) |
| 2612 | mlog_errno(status); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2613 | |
| 2614 | return status; |
| 2615 | } |
| 2616 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 2617 | const struct inode_operations ocfs2_dir_iops = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2618 | .create = ocfs2_create, |
| 2619 | .lookup = ocfs2_lookup, |
| 2620 | .link = ocfs2_link, |
| 2621 | .unlink = ocfs2_unlink, |
| 2622 | .rmdir = ocfs2_unlink, |
| 2623 | .symlink = ocfs2_symlink, |
| 2624 | .mkdir = ocfs2_mkdir, |
| 2625 | .mknod = ocfs2_mknod, |
| 2626 | .rename = ocfs2_rename, |
| 2627 | .setattr = ocfs2_setattr, |
| 2628 | .getattr = ocfs2_getattr, |
Tiger Yang | d38eb8d | 2006-11-27 09:59:21 +0800 | [diff] [blame] | 2629 | .permission = ocfs2_permission, |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 2630 | .setxattr = generic_setxattr, |
| 2631 | .getxattr = generic_getxattr, |
| 2632 | .listxattr = ocfs2_listxattr, |
| 2633 | .removexattr = generic_removexattr, |
Tristan Ye | 55f4946 | 2009-12-17 18:42:16 +0800 | [diff] [blame] | 2634 | .fiemap = ocfs2_fiemap, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 2635 | .get_acl = ocfs2_iop_get_acl, |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 2636 | .set_acl = ocfs2_iop_set_acl, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2637 | }; |