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