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