blob: 5381020aaa9a228673402abf990542cc33f494b3 [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Mark Fashehccd979b2005-12-15 14:31:24 -08002/* -*- 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 Fashehccd979b2005-12-15 14:31:24 -080023 */
24
25#include <linux/fs.h>
26#include <linux/types.h>
27#include <linux/slab.h>
28#include <linux/highmem.h>
Jan Karaa90714c2008-10-09 19:38:40 +020029#include <linux/quotaops.h>
Jeff Laytoncc56c332017-12-11 06:35:17 -050030#include <linux/iversion.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080031
Mark Fashehccd979b2005-12-15 14:31:24 -080032#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 Fashehaa958872006-04-21 13:49:02 -070046#include "super.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080047#include "symlink.h"
48#include "sysfile.h"
49#include "uptodate.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080050#include "xattr.h"
Tiger Yang89c38bd2008-11-14 11:17:41 +080051#include "acl.h"
Tao Ma8990e442011-02-23 22:45:26 +080052#include "ocfs2_trace.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080053
54#include "buffer_head_io.h"
55
Mark Fashehccd979b2005-12-15 14:31:24 -080056static int ocfs2_mknod_locked(struct ocfs2_super *osb,
57 struct inode *dir,
Tiger Yangf5d36202008-11-14 11:15:44 +080058 struct inode *inode,
Mark Fashehccd979b2005-12-15 14:31:24 -080059 dev_t dev,
60 struct buffer_head **new_fe_bh,
61 struct buffer_head *parent_fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -070062 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080063 struct ocfs2_alloc_context *inode_ac);
64
Mark Fashehccd979b2005-12-15 14:31:24 -080065static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -070066 struct inode **ret_orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +080067 u64 blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -080068 char *name,
Joseph Qi06ee5c72015-02-16 15:59:54 -080069 struct ocfs2_dir_lookup_result *lookup,
70 bool dio);
Mark Fashehccd979b2005-12-15 14:31:24 -080071
72static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070073 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080074 struct inode *inode,
Tristan Ye3939fda2010-03-19 09:21:09 +080075 struct buffer_head *fe_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -080076 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -080077 struct ocfs2_dir_lookup_result *lookup,
Joseph Qi06ee5c72015-02-16 15:59:54 -080078 struct inode *orphan_dir_inode,
79 bool dio);
Mark Fashehccd979b2005-12-15 14:31:24 -080080
81static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070082 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080083 struct inode *inode,
84 const char *symname);
85
Xue jiufei53dc20b2015-01-08 14:32:23 -080086static 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
93static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2);
Mark Fashehccd979b2005-12-15 14:31:24 -080094/* An orphan dir name is an 8 byte value, printed as a hex string */
95#define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64)))
96
97static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040098 unsigned int flags)
Mark Fashehccd979b2005-12-15 14:31:24 -080099{
100 int status;
101 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800102 struct inode *inode = NULL;
103 struct dentry *ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800104 struct ocfs2_inode_info *oi;
105
Tao Ma8990e442011-02-23 22:45:26 +0800106 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 Fashehccd979b2005-12-15 14:31:24 -0800109
110 if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) {
111 ret = ERR_PTR(-ENAMETOOLONG);
112 goto bail;
113 }
114
Jan Karacb257972009-06-04 15:26:50 +0200115 status = ocfs2_inode_lock_nested(dir, NULL, 0, OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800116 if (status < 0) {
117 if (status != -ENOENT)
118 mlog_errno(status);
119 ret = ERR_PTR(status);
120 goto bail;
121 }
122
Mark Fashehbe94d112007-09-11 15:22:06 -0700123 status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name,
124 dentry->d_name.len, &blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800125 if (status < 0)
126 goto bail_add;
127
Jan Kara5fa06132008-01-11 00:11:45 +0100128 inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800129 if (IS_ERR(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800130 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 Fashehccd979b2005-12-15 14:31:24 -0800142 spin_unlock(&oi->ip_lock);
143
144bail_add:
Mark Fashehccd979b2005-12-15 14:31:24 -0800145 ret = d_splice_alias(inode, dentry);
146
Mark Fasheh379dfe92006-09-08 14:21:03 -0700147 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 Weinbergerd3556ba2014-10-29 14:50:53 -0700158 if (!IS_ERR_OR_NULL(ret))
Mark Fasheh379dfe92006-09-08 14:21:03 -0700159 dentry = ret;
160
161 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700162 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700163 if (status) {
164 mlog_errno(status);
165 ret = ERR_PTR(status);
166 goto bail_unlock;
167 }
Goldwyn Rodrigues5e98d492010-06-28 10:04:32 -0500168 } else
169 ocfs2_dentry_attach_gen(dentry);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700170
Mark Fashehccd979b2005-12-15 14:31:24 -0800171bail_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 Fasheh34d024f2007-09-24 15:56:19 -0700175 * the downconvert thread and have a stale dentry. */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700176 ocfs2_inode_unlock(dir, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800177
178bail:
Mark Fashehccd979b2005-12-15 14:31:24 -0800179
Tao Ma8990e442011-02-23 22:45:26 +0800180 trace_ocfs2_lookup_ret(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -0800181
182 return ret;
183}
184
Al Viro67697cb2011-07-26 02:55:32 -0400185static struct inode *ocfs2_get_init_inode(struct inode *dir, umode_t mode)
Tiger Yangf5d36202008-11-14 11:15:44 +0800186{
187 struct inode *inode;
Jan Kara9c89fe02015-07-14 13:36:02 +0200188 int status;
Tiger Yangf5d36202008-11-14 11:15:44 +0800189
190 inode = new_inode(dir->i_sb);
191 if (!inode) {
192 mlog(ML_ERROR, "new_inode failed!\n");
Jan Kara9c89fe02015-07-14 13:36:02 +0200193 return ERR_PTR(-ENOMEM);
Tiger Yangf5d36202008-11-14 11:15:44 +0800194 }
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 Szeredibfe86842011-10-28 14:13:29 +0200200 set_nlink(inode, 2);
Dmitry Monakhov75fe0a22010-03-04 17:32:16 +0300201 inode_init_owner(inode, dir, mode);
Jan Kara9c89fe02015-07-14 13:36:02 +0200202 status = dquot_initialize(inode);
203 if (status)
204 return ERR_PTR(status);
205
Tiger Yangf5d36202008-11-14 11:15:44 +0800206 return inode;
207}
208
jiangyiwen595297a2014-06-23 13:22:09 -0700209static 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 Fashehccd979b2005-12-15 14:31:24 -0800224static int ocfs2_mknod(struct inode *dir,
225 struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400226 umode_t mode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800227 dev_t dev)
228{
229 int status = 0;
230 struct buffer_head *parent_fe_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700231 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800232 struct ocfs2_super *osb;
233 struct ocfs2_dinode *dirfe;
234 struct buffer_head *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800235 struct inode *inode = NULL;
236 struct ocfs2_alloc_context *inode_ac = NULL;
237 struct ocfs2_alloc_context *data_ac = NULL;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800238 struct ocfs2_alloc_context *meta_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +0800239 int want_clusters = 0;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800240 int want_meta = 0;
Tiger Yang534eadd2008-11-14 11:16:41 +0800241 int xattr_credits = 0;
242 struct ocfs2_security_xattr_info si = {
243 .enable = 1,
244 };
Jan Karaa90714c2008-10-09 19:38:40 +0200245 int did_quota_inode = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800246 struct ocfs2_dir_lookup_result lookup = { NULL, };
Joel Becker547ba7c2010-05-10 11:56:52 -0700247 sigset_t oldset;
248 int did_block_signals = 0;
jiangyiwen595297a2014-06-23 13:22:09 -0700249 struct ocfs2_dentry_lock *dl = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800250
Tao Ma8990e442011-02-23 22:45:26 +0800251 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 Fashehccd979b2005-12-15 14:31:24 -0800254
Jan Kara9c89fe02015-07-14 13:36:02 +0200255 status = dquot_initialize(dir);
256 if (status) {
257 mlog_errno(status);
258 return status;
259 }
Christoph Hellwig907f4552010-03-03 09:05:06 -0500260
Mark Fashehccd979b2005-12-15 14:31:24 -0800261 /* get our super block */
262 osb = OCFS2_SB(dir->i_sb);
263
Mark Fashehe63aecb62007-10-18 15:30:42 -0700264 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehe3a82132006-10-05 16:04:17 -0700265 if (status < 0) {
266 if (status != -ENOENT)
267 mlog_errno(status);
268 return status;
269 }
270
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800271 if (S_ISDIR(mode) && (dir->i_nlink >= ocfs2_link_max(osb))) {
Mark Fasheha663e302006-08-09 11:45:07 -0700272 status = -EMLINK;
273 goto leave;
274 }
275
Mark Fashehccd979b2005-12-15 14:31:24 -0800276 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800277 if (!ocfs2_read_links_count(dirfe)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800278 /* 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 Fasheh4a12ca32008-11-12 15:43:34 -0800291 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800292 if (status < 0) {
293 mlog_errno(status);
294 goto leave;
295 }
296
297 /* reserve an inode spot */
Mark Fashehda5cbf22006-10-06 18:34:35 -0700298 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800299 if (status < 0) {
300 if (status != -ENOSPC)
301 mlog_errno(status);
302 goto leave;
303 }
304
Tiger Yangf5d36202008-11-14 11:15:44 +0800305 inode = ocfs2_get_init_inode(dir, mode);
Jan Kara9c89fe02015-07-14 13:36:02 +0200306 if (IS_ERR(inode)) {
307 status = PTR_ERR(inode);
308 inode = NULL;
Tiger Yangf5d36202008-11-14 11:15:44 +0800309 mlog_errno(status);
310 goto leave;
311 }
312
Tiger Yang534eadd2008-11-14 11:16:41 +0800313 /* get security xattr */
Eric Paris2a7dba32011-02-01 11:05:39 -0500314 status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
Tiger Yang534eadd2008-11-14 11:16:41 +0800315 if (status) {
316 if (status == -EOPNOTSUPP)
317 si.enable = 0;
318 else {
319 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800320 goto leave;
321 }
322 }
323
Tiger Yang89c38bd2008-11-14 11:17:41 +0800324 /* calculate meta data/clusters for setting security and acl xattr */
325 status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800326 &si, &want_clusters,
327 &xattr_credits, &want_meta);
Tiger Yang89c38bd2008-11-14 11:17:41 +0800328 if (status < 0) {
329 mlog_errno(status);
330 goto leave;
Tiger Yang534eadd2008-11-14 11:16:41 +0800331 }
332
333 /* Reserve a cluster if creating an extent based directory. */
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800334 if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) {
Tiger Yang534eadd2008-11-14 11:16:41 +0800335 want_clusters += 1;
336
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800337 /* Dir indexing requires extra space as well */
Mark Fasheh4ed8a6b2008-11-24 17:02:08 -0800338 if (ocfs2_supports_indexed_dirs(osb))
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800339 want_meta++;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800340 }
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 Yang534eadd2008-11-14 11:16:41 +0800349 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 Fasheh9b7895e2008-11-12 16:27:44 -0800356 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb,
357 S_ISDIR(mode),
358 xattr_credits));
Mark Fashehccd979b2005-12-15 14:31:24 -0800359 if (IS_ERR(handle)) {
360 status = PTR_ERR(handle);
361 handle = NULL;
362 mlog_errno(status);
363 goto leave;
364 }
365
Joel Becker547ba7c2010-05-10 11:56:52 -0700366 /* Starting to change things, restart is no longer possible. */
367 ocfs2_block_signals(&oldset);
368 did_block_signals = 1;
369
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500370 status = dquot_alloc_inode(inode);
371 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +0200372 goto leave;
Jan Karaa90714c2008-10-09 19:38:40 +0200373 did_quota_inode = 1;
374
Mark Fashehccd979b2005-12-15 14:31:24 -0800375 /* do the real work now. */
Tao Ma19bd3412009-08-18 11:44:10 +0800376 status = ocfs2_mknod_locked(osb, dir, inode, dev,
Mark Fashehccd979b2005-12-15 14:31:24 -0800377 &new_fe_bh, parent_fe_bh, handle,
Tiger Yangf5d36202008-11-14 11:15:44 +0800378 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800379 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 Fasheh9b7895e2008-11-12 16:27:44 -0800386 new_fe_bh, data_ac, meta_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800387 if (status < 0) {
388 mlog_errno(status);
389 goto leave;
390 }
391
Joel Becker0cf2f762009-02-12 16:41:25 -0800392 status = ocfs2_journal_access_di(handle, INODE_CACHE(dir),
393 parent_fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700394 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800395 if (status < 0) {
396 mlog_errno(status);
397 goto leave;
398 }
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800399 ocfs2_add_links_count(dirfe, 1);
Joel Beckerec20cec2010-03-19 14:13:52 -0700400 ocfs2_journal_dirty(handle, parent_fe_bh);
Dave Hansend8c76e62006-09-30 23:29:04 -0700401 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800402 }
403
Junxiao Bic25a1e02016-05-12 15:42:18 -0700404 status = ocfs2_init_acl(handle, inode, dir, new_fe_bh, parent_fe_bh,
405 meta_ac, data_ac);
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800406
Tiger Yang89c38bd2008-11-14 11:17:41 +0800407 if (status < 0) {
408 mlog_errno(status);
wangjian0434c9f42020-04-01 21:04:02 -0700409 goto roll_back;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800410 }
411
Tiger Yang534eadd2008-11-14 11:16:41 +0800412 if (si.enable) {
413 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800414 meta_ac, data_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +0800415 if (status < 0) {
416 mlog_errno(status);
wangjian0434c9f42020-04-01 21:04:02 -0700417 goto roll_back;
Tiger Yang534eadd2008-11-14 11:16:41 +0800418 }
419 }
420
Mark Fasheha9743fc2010-04-23 11:42:22 -0700421 /*
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);
wangjian0434c9f42020-04-01 21:04:02 -0700430 goto roll_back;
Mark Fasheha9743fc2010-04-23 11:42:22 -0700431 }
Mark Fasheha9743fc2010-04-23 11:42:22 -0700432
jiangyiwen595297a2014-06-23 13:22:09 -0700433 dl = dentry->d_fsdata;
434
Mark Fashehccd979b2005-12-15 14:31:24 -0800435 status = ocfs2_add_entry(handle, dentry, inode,
436 OCFS2_I(inode)->ip_blkno, parent_fe_bh,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800437 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800438 if (status < 0) {
439 mlog_errno(status);
wangjian0434c9f42020-04-01 21:04:02 -0700440 goto roll_back;
Mark Fashehccd979b2005-12-15 14:31:24 -0800441 }
442
443 insert_inode_hash(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800444 d_instantiate(dentry, inode);
445 status = 0;
wangjian0434c9f42020-04-01 21:04:02 -0700446
447roll_back:
448 if (status < 0 && S_ISDIR(mode)) {
449 ocfs2_add_links_count(dirfe, -1);
450 drop_nlink(dir);
451 }
452
Mark Fashehccd979b2005-12-15 14:31:24 -0800453leave:
Jan Karaa90714c2008-10-09 19:38:40 +0200454 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500455 dquot_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800456 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700457 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800458
Mark Fashehe63aecb62007-10-18 15:30:42 -0700459 ocfs2_inode_unlock(dir, 1);
Joel Becker547ba7c2010-05-10 11:56:52 -0700460 if (did_block_signals)
461 ocfs2_unblock_signals(&oldset);
Mark Fashehe3a82132006-10-05 16:04:17 -0700462
Mark Fasheha81cb882008-10-07 14:25:16 -0700463 brelse(new_fe_bh);
Mark Fasheha81cb882008-10-07 14:25:16 -0700464 brelse(parent_fe_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +0800465 kfree(si.value);
Mark Fashehccd979b2005-12-15 14:31:24 -0800466
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800467 ocfs2_free_dir_lookup_result(&lookup);
468
Mark Fashehccd979b2005-12-15 14:31:24 -0800469 if (inode_ac)
470 ocfs2_free_alloc_context(inode_ac);
471
472 if (data_ac)
473 ocfs2_free_alloc_context(data_ac);
474
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800475 if (meta_ac)
476 ocfs2_free_alloc_context(meta_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +0800477
Li Dongyang062d3402010-04-22 16:11:29 +0800478 /*
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) {
jiangyiwen595297a2014-06-23 13:22:09 -0700484 if (dl)
485 ocfs2_cleanup_add_entry_failure(osb, dentry, inode);
486
Li Dongyang062d3402010-04-22 16:11:29 +0800487 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
488 clear_nlink(inode);
489 iput(inode);
490 }
491
Tao Mac1e8d352011-03-07 16:43:21 +0800492 if (status)
493 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800494
495 return status;
496}
497
Mark Fasheh021960c2010-08-13 15:15:15 -0700498static 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 Fashehccd979b2005-12-15 14:31:24 -0800506{
507 int status = 0;
Mark Fasheh021960c2010-08-13 15:15:15 -0700508 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800509 struct ocfs2_dinode *fe = NULL;
510 struct ocfs2_extent_list *fel;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800511 u16 feat;
Darrick J. Wong2931cdc2014-04-03 14:46:48 -0700512 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Deepa Dinamanic62c38f2016-12-12 16:41:26 -0800513 struct timespec64 ts;
Mark Fashehccd979b2005-12-15 14:31:24 -0800514
Mark Fashehccd979b2005-12-15 14:31:24 -0800515 *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800516
Mark Fashehccd979b2005-12-15 14:31:24 -0800517 /* 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);
piaojund324cd42018-04-05 16:18:37 -0700521 oi->ip_blkno = fe_blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800522 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 Xiang7391a292013-11-12 15:06:54 -0800528 status = -ENOMEM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800529 mlog_errno(status);
530 goto leave;
531 }
Joel Becker8cb471e2009-02-10 20:00:41 -0800532 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), *new_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800533
Joel Becker0cf2f762009-02-12 16:41:25 -0800534 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
535 *new_fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700536 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800537 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 Becker2b6cb572010-03-26 10:09:15 +0800548 fe->i_suballoc_loc = cpu_to_le64(suballoc_loc);
Mark Fashehccd979b2005-12-15 14:31:24 -0800549 fe->i_suballoc_bit = cpu_to_le16(suballoc_bit);
Tao Ma4d0ddb22008-03-05 16:11:46 +0800550 fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot);
Eric W. Biederman2c034172013-01-31 17:27:11 -0800551 fe->i_uid = cpu_to_le32(i_uid_read(inode));
552 fe->i_gid = cpu_to_le32(i_gid_read(inode));
Tiger Yangf5d36202008-11-14 11:15:44 +0800553 fe->i_mode = cpu_to_le16(inode->i_mode);
554 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
Mark Fashehccd979b2005-12-15 14:31:24 -0800555 fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev));
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800556
557 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800558
559 fe->i_last_eb_blk = 0;
560 strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE);
Joseph Qi13eb9882013-07-03 15:00:48 -0700561 fe->i_flags |= cpu_to_le32(OCFS2_VALID_FL);
Deepa Dinamanic62c38f2016-12-12 16:41:26 -0800562 ktime_get_real_ts64(&ts);
Mark Fashehccd979b2005-12-15 14:31:24 -0800563 fe->i_atime = fe->i_ctime = fe->i_mtime =
Deepa Dinamanic62c38f2016-12-12 16:41:26 -0800564 cpu_to_le64(ts.tv_sec);
Mark Fashehccd979b2005-12-15 14:31:24 -0800565 fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec =
Deepa Dinamanic62c38f2016-12-12 16:41:26 -0800566 cpu_to_le32(ts.tv_nsec);
Mark Fashehccd979b2005-12-15 14:31:24 -0800567 fe->i_dtime = 0;
568
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700569 /*
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800570 * If supported, directories start with inline data. If inline
571 * isn't supported, but indexing is, we start them as indexed.
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700572 */
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800573 feat = le16_to_cpu(fe->i_dyn_features);
Tiger Yangf5d36202008-11-14 11:15:44 +0800574 if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) {
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700575 fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL);
576
Tiger Yangd9ae49d2009-03-05 11:06:15 +0800577 fe->id2.i_data.id_count = cpu_to_le16(
578 ocfs2_max_inline_data_with_xattr(osb->sb, fe));
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700579 } 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 Fashehccd979b2005-12-15 14:31:24 -0800585
Joel Beckerec20cec2010-03-19 14:13:52 -0700586 ocfs2_journal_dirty(handle, *new_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800587
Joel Beckerb657c952008-11-13 14:49:11 -0800588 ocfs2_populate_inode(inode, fe, 1);
Joel Becker0cf2f762009-02-12 16:41:25 -0800589 ocfs2_ci_set_new(osb, INODE_CACHE(inode));
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800590 if (!ocfs2_mount_local(osb)) {
591 status = ocfs2_create_new_inode_locks(inode);
592 if (status < 0)
593 mlog_errno(status);
594 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800595
wangyan25b69912020-01-30 22:11:53 -0800596 ocfs2_update_inode_fsync_trans(handle, inode, 1);
Darrick J. Wong2931cdc2014-04-03 14:46:48 -0700597
Mark Fashehccd979b2005-12-15 14:31:24 -0800598leave:
599 if (status < 0) {
600 if (*new_fe_bh) {
601 brelse(*new_fe_bh);
602 *new_fe_bh = NULL;
603 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800604 }
605
Tao Mac1e8d352011-03-07 16:43:21 +0800606 if (status)
607 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800608 return status;
609}
610
Mark Fasheh021960c2010-08-13 15:15:15 -0700611static 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 chenb1529a42015-11-05 18:44:10 -0800634 status = __ocfs2_mknod_locked(dir, inode, dev, new_fe_bh,
Mark Fasheh021960c2010-08-13 15:15:15 -0700635 parent_fe_bh, handle, inode_ac,
636 fe_blkno, suballoc_loc, suballoc_bit);
alex chenb1529a42015-11-05 18:44:10 -0800637 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 Fasheh021960c2010-08-13 15:15:15 -0700646}
647
Mark Fashehccd979b2005-12-15 14:31:24 -0800648static int ocfs2_mkdir(struct inode *dir,
649 struct dentry *dentry,
Al Viro18bb1db2011-07-26 01:41:39 -0400650 umode_t mode)
Mark Fashehccd979b2005-12-15 14:31:24 -0800651{
652 int ret;
653
Tao Ma8990e442011-02-23 22:45:26 +0800654 trace_ocfs2_mkdir(dir, dentry, dentry->d_name.len, dentry->d_name.name,
655 OCFS2_I(dir)->ip_blkno, mode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800656 ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0);
Tao Mac1e8d352011-03-07 16:43:21 +0800657 if (ret)
658 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -0800659
660 return ret;
661}
662
663static int ocfs2_create(struct inode *dir,
664 struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -0400665 umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400666 bool excl)
Mark Fashehccd979b2005-12-15 14:31:24 -0800667{
668 int ret;
669
Tao Ma8990e442011-02-23 22:45:26 +0800670 trace_ocfs2_create(dir, dentry, dentry->d_name.len, dentry->d_name.name,
671 (unsigned long long)OCFS2_I(dir)->ip_blkno, mode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800672 ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0);
Tao Mac1e8d352011-03-07 16:43:21 +0800673 if (ret)
674 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -0800675
676 return ret;
677}
678
679static int ocfs2_link(struct dentry *old_dentry,
680 struct inode *dir,
681 struct dentry *dentry)
682{
Mark Fasheh1fabe142006-10-09 18:11:45 -0700683 handle_t *handle;
David Howells2b0143b2015-03-17 22:25:59 +0000684 struct inode *inode = d_inode(old_dentry);
685 struct inode *old_dir = d_inode(old_dentry->d_parent);
Mark Fashehccd979b2005-12-15 14:31:24 -0800686 int err;
687 struct buffer_head *fe_bh = NULL;
Xue jiufei53dc20b2015-01-08 14:32:23 -0800688 struct buffer_head *old_dir_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800689 struct buffer_head *parent_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800690 struct ocfs2_dinode *fe = NULL;
691 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800692 struct ocfs2_dir_lookup_result lookup = { NULL, };
Joel Becker547ba7c2010-05-10 11:56:52 -0700693 sigset_t oldset;
Xue jiufei0e048312014-02-10 14:25:54 -0800694 u64 old_de_ino;
Mark Fashehccd979b2005-12-15 14:31:24 -0800695
Tao Ma8990e442011-02-23 22:45:26 +0800696 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 Fashehccd979b2005-12-15 14:31:24 -0800699
Mark Fasheh123a9642006-10-05 16:48:23 -0700700 if (S_ISDIR(inode->i_mode))
701 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800702
Jan Kara9c89fe02015-07-14 13:36:02 +0200703 err = dquot_initialize(dir);
704 if (err) {
705 mlog_errno(err);
706 return err;
707 }
Christoph Hellwig907f4552010-03-03 09:05:06 -0500708
Xue jiufei53dc20b2015-01-08 14:32:23 -0800709 err = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
710 &parent_fe_bh, dir, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800711 if (err < 0) {
712 if (err != -ENOENT)
713 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700714 return err;
Mark Fashehccd979b2005-12-15 14:31:24 -0800715 }
716
Xue jiufei53dc20b2015-01-08 14:32:23 -0800717 /* 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 Yang0f62de22006-08-31 20:39:47 -0700730 if (!dir->i_nlink) {
731 err = -ENOENT;
Mark Fasheh123a9642006-10-05 16:48:23 -0700732 goto out;
Tiger Yang0f62de22006-08-31 20:39:47 -0700733 }
734
Xue jiufei53dc20b2015-01-08 14:32:23 -0800735 err = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
Xue jiufei0e048312014-02-10 14:25:54 -0800736 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 Fashehccd979b2005-12-15 14:31:24 -0800751 err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
752 dentry->d_name.len);
753 if (err)
Mark Fasheh123a9642006-10-05 16:48:23 -0700754 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800755
756 err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
757 dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800758 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800759 if (err < 0) {
760 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700761 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800762 }
763
Mark Fashehe63aecb62007-10-18 15:30:42 -0700764 err = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800765 if (err < 0) {
766 if (err != -ENOENT)
767 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700768 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800769 }
770
771 fe = (struct ocfs2_dinode *) fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800772 if (ocfs2_read_links_count(fe) >= ocfs2_link_max(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800773 err = -EMLINK;
Mark Fasheh123a9642006-10-05 16:48:23 -0700774 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800775 }
776
Jan Karaa90714c2008-10-09 19:38:40 +0200777 handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800778 if (IS_ERR(handle)) {
779 err = PTR_ERR(handle);
780 handle = NULL;
781 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700782 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800783 }
784
Joel Becker547ba7c2010-05-10 11:56:52 -0700785 /* Starting to change things, restart is no longer possible. */
786 ocfs2_block_signals(&oldset);
787
Joel Becker0cf2f762009-02-12 16:41:25 -0800788 err = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700789 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800790 if (err < 0) {
791 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700792 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800793 }
794
Dave Hansend8c76e62006-09-30 23:29:04 -0700795 inc_nlink(inode);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700796 inode->i_ctime = current_time(inode);
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800797 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800798 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 Beckerec20cec2010-03-19 14:13:52 -0700800 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800801
802 err = ocfs2_add_entry(handle, dentry, inode,
803 OCFS2_I(inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800804 parent_fe_bh, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800805 if (err) {
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800806 ocfs2_add_links_count(fe, -1);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700807 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800808 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700809 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800810 }
811
Mark Fasheh0027dd52006-09-21 16:51:28 -0700812 err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700813 if (err) {
814 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700815 goto out_commit;
Mark Fasheh379dfe92006-09-08 14:21:03 -0700816 }
817
Al Viro7de9c6ee2010-10-23 11:11:40 -0400818 ihold(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800819 d_instantiate(dentry, inode);
Mark Fasheh123a9642006-10-05 16:48:23 -0700820
821out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700822 ocfs2_commit_trans(osb, handle);
Joel Becker547ba7c2010-05-10 11:56:52 -0700823 ocfs2_unblock_signals(&oldset);
Mark Fasheh123a9642006-10-05 16:48:23 -0700824out_unlock_inode:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700825 ocfs2_inode_unlock(inode, 1);
Mark Fasheh123a9642006-10-05 16:48:23 -0700826
827out:
Xue jiufei53dc20b2015-01-08 14:32:23 -0800828 ocfs2_double_unlock(old_dir, dir);
Mark Fasheh123a9642006-10-05 16:48:23 -0700829
Mark Fasheha81cb882008-10-07 14:25:16 -0700830 brelse(fe_bh);
831 brelse(parent_fe_bh);
Xue jiufei53dc20b2015-01-08 14:32:23 -0800832 brelse(old_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800833
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800834 ocfs2_free_dir_lookup_result(&lookup);
835
Tao Mac1e8d352011-03-07 16:43:21 +0800836 if (err)
837 mlog_errno(err);
Mark Fashehccd979b2005-12-15 14:31:24 -0800838
839 return err;
840}
841
Mark Fasheh379dfe92006-09-08 14:21:03 -0700842/*
843 * Takes and drops an exclusive lock on the given dentry. This will
844 * force other nodes to drop it.
845 */
846static 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 Liub5a8bb72013-07-03 15:01:01 -0700859static inline int ocfs2_inode_is_unlinkable(struct inode *inode)
Mark Fasheh17ff7852006-09-30 23:29:05 -0700860{
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 Fashehccd979b2005-12-15 14:31:24 -0800872static int ocfs2_unlink(struct inode *dir,
873 struct dentry *dentry)
874{
875 int status;
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700876 int child_locked = 0;
Younger Liub5a8bb72013-07-03 15:01:01 -0700877 bool is_unlinkable = false;
David Howells2b0143b2015-03-17 22:25:59 +0000878 struct inode *inode = d_inode(dentry);
Mark Fasheh5098c272006-10-05 18:12:57 -0700879 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800880 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 Fasheh1fabe142006-10-09 18:11:45 -0700885 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800886 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800887 struct ocfs2_dir_lookup_result lookup = { NULL, };
888 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -0800889
Tao Ma8990e442011-02-23 22:45:26 +0800890 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 Fashehccd979b2005-12-15 14:31:24 -0800894
Jan Kara9c89fe02015-07-14 13:36:02 +0200895 status = dquot_initialize(dir);
896 if (status) {
897 mlog_errno(status);
898 return status;
899 }
Christoph Hellwig907f4552010-03-03 09:05:06 -0500900
David Howells2b0143b2015-03-17 22:25:59 +0000901 BUG_ON(d_inode(dentry->d_parent) != dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800902
Tao Ma8990e442011-02-23 22:45:26 +0800903 if (inode == osb->root_inode)
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700904 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800905
Jan Karacb257972009-06-04 15:26:50 +0200906 status = ocfs2_inode_lock_nested(dir, &parent_node_bh, 1,
907 OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800908 if (status < 0) {
909 if (status != -ENOENT)
910 mlog_errno(status);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700911 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800912 }
913
914 status = ocfs2_find_files_on_disk(dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800915 dentry->d_name.len, &blkno, dir,
916 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800917 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 Ma8990e442011-02-23 22:45:26 +0800926 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 Fashehccd979b2005-12-15 14:31:24 -0800930 goto leave;
931 }
932
Mark Fashehe63aecb62007-10-18 15:30:42 -0700933 status = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800934 if (status < 0) {
935 if (status != -ENOENT)
936 mlog_errno(status);
937 goto leave;
938 }
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700939 child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800940
941 if (S_ISDIR(inode->i_mode)) {
Mark Fashehb80b5492009-02-18 11:41:38 -0800942 if (inode->i_nlink != 2 || !ocfs2_empty_dir(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800943 status = -ENOTEMPTY;
944 goto leave;
945 }
946 }
947
Mark Fasheh379dfe92006-09-08 14:21:03 -0700948 status = ocfs2_remote_dentry_delete(dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -0800949 if (status < 0) {
Mark Fasheh34d024f2007-09-24 15:56:19 -0700950 /* This remote delete should succeed under all normal
Mark Fashehccd979b2005-12-15 14:31:24 -0800951 * circumstances. */
952 mlog_errno(status);
953 goto leave;
954 }
955
Younger Liub5a8bb72013-07-03 15:01:01 -0700956 if (ocfs2_inode_is_unlinkable(inode)) {
Tao Ma19bd3412009-08-18 11:44:10 +0800957 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
958 OCFS2_I(inode)->ip_blkno,
Joseph Qi06ee5c72015-02-16 15:59:54 -0800959 orphan_name, &orphan_insert,
960 false);
Mark Fashehccd979b2005-12-15 14:31:24 -0800961 if (status < 0) {
962 mlog_errno(status);
963 goto leave;
964 }
Younger Liub5a8bb72013-07-03 15:01:01 -0700965 is_unlinkable = true;
Mark Fashehccd979b2005-12-15 14:31:24 -0800966 }
967
Jan Karaa90714c2008-10-09 19:38:40 +0200968 handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800969 if (IS_ERR(handle)) {
970 status = PTR_ERR(handle);
971 handle = NULL;
972 mlog_errno(status);
973 goto leave;
974 }
975
Joel Becker0cf2f762009-02-12 16:41:25 -0800976 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700977 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800978 if (status < 0) {
979 mlog_errno(status);
980 goto leave;
981 }
982
983 fe = (struct ocfs2_dinode *) fe_bh->b_data;
984
Mark Fashehccd979b2005-12-15 14:31:24 -0800985 /* delete the name from the parent dir */
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800986 status = ocfs2_delete_entry(handle, dir, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800987 if (status < 0) {
988 mlog_errno(status);
989 goto leave;
990 }
991
Mark Fasheh17ff7852006-09-30 23:29:05 -0700992 if (S_ISDIR(inode->i_mode))
993 drop_nlink(inode);
994 drop_nlink(inode);
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800995 ocfs2_set_links_count(fe, inode->i_nlink);
Joel Beckerec20cec2010-03-19 14:13:52 -0700996 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800997
Deepa Dinamani078cd822016-09-14 07:48:04 -0700998 dir->i_ctime = dir->i_mtime = current_time(dir);
Mark Fasheh592282c2007-01-02 17:59:40 -0800999 if (S_ISDIR(inode->i_mode))
Mark Fasheh17ff7852006-09-30 23:29:05 -07001000 drop_nlink(dir);
Mark Fasheh592282c2007-01-02 17:59:40 -08001001
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 Hansend8c76e62006-09-30 23:29:04 -07001006 inc_nlink(dir);
Younger Liub5a8bb72013-07-03 15:01:01 -07001007 goto leave;
1008 }
1009
1010 if (is_unlinkable) {
1011 status = ocfs2_orphan_add(osb, handle, inode, fe_bh,
Joseph Qi06ee5c72015-02-16 15:59:54 -08001012 orphan_name, &orphan_insert, orphan_dir, false);
Younger Liub5a8bb72013-07-03 15:01:01 -07001013 if (status < 0)
1014 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001015 }
1016
1017leave:
Mark Fashehccd979b2005-12-15 14:31:24 -08001018 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001019 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001020
Mark Fasheh5098c272006-10-05 18:12:57 -07001021 if (orphan_dir) {
1022 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001023 ocfs2_inode_unlock(orphan_dir, 1);
Al Viro59551022016-01-22 15:40:57 -05001024 inode_unlock(orphan_dir);
Mark Fasheh5098c272006-10-05 18:12:57 -07001025 iput(orphan_dir);
1026 }
1027
Joseph Qi3cb2ec42015-09-04 15:43:52 -07001028 if (child_locked)
1029 ocfs2_inode_unlock(inode, 1);
1030
1031 ocfs2_inode_unlock(dir, 1);
1032
Mark Fasheha81cb882008-10-07 14:25:16 -07001033 brelse(fe_bh);
Mark Fasheha81cb882008-10-07 14:25:16 -07001034 brelse(parent_node_bh);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001035
1036 ocfs2_free_dir_lookup_result(&orphan_insert);
1037 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001038
Xiaowei.Huf5b25852014-01-27 17:06:56 -08001039 if (status && (status != -ENOTEMPTY) && (status != -ENOENT))
Tao Mac1e8d352011-03-07 16:43:21 +08001040 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001041
1042 return status;
1043}
1044
Yiwen Jiangf7a14f32014-06-23 13:22:09 -07001045static 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 Fashehccd979b2005-12-15 14:31:24 -08001104/*
Xue jiufei53dc20b2015-01-08 14:32:23 -08001105 * The only place this should be used is rename and link!
Mark Fashehccd979b2005-12-15 14:31:24 -08001106 * if they have the same id, then the 1st one is the only one locked.
1107 */
1108static int ocfs2_double_lock(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -08001109 struct buffer_head **bh1,
1110 struct inode *inode1,
1111 struct buffer_head **bh2,
Xue jiufei53dc20b2015-01-08 14:32:23 -08001112 struct inode *inode2,
1113 int rename)
Mark Fashehccd979b2005-12-15 14:31:24 -08001114{
1115 int status;
Yiwen Jiangf7a14f32014-06-23 13:22:09 -07001116 int inode1_is_ancestor, inode2_is_ancestor;
Mark Fashehccd979b2005-12-15 14:31:24 -08001117 struct ocfs2_inode_info *oi1 = OCFS2_I(inode1);
1118 struct ocfs2_inode_info *oi2 = OCFS2_I(inode2);
Mark Fashehccd979b2005-12-15 14:31:24 -08001119
Tao Ma8990e442011-02-23 22:45:26 +08001120 trace_ocfs2_double_lock((unsigned long long)oi1->ip_blkno,
1121 (unsigned long long)oi2->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001122
Mark Fashehccd979b2005-12-15 14:31:24 -08001123 if (*bh1)
1124 *bh1 = NULL;
1125 if (*bh2)
1126 *bh2 = NULL;
1127
Yiwen Jiangf7a14f32014-06-23 13:22:09 -07001128 /* we always want to lock the one with the lower lockid first.
1129 * and if they are nested, we lock ancestor first */
Mark Fashehccd979b2005-12-15 14:31:24 -08001130 if (oi1->ip_blkno != oi2->ip_blkno) {
Yiwen Jiangf7a14f32014-06-23 13:22:09 -07001131 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 Fashehccd979b2005-12-15 14:31:24 -08001148 /* switch id1 and id2 around */
Fabian Frederickab1ba022015-06-24 16:55:31 -07001149 swap(bh2, bh1);
1150 swap(inode2, inode1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001151 }
1152 /* lock id2 */
Jan Karacb257972009-06-04 15:26:50 +02001153 status = ocfs2_inode_lock_nested(inode2, bh2, 1,
Xue jiufei53dc20b2015-01-08 14:32:23 -08001154 rename == 1 ? OI_LS_RENAME1 : OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -08001155 if (status < 0) {
1156 if (status != -ENOENT)
1157 mlog_errno(status);
1158 goto bail;
1159 }
1160 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001161
Mark Fashehccd979b2005-12-15 14:31:24 -08001162 /* lock id1 */
Xue jiufei53dc20b2015-01-08 14:32:23 -08001163 status = ocfs2_inode_lock_nested(inode1, bh1, 1,
1164 rename == 1 ? OI_LS_RENAME2 : OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -08001165 if (status < 0) {
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001166 /*
1167 * An error return must mean that no cluster locks
1168 * were held on function exit.
1169 */
Tao Ma1e6d9152010-12-20 16:21:11 +08001170 if (oi1->ip_blkno != oi2->ip_blkno) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001171 ocfs2_inode_unlock(inode2, 1);
Tao Ma1e6d9152010-12-20 16:21:11 +08001172 brelse(*bh2);
1173 *bh2 = NULL;
1174 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001175
Mark Fashehccd979b2005-12-15 14:31:24 -08001176 if (status != -ENOENT)
1177 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001178 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001179
Tao Ma8990e442011-02-23 22:45:26 +08001180 trace_ocfs2_double_lock_end(
piaojund324cd42018-04-05 16:18:37 -07001181 (unsigned long long)oi1->ip_blkno,
1182 (unsigned long long)oi2->ip_blkno);
Tao Ma8990e442011-02-23 22:45:26 +08001183
Mark Fashehccd979b2005-12-15 14:31:24 -08001184bail:
Tao Mac1e8d352011-03-07 16:43:21 +08001185 if (status)
1186 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001187 return status;
1188}
1189
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001190static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2)
1191{
Mark Fashehe63aecb62007-10-18 15:30:42 -07001192 ocfs2_inode_unlock(inode1, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001193
1194 if (inode1 != inode2)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001195 ocfs2_inode_unlock(inode2, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001196}
1197
Mark Fashehccd979b2005-12-15 14:31:24 -08001198static int ocfs2_rename(struct inode *old_dir,
1199 struct dentry *old_dentry,
1200 struct inode *new_dir,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001201 struct dentry *new_dentry,
1202 unsigned int flags)
Mark Fashehccd979b2005-12-15 14:31:24 -08001203{
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001204 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 Howells2b0143b2015-03-17 22:25:59 +00001206 struct inode *old_inode = d_inode(old_dentry);
1207 struct inode *new_inode = d_inode(new_dentry);
Mark Fasheh5098c272006-10-05 18:12:57 -07001208 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001209 struct ocfs2_dinode *newfe = NULL;
1210 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
Mark Fashehccd979b2005-12-15 14:31:24 -08001211 struct buffer_head *newfe_bh = NULL;
Mark Fasheh592282c2007-01-02 17:59:40 -08001212 struct buffer_head *old_inode_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001213 struct ocfs2_super *osb = NULL;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001214 u64 newfe_blkno, old_de_ino;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001215 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001216 struct buffer_head *old_dir_bh = NULL;
1217 struct buffer_head *new_dir_bh = NULL;
Al Viro847c9db2012-02-12 21:00:05 -05001218 u32 old_dir_nlink = old_dir->i_nlink;
Sunil Mushran480214d2007-08-06 15:11:56 -07001219 struct ocfs2_dinode *old_di;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001220 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 chen5fb1beb2014-06-23 13:22:07 -07001225 bool should_add_orphan = false;
Mark Fashehccd979b2005-12-15 14:31:24 -08001226
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001227 if (flags)
1228 return -EINVAL;
1229
Mark Fashehccd979b2005-12-15 14:31:24 -08001230 /* At some point it might be nice to break this function up a
1231 * bit. */
1232
Tao Ma8990e442011-02-23 22:45:26 +08001233 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 Fashehccd979b2005-12-15 14:31:24 -08001236
Jan Kara9c89fe02015-07-14 13:36:02 +02001237 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 Hellwig907f4552010-03-03 09:05:06 -05001247
Mark Fashehccd979b2005-12-15 14:31:24 -08001248 osb = OCFS2_SB(old_dir->i_sb);
1249
1250 if (new_inode) {
1251 if (!igrab(new_inode))
1252 BUG();
1253 }
1254
Uwe Kleine-König1b3c3712007-02-17 19:23:03 +01001255 /* Assume a directory hierarchy thusly:
Mark Fashehccd979b2005-12-15 14:31:24 -08001256 * 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 Kara5dabd692008-02-21 18:00:00 +01001266 if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001267 status = ocfs2_rename_lock(osb);
1268 if (status < 0) {
1269 mlog_errno(status);
1270 goto bail;
1271 }
1272 rename_lock = 1;
Yiwen Jiangf7a14f32014-06-23 13:22:09 -07001273
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 Fashehccd979b2005-12-15 14:31:24 -08001288 }
1289
Mark Fashehccd979b2005-12-15 14:31:24 -08001290 /* if old and new are the same, this'll just do one lock. */
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001291 status = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
Xue jiufei53dc20b2015-01-08 14:32:23 -08001292 &new_dir_bh, new_dir, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001293 if (status < 0) {
1294 mlog_errno(status);
1295 goto bail;
1296 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001297 parents_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001298
Yiwen Jiang928dda12015-09-04 15:44:25 -07001299 if (!new_dir->i_nlink) {
1300 status = -EACCES;
1301 goto bail;
1302 }
1303
Mark Fashehccd979b2005-12-15 14:31:24 -08001304 /* 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 Fasheh379dfe92006-09-08 14:21:03 -07001317 /*
Mark Fasheh592282c2007-01-02 17:59:40 -08001318 * Aside from allowing a meta data update, the locking here
Mark Fasheh34d024f2007-09-24 15:56:19 -07001319 * also ensures that the downconvert thread on other nodes
1320 * won't have to concurrently downconvert the inode and the
1321 * dentry locks.
Mark Fasheh379dfe92006-09-08 14:21:03 -07001322 */
Jan Karacb257972009-06-04 15:26:50 +02001323 status = ocfs2_inode_lock_nested(old_inode, &old_inode_bh, 1,
1324 OI_LS_PARENT);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001325 if (status < 0) {
1326 if (status != -ENOENT)
Mark Fashehccd979b2005-12-15 14:31:24 -08001327 mlog_errno(status);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001328 goto bail;
1329 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001330 old_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001331
Mark Fasheh379dfe92006-09-08 14:21:03 -07001332 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 Fasheh38760e22007-09-11 17:21:56 -07001339 u64 old_inode_parent;
Mark Fashehccd979b2005-12-15 14:31:24 -08001340
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001341 update_dot_dot = 1;
Mark Fasheh38760e22007-09-11 17:21:56 -07001342 status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001343 old_inode,
1344 &old_inode_dot_dot_res);
Mark Fasheh38760e22007-09-11 17:21:56 -07001345 if (status) {
1346 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001347 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001348 }
1349
1350 if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) {
1351 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001352 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001353 }
1354
1355 if (!new_inode && new_dir != old_dir &&
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001356 new_dir->i_nlink >= ocfs2_link_max(osb)) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001357 status = -EMLINK;
1358 goto bail;
1359 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001360 }
1361
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001362 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 Fashehccd979b2005-12-15 14:31:24 -08001367 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001368 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001369
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 Fasheh5b6a3a22007-09-13 16:33:54 -07001376 if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) {
1377 status = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -08001378 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001379 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001380
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 Fasheh4a12ca32008-11-12 15:43:34 -08001385 &newfe_blkno, new_dir,
1386 &target_lookup_res);
Mark Fashehccd979b2005-12-15 14:31:24 -08001387 /* 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 Fasheh4a12ca32008-11-12 15:43:34 -08001395 if (status == 0)
1396 target_exists = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001397
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001398 if (!target_exists && new_inode) {
Srinivas Eedae325a882007-10-31 16:49:43 -07001399 /*
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 Fashehccd979b2005-12-15 14:31:24 -08001408
1409 /* In case we need to overwrite an existing file, we blow it
1410 * away first */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001411 if (target_exists) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001412 /* 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 Ma8990e442011-02-23 22:45:26 +08001420 trace_ocfs2_rename_target_exists(new_dentry->d_name.len,
1421 new_dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08001422 goto bail;
1423 }
1424
1425 if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) {
1426 status = -EACCES;
1427
Tao Ma8990e442011-02-23 22:45:26 +08001428 trace_ocfs2_rename_disagree(
Mark Fashehb06970532006-03-03 10:24:33 -08001429 (unsigned long long)OCFS2_I(new_inode)->ip_blkno,
1430 (unsigned long long)newfe_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08001431 OCFS2_I(new_inode)->ip_flags);
1432 goto bail;
1433 }
1434
Mark Fashehe63aecb62007-10-18 15:30:42 -07001435 status = ocfs2_inode_lock(new_inode, &newfe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001436 if (status < 0) {
1437 if (status != -ENOENT)
1438 mlog_errno(status);
1439 goto bail;
1440 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001441 new_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001442
Mark Fasheh379dfe92006-09-08 14:21:03 -07001443 status = ocfs2_remote_dentry_delete(new_dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -08001444 if (status < 0) {
1445 mlog_errno(status);
1446 goto bail;
1447 }
1448
1449 newfe = (struct ocfs2_dinode *) newfe_bh->b_data;
1450
Tao Ma8990e442011-02-23 22:45:26 +08001451 trace_ocfs2_rename_over_existing(
Mark Fashehb06970532006-03-03 10:24:33 -08001452 (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ?
Mark Fashehccd979b2005-12-15 14:31:24 -08001453 (unsigned long long)newfe_bh->b_blocknr : 0ULL);
1454
1455 if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) {
Mark Fasheh5098c272006-10-05 18:12:57 -07001456 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +08001457 OCFS2_I(new_inode)->ip_blkno,
Joseph Qi06ee5c72015-02-16 15:59:54 -08001458 orphan_name, &orphan_insert,
1459 false);
Mark Fashehccd979b2005-12-15 14:31:24 -08001460 if (status < 0) {
1461 mlog_errno(status);
1462 goto bail;
1463 }
alex chen5fb1beb2014-06-23 13:22:07 -07001464 should_add_orphan = true;
Mark Fashehccd979b2005-12-15 14:31:24 -08001465 }
1466 } else {
David Howells2b0143b2015-03-17 22:25:59 +00001467 BUG_ON(d_inode(new_dentry->d_parent) != new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001468
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 Fasheh4a12ca32008-11-12 15:43:34 -08001478 &target_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001479 if (status < 0) {
1480 mlog_errno(status);
1481 goto bail;
1482 }
1483 }
1484
Jan Karaa90714c2008-10-09 19:38:40 +02001485 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001486 if (IS_ERR(handle)) {
1487 status = PTR_ERR(handle);
1488 handle = NULL;
1489 mlog_errno(status);
1490 goto bail;
1491 }
1492
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001493 if (target_exists) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001494 if (S_ISDIR(new_inode->i_mode)) {
Mark Fashehb80b5492009-02-18 11:41:38 -08001495 if (new_inode->i_nlink != 2 ||
1496 !ocfs2_empty_dir(new_inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001497 status = -ENOTEMPTY;
1498 goto bail;
1499 }
1500 }
Joel Becker0cf2f762009-02-12 16:41:25 -08001501 status = ocfs2_journal_access_di(handle, INODE_CACHE(new_inode),
1502 newfe_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001503 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001504 if (status < 0) {
1505 mlog_errno(status);
1506 goto bail;
1507 }
1508
Mark Fashehccd979b2005-12-15 14:31:24 -08001509 /* change the dirent to point to the correct inode */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001510 status = ocfs2_update_entry(new_dir, handle, &target_lookup_res,
1511 old_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001512 if (status < 0) {
1513 mlog_errno(status);
1514 goto bail;
1515 }
Jeff Laytoncc56c332017-12-11 06:35:17 -05001516 inode_inc_iversion(new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001517
1518 if (S_ISDIR(new_inode->i_mode))
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001519 ocfs2_set_links_count(newfe, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001520 else
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001521 ocfs2_add_links_count(newfe, -1);
Joel Beckerec20cec2010-03-19 14:13:52 -07001522 ocfs2_journal_dirty(handle, newfe_bh);
alex chen5fb1beb2014-06-23 13:22:07 -07001523 if (should_add_orphan) {
1524 status = ocfs2_orphan_add(osb, handle, new_inode,
1525 newfe_bh, orphan_name,
Joseph Qi06ee5c72015-02-16 15:59:54 -08001526 &orphan_insert, orphan_dir, false);
alex chen5fb1beb2014-06-23 13:22:07 -07001527 if (status < 0) {
1528 mlog_errno(status);
1529 goto bail;
1530 }
1531 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001532 } 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 Fasheh4a12ca32008-11-12 15:43:34 -08001536 new_dir_bh, &target_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001537 }
1538
Deepa Dinamani078cd822016-09-14 07:48:04 -07001539 old_inode->i_ctime = current_time(old_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001540 mark_inode_dirty(old_inode);
Sunil Mushran480214d2007-08-06 15:11:56 -07001541
Joel Becker0cf2f762009-02-12 16:41:25 -08001542 status = ocfs2_journal_access_di(handle, INODE_CACHE(old_inode),
1543 old_inode_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001544 OCFS2_JOURNAL_ACCESS_WRITE);
Sunil Mushran480214d2007-08-06 15:11:56 -07001545 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 Beckerec20cec2010-03-19 14:13:52 -07001550 ocfs2_journal_dirty(handle, old_inode_bh);
Sunil Mushran480214d2007-08-06 15:11:56 -07001551 } else
1552 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001553
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001554 /*
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 Fasheh4a12ca32008-11-12 15:43:34 -08001561 status = ocfs2_find_entry(old_dentry->d_name.name,
1562 old_dentry->d_name.len, old_dir,
1563 &old_entry_lookup);
jiangyiwen807a7902015-09-04 15:44:06 -07001564 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 Fasheh5b6a3a22007-09-13 16:33:54 -07001571 goto bail;
jiangyiwen807a7902015-09-04 15:44:06 -07001572 }
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001573
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001574 status = ocfs2_delete_entry(handle, old_dir, &old_entry_lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001575 if (status < 0) {
1576 mlog_errno(status);
jiangyiwen807a7902015-09-04 15:44:06 -07001577 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 Fashehccd979b2005-12-15 14:31:24 -08001583 goto bail;
1584 }
1585
1586 if (new_inode) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001587 drop_nlink(new_inode);
Deepa Dinamani078cd822016-09-14 07:48:04 -07001588 new_inode->i_ctime = current_time(new_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001589 }
Deepa Dinamani078cd822016-09-14 07:48:04 -07001590 old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001591
1592 if (update_dot_dot) {
1593 status = ocfs2_update_entry(old_inode, handle,
1594 &old_inode_dot_dot_res, new_dir);
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001595 drop_nlink(old_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001596 if (new_inode) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001597 drop_nlink(new_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001598 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001599 inc_nlink(new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001600 mark_inode_dirty(new_dir);
1601 }
1602 }
1603 mark_inode_dirty(old_dir);
Mark Fasheh592282c2007-01-02 17:59:40 -08001604 ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh);
1605 if (new_inode) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001606 mark_inode_dirty(new_inode);
Mark Fasheh592282c2007-01-02 17:59:40 -08001607 ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh);
1608 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001609
Mark Fasheh592282c2007-01-02 17:59:40 -08001610 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 Fashehccd979b2005-12-15 14:31:24 -08001620
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 Fashehb06970532006-03-03 10:24:33 -08001624 "%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 Fashehccd979b2005-12-15 14:31:24 -08001627 } else {
1628 struct ocfs2_dinode *fe;
Joel Becker0cf2f762009-02-12 16:41:25 -08001629 status = ocfs2_journal_access_di(handle,
1630 INODE_CACHE(old_dir),
1631 old_dir_bh,
1632 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001633 fe = (struct ocfs2_dinode *) old_dir_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001634 ocfs2_set_links_count(fe, old_dir->i_nlink);
Joel Beckerec20cec2010-03-19 14:13:52 -07001635 ocfs2_journal_dirty(handle, old_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001636 }
1637 }
Mark Fasheh379dfe92006-09-08 14:21:03 -07001638 ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001639 status = 0;
1640bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08001641 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001642 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001643
Mark Fasheh5098c272006-10-05 18:12:57 -07001644 if (orphan_dir) {
1645 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001646 ocfs2_inode_unlock(orphan_dir, 1);
Al Viro59551022016-01-22 15:40:57 -05001647 inode_unlock(orphan_dir);
Mark Fasheh5098c272006-10-05 18:12:57 -07001648 iput(orphan_dir);
1649 }
1650
Joseph Qi3cb2ec42015-09-04 15:43:52 -07001651 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 Fashehccd979b2005-12-15 14:31:24 -08001663 if (new_inode)
1664 sync_mapping_buffers(old_inode->i_mapping);
1665
Joseph Qi72865d92016-01-14 15:17:27 -08001666 iput(new_inode);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001667
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 Fasheha81cb882008-10-07 14:25:16 -07001674 brelse(newfe_bh);
1675 brelse(old_inode_bh);
1676 brelse(old_dir_bh);
1677 brelse(new_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001678
Tao Mac1e8d352011-03-07 16:43:21 +08001679 if (status)
1680 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001681
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 */
1689static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001690 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001691 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 Fasheh4f902c32007-03-09 16:26:50 -08001697 u64 p_blkno, p_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -08001698 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 Ma8990e442011-02-23 22:45:26 +08001705 trace_ocfs2_create_symlink_data((unsigned long long)inode->i_blocks,
1706 i_size_read(inode), blocks);
Mark Fashehccd979b2005-12-15 14:31:24 -08001707
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 Fasheh49cb8d22007-03-09 16:21:46 -08001723 status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks,
1724 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001725 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 Becker8cb471e2009-02-10 20:00:41 -08001749 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode),
1750 bhs[virtual]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001751
Joel Becker0cf2f762009-02-12 16:41:25 -08001752 status = ocfs2_journal_access(handle, INODE_CACHE(inode),
1753 bhs[virtual],
Mark Fashehccd979b2005-12-15 14:31:24 -08001754 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 Beckerec20cec2010-03-19 14:13:52 -07001766 ocfs2_journal_dirty(handle, bhs[virtual]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001767
1768 virtual++;
1769 p_blkno++;
1770 bytes_left -= sb->s_blocksize;
1771 }
1772
1773 status = 0;
1774bail:
1775
1776 if (bhs) {
1777 for(i = 0; i < blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001778 brelse(bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001779 kfree(bhs);
1780 }
1781
Tao Mac1e8d352011-03-07 16:43:21 +08001782 if (status)
1783 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001784 return status;
1785}
1786
1787static 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 Fashehccd979b2005-12-15 14:31:24 -08001797 struct buffer_head *parent_fe_bh = NULL;
1798 struct ocfs2_dinode *fe = NULL;
1799 struct ocfs2_dinode *dirfe;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001800 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001801 struct ocfs2_alloc_context *inode_ac = NULL;
1802 struct ocfs2_alloc_context *data_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +08001803 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 Karaa90714c2008-10-09 19:38:40 +02001809 int did_quota = 0, did_quota_inode = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001810 struct ocfs2_dir_lookup_result lookup = { NULL, };
Joel Becker547ba7c2010-05-10 11:56:52 -07001811 sigset_t oldset;
1812 int did_block_signals = 0;
jiangyiwen595297a2014-06-23 13:22:09 -07001813 struct ocfs2_dentry_lock *dl = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001814
Tao Ma8990e442011-02-23 22:45:26 +08001815 trace_ocfs2_symlink_begin(dir, dentry, symname,
1816 dentry->d_name.len, dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08001817
Jan Kara9c89fe02015-07-14 13:36:02 +02001818 status = dquot_initialize(dir);
1819 if (status) {
1820 mlog_errno(status);
1821 goto bail;
1822 }
Christoph Hellwig907f4552010-03-03 09:05:06 -05001823
Mark Fashehccd979b2005-12-15 14:31:24 -08001824 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 Fashehccd979b2005-12-15 14:31:24 -08001831 /* lock the parent directory */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001832 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001833 if (status < 0) {
1834 if (status != -ENOENT)
1835 mlog_errno(status);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001836 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001837 }
1838
1839 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001840 if (!ocfs2_read_links_count(dirfe)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001841 /* 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 Fasheh4a12ca32008-11-12 15:43:34 -08001853 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001854 if (status < 0) {
1855 mlog_errno(status);
1856 goto bail;
1857 }
1858
Mark Fashehda5cbf22006-10-06 18:34:35 -07001859 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001860 if (status < 0) {
1861 if (status != -ENOSPC)
1862 mlog_errno(status);
1863 goto bail;
1864 }
1865
Tiger Yangf5d36202008-11-14 11:15:44 +08001866 inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO);
Jan Kara9c89fe02015-07-14 13:36:02 +02001867 if (IS_ERR(inode)) {
1868 status = PTR_ERR(inode);
1869 inode = NULL;
Tiger Yangf5d36202008-11-14 11:15:44 +08001870 mlog_errno(status);
1871 goto bail;
1872 }
1873
Tiger Yang534eadd2008-11-14 11:16:41 +08001874 /* get security xattr */
Eric Paris2a7dba32011-02-01 11:05:39 -05001875 status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
Tiger Yang534eadd2008-11-14 11:16:41 +08001876 if (status) {
1877 if (status == -EOPNOTSUPP)
1878 si.enable = 0;
1879 else {
1880 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001881 goto bail;
1882 }
1883 }
1884
Tiger Yang534eadd2008-11-14 11:16:41 +08001885 /* 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 Fashehccd979b2005-12-15 14:31:24 -08001907 if (IS_ERR(handle)) {
1908 status = PTR_ERR(handle);
1909 handle = NULL;
1910 mlog_errno(status);
1911 goto bail;
1912 }
1913
Joel Becker547ba7c2010-05-10 11:56:52 -07001914 /* Starting to change things, restart is no longer possible. */
1915 ocfs2_block_signals(&oldset);
1916 did_block_signals = 1;
1917
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001918 status = dquot_alloc_inode(inode);
1919 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +02001920 goto bail;
Jan Karaa90714c2008-10-09 19:38:40 +02001921 did_quota_inode = 1;
1922
Tao Ma8990e442011-02-23 22:45:26 +08001923 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 Ma19bd3412009-08-18 11:44:10 +08001927
1928 status = ocfs2_mknod_locked(osb, dir, inode,
Tiger Yangf5d36202008-11-14 11:15:44 +08001929 0, &new_fe_bh, parent_fe_bh, handle,
1930 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001931 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 Viroea022dfb2012-05-03 10:14:29 -04001939 inode->i_op = &ocfs2_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05001940 inode_nohighmem(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001941 if (l > ocfs2_fast_symlink_chars(sb)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08001942 u32 offset = 0;
1943
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001944 status = dquot_alloc_space_nodirty(inode,
1945 ocfs2_clusters_to_bytes(osb->sb, 1));
1946 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +02001947 goto bail;
Jan Karaa90714c2008-10-09 19:38:40 +02001948 did_quota = 1;
Al Viroea022dfb2012-05-03 10:14:29 -04001949 inode->i_mapping->a_ops = &ocfs2_aops;
Tao Ma0eb8d47e2008-08-18 17:38:45 +08001950 status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0,
1951 new_fe_bh,
1952 handle, data_ac, NULL,
1953 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001954 if (status < 0) {
1955 if (status != -ENOSPC && status != -EINTR) {
Mark Fashehb06970532006-03-03 10:24:33 -08001956 mlog(ML_ERROR,
1957 "Failed to extend file to %llu\n",
1958 (unsigned long long)newsize);
Mark Fashehccd979b2005-12-15 14:31:24 -08001959 mlog_errno(status);
1960 status = -ENOSPC;
1961 }
1962 goto bail;
1963 }
1964 i_size_write(inode, newsize);
Mark Fasheh8110b072007-03-22 16:53:23 -07001965 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001966 } else {
Al Viroea022dfb2012-05-03 10:14:29 -04001967 inode->i_mapping->a_ops = &ocfs2_fast_symlink_aops;
Mark Fashehccd979b2005-12-15 14:31:24 -08001968 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 Yang534eadd2008-11-14 11:16:41 +08001988 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 Fasheha9743fc2010-04-23 11:42:22 -07001997 /*
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 Fasheha9743fc2010-04-23 11:42:22 -07002007
jiangyiwen595297a2014-06-23 13:22:09 -07002008 dl = dentry->d_fsdata;
2009
Mark Fashehccd979b2005-12-15 14:31:24 -08002010 status = ocfs2_add_entry(handle, dentry, inode,
2011 le64_to_cpu(fe->i_blkno), parent_fe_bh,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002012 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08002013 if (status < 0) {
2014 mlog_errno(status);
2015 goto bail;
2016 }
2017
2018 insert_inode_hash(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002019 d_instantiate(dentry, inode);
2020bail:
Jan Karaa90714c2008-10-09 19:38:40 +02002021 if (status < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05002022 dquot_free_space_nodirty(inode,
Jan Karaa90714c2008-10-09 19:38:40 +02002023 ocfs2_clusters_to_bytes(osb->sb, 1));
2024 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -05002025 dquot_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002026 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07002027 ocfs2_commit_trans(osb, handle);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07002028
Mark Fashehe63aecb62007-10-18 15:30:42 -07002029 ocfs2_inode_unlock(dir, 1);
Joel Becker547ba7c2010-05-10 11:56:52 -07002030 if (did_block_signals)
2031 ocfs2_unblock_signals(&oldset);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07002032
Mark Fasheha81cb882008-10-07 14:25:16 -07002033 brelse(new_fe_bh);
2034 brelse(parent_fe_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +08002035 kfree(si.value);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002036 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08002037 if (inode_ac)
2038 ocfs2_free_alloc_context(inode_ac);
2039 if (data_ac)
2040 ocfs2_free_alloc_context(data_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +08002041 if (xattr_ac)
2042 ocfs2_free_alloc_context(xattr_ac);
Tiger Yangf5d36202008-11-14 11:15:44 +08002043 if ((status < 0) && inode) {
jiangyiwen595297a2014-06-23 13:22:09 -07002044 if (dl)
2045 ocfs2_cleanup_add_entry_failure(osb, dentry, inode);
2046
Li Dongyangab41fdc2010-04-22 16:11:25 +08002047 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
Tiger Yangf5d36202008-11-14 11:15:44 +08002048 clear_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002049 iput(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +08002050 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002051
Tao Mac1e8d352011-03-07 16:43:21 +08002052 if (status)
2053 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08002054
2055 return status;
2056}
2057
Mark Fashehccd979b2005-12-15 14:31:24 -08002058static int ocfs2_blkno_stringify(u64 blkno, char *name)
2059{
2060 int status, namelen;
2061
Mark Fashehb06970532006-03-03 10:24:33 -08002062 namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx",
2063 (long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002064 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 Ma8990e442011-02-23 22:45:26 +08002078 trace_ocfs2_blkno_stringify(blkno, name, namelen);
Mark Fashehccd979b2005-12-15 14:31:24 -08002079
2080 status = 0;
2081bail:
Tao Mac1e8d352011-03-07 16:43:21 +08002082 if (status < 0)
2083 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08002084 return status;
2085}
2086
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002087static 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 Viro59551022016-01-22 15:40:57 -05002104 inode_lock(orphan_dir_inode);
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002105
2106 ret = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2107 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05002108 inode_unlock(orphan_dir_inode);
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002109 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
2121static int __ocfs2_prepare_orphan_dir(struct inode *orphan_dir_inode,
2122 struct buffer_head *orphan_dir_bh,
2123 u64 blkno,
2124 char *name,
Joseph Qi06ee5c72015-02-16 15:59:54 -08002125 struct ocfs2_dir_lookup_result *lookup,
2126 bool dio)
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002127{
2128 int ret;
2129 struct ocfs2_super *osb = OCFS2_SB(orphan_dir_inode->i_sb);
Joseph Qi06ee5c72015-02-16 15:59:54 -08002130 int namelen = dio ?
2131 (OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN) :
2132 OCFS2_ORPHAN_NAMELEN;
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002133
Joseph Qi06ee5c72015-02-16 15:59:54 -08002134 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 Fashehdd43bcd2010-08-13 15:15:18 -07002147 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 Qi06ee5c72015-02-16 15:59:54 -08002154 namelen, lookup);
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002155 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 Fashehccd979b2005-12-15 14:31:24 -08002177static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -07002178 struct inode **ret_orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +08002179 u64 blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08002180 char *name,
Joseph Qi06ee5c72015-02-16 15:59:54 -08002181 struct ocfs2_dir_lookup_result *lookup,
2182 bool dio)
Mark Fashehccd979b2005-12-15 14:31:24 -08002183{
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002184 struct inode *orphan_dir_inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08002185 struct buffer_head *orphan_dir_bh = NULL;
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002186 int ret = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002187
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002188 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 Fashehccd979b2005-12-15 14:31:24 -08002193 }
2194
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002195 ret = __ocfs2_prepare_orphan_dir(orphan_dir_inode, orphan_dir_bh,
Joseph Qi06ee5c72015-02-16 15:59:54 -08002196 blkno, name, lookup, dio);
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002197 if (ret < 0) {
2198 mlog_errno(ret);
2199 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08002200 }
2201
Mark Fasheh5098c272006-10-05 18:12:57 -07002202 *ret_orphan_dir = orphan_dir_inode;
2203
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002204out:
2205 brelse(orphan_dir_bh);
2206
2207 if (ret) {
2208 ocfs2_inode_unlock(orphan_dir_inode, 1);
Al Viro59551022016-01-22 15:40:57 -05002209 inode_unlock(orphan_dir_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002210 iput(orphan_dir_inode);
Mark Fasheh5098c272006-10-05 18:12:57 -07002211 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002212
Tao Mac1e8d352011-03-07 16:43:21 +08002213 if (ret)
2214 mlog_errno(ret);
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002215 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08002216}
2217
2218static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07002219 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08002220 struct inode *inode,
Tristan Ye3939fda2010-03-19 09:21:09 +08002221 struct buffer_head *fe_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -08002222 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002223 struct ocfs2_dir_lookup_result *lookup,
Joseph Qi06ee5c72015-02-16 15:59:54 -08002224 struct inode *orphan_dir_inode,
2225 bool dio)
Mark Fashehccd979b2005-12-15 14:31:24 -08002226{
Mark Fashehccd979b2005-12-15 14:31:24 -08002227 struct buffer_head *orphan_dir_bh = NULL;
2228 int status = 0;
2229 struct ocfs2_dinode *orphan_fe;
Tristan Ye3939fda2010-03-19 09:21:09 +08002230 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data;
Joseph Qi06ee5c72015-02-16 15:59:54 -08002231 int namelen = dio ?
2232 (OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN) :
2233 OCFS2_ORPHAN_NAMELEN;
Mark Fashehccd979b2005-12-15 14:31:24 -08002234
Tao Ma8990e442011-02-23 22:45:26 +08002235 trace_ocfs2_orphan_add_begin(
2236 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002237
Joel Beckerb657c952008-11-13 14:49:11 -08002238 status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08002239 if (status < 0) {
2240 mlog_errno(status);
2241 goto leave;
2242 }
2243
Joel Becker0cf2f762009-02-12 16:41:25 -08002244 status = ocfs2_journal_access_di(handle,
2245 INODE_CACHE(orphan_dir_inode),
2246 orphan_dir_bh,
Joel Becker13723d02008-10-17 19:25:01 -07002247 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08002248 if (status < 0) {
2249 mlog_errno(status);
2250 goto leave;
2251 }
2252
Tristan Ye3939fda2010-03-19 09:21:09 +08002253 /*
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 Liuea454662013-07-03 15:00:58 -07002268 /* 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 Qi06ee5c72015-02-16 15:59:54 -08002277 namelen, inode,
Younger Liuea454662013-07-03 15:00:58 -07002278 OCFS2_I(inode)->ip_blkno,
2279 orphan_dir_bh, lookup);
2280 if (status < 0) {
2281 mlog_errno(status);
2282 goto rollback;
2283 }
2284
Joseph Qi06ee5c72015-02-16 15:59:54 -08002285 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 Fashehccd979b2005-12-15 14:31:24 -08002294
Joseph Qi06ee5c72015-02-16 15:59:54 -08002295 /* 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 Fashehccd979b2005-12-15 14:31:24 -08002300
Tristan Ye3939fda2010-03-19 09:21:09 +08002301 ocfs2_journal_dirty(handle, fe_bh);
2302
Tao Ma8990e442011-02-23 22:45:26 +08002303 trace_ocfs2_orphan_add_end((unsigned long long)OCFS2_I(inode)->ip_blkno,
2304 osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08002305
Younger Liuea454662013-07-03 15:00:58 -07002306rollback:
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 Fashehccd979b2005-12-15 14:31:24 -08002313leave:
Mark Fasheha81cb882008-10-07 14:25:16 -07002314 brelse(orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08002315
Mark Fashehccd979b2005-12-15 14:31:24 -08002316 return status;
2317}
2318
2319/* unlike orphan_add, we expect the orphan dir to already be locked here. */
2320int ocfs2_orphan_del(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07002321 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08002322 struct inode *orphan_dir_inode,
2323 struct inode *inode,
Joseph Qi06ee5c72015-02-16 15:59:54 -08002324 struct buffer_head *orphan_dir_bh,
2325 bool dio)
Mark Fashehccd979b2005-12-15 14:31:24 -08002326{
Salvatore Mesoraca64202a22018-06-07 17:04:55 -07002327 char name[OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN + 1];
Mark Fashehccd979b2005-12-15 14:31:24 -08002328 struct ocfs2_dinode *orphan_fe;
2329 int status = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002330 struct ocfs2_dir_lookup_result lookup = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -08002331
Joseph Qi06ee5c72015-02-16 15:59:54 -08002332 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 Fashehccd979b2005-12-15 14:31:24 -08002345 if (status < 0) {
2346 mlog_errno(status);
2347 goto leave;
2348 }
2349
Tao Ma8990e442011-02-23 22:45:26 +08002350 trace_ocfs2_orphan_del(
2351 (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
Joseph Qie38a5732015-04-14 15:43:22 -07002352 name, strlen(name));
Mark Fashehccd979b2005-12-15 14:31:24 -08002353
Joseph Qi074a6c62016-01-14 15:17:44 -08002354 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 Fashehccd979b2005-12-15 14:31:24 -08002363 /* find it's spot in the orphan directory */
Joseph Qie38a5732015-04-14 15:43:22 -07002364 status = ocfs2_find_entry(name, strlen(name), orphan_dir_inode,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002365 &lookup);
2366 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08002367 mlog_errno(status);
2368 goto leave;
2369 }
2370
2371 /* remove it from the orphan directory */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002372 status = ocfs2_delete_entry(handle, orphan_dir_inode, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08002373 if (status < 0) {
2374 mlog_errno(status);
2375 goto leave;
2376 }
2377
Mark Fashehccd979b2005-12-15 14:31:24 -08002378 /* do the i_nlink dance! :) */
2379 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
2380 if (S_ISDIR(inode->i_mode))
Mark Fasheh198a1ca2008-11-20 17:54:57 -08002381 ocfs2_add_links_count(orphan_fe, -1);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002382 set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
Joel Beckerec20cec2010-03-19 14:13:52 -07002383 ocfs2_journal_dirty(handle, orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08002384
2385leave:
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002386 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08002387
Tao Mac1e8d352011-03-07 16:43:21 +08002388 if (status)
2389 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08002390 return status;
2391}
2392
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002393/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002394 * ocfs2_prep_new_orphaned_file() - Prepare the orphan dir to receive a newly
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002395 * 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 */
2418static 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 Qi06ee5c72015-02-16 15:59:54 -08002455 di_blkno, orphan_name, orphan_insert,
2456 false);
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002457 if (ret < 0) {
2458 mlog_errno(ret);
2459 goto out;
2460 }
2461
2462out:
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 Viro59551022016-01-22 15:40:57 -05002477 inode_unlock(orphan_dir);
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002478 ocfs2_inode_unlock(orphan_dir, 1);
2479 iput(orphan_dir);
2480 }
2481
2482 brelse(orphan_dir_bh);
2483
Xiaowei.Hu7869e592013-06-12 14:04:41 -07002484 return ret;
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002485}
2486
Tao Mabc13d342009-08-18 11:44:14 +08002487int 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 Mabc13d342009-08-18 11:44:14 +08002495 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 Fasheh97b8f4a2010-08-13 15:15:19 -07002501 u64 uninitialized_var(di_blkno), suballoc_loc;
2502 u16 suballoc_bit;
Tao Mabc13d342009-08-18 11:44:14 +08002503
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 Fasheh97b8f4a2010-08-13 15:15:19 -07002511 status = ocfs2_prep_new_orphaned_file(dir, parent_di_bh,
2512 orphan_name, &orphan_dir,
2513 &di_blkno, &orphan_insert, &inode_ac);
Tao Mabc13d342009-08-18 11:44:14 +08002514 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 Kara9c89fe02015-07-14 13:36:02 +02002521 if (IS_ERR(inode)) {
2522 status = PTR_ERR(inode);
2523 inode = NULL;
Tao Mabc13d342009-08-18 11:44:14 +08002524 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 Hellwig63936dd2010-03-03 09:05:01 -05002536 status = dquot_alloc_inode(inode);
2537 if (status)
Tao Mabc13d342009-08-18 11:44:14 +08002538 goto leave;
Tao Mabc13d342009-08-18 11:44:14 +08002539 did_quota_inode = 1;
2540
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002541 status = ocfs2_claim_new_inode_at_loc(handle, dir, inode_ac,
2542 &suballoc_loc,
2543 &suballoc_bit, di_blkno);
Tao Mabc13d342009-08-18 11:44:14 +08002544 if (status < 0) {
2545 mlog_errno(status);
2546 goto leave;
2547 }
2548
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02002549 clear_nlink(inode);
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002550 /* 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 Mabc13d342009-08-18 11:44:14 +08002555 if (status < 0) {
2556 mlog_errno(status);
2557 goto leave;
2558 }
2559
Tristan Ye3939fda2010-03-19 09:21:09 +08002560 status = ocfs2_orphan_add(osb, handle, inode, new_di_bh, orphan_name,
Joseph Qi06ee5c72015-02-16 15:59:54 -08002561 &orphan_insert, orphan_dir, false);
Tao Mabc13d342009-08-18 11:44:14 +08002562 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 Mac7d260a2009-12-18 10:24:54 +08002572 insert_inode_hash(inode);
Tao Mabc13d342009-08-18 11:44:14 +08002573leave:
2574 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -05002575 dquot_free_inode(inode);
Tao Mabc13d342009-08-18 11:44:14 +08002576 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 Viro59551022016-01-22 15:40:57 -05002582 inode_unlock(orphan_dir);
Tao Mabc13d342009-08-18 11:44:14 +08002583 iput(orphan_dir);
2584 }
2585
Tao Mabc13d342009-08-18 11:44:14 +08002586 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 Qi06ee5c72015-02-16 15:59:54 -08002606int 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 Qi48139622015-02-16 16:00:12 -08002615 struct ocfs2_dinode *di = NULL;
Joseph Qi06ee5c72015-02-16 15:59:54 -08002616
2617 status = ocfs2_inode_lock(inode, &di_bh, 1);
2618 if (status < 0) {
2619 mlog_errno(status);
2620 goto bail;
2621 }
2622
Joseph Qi48139622015-02-16 16:00:12 -08002623 di = (struct ocfs2_dinode *) di_bh->b_data;
2624 /*
2625 * Another append dio crashed?
Joseph Qi512f62a2015-09-04 15:43:37 -07002626 * If so, manually recover it first.
Joseph Qi48139622015-02-16 16:00:12 -08002627 */
2628 if (unlikely(di->i_flags & cpu_to_le32(OCFS2_DIO_ORPHANED_FL))) {
Joseph Qi512f62a2015-09-04 15:43:37 -07002629 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 Qi48139622015-02-16 16:00:12 -08002641 }
2642
Joseph Qi06ee5c72015-02-16 15:59:54 -08002643 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
2667bail_unlock_orphan:
2668 ocfs2_inode_unlock(orphan_dir_inode, 1);
Al Viro59551022016-01-22 15:40:57 -05002669 inode_unlock(orphan_dir_inode);
Joseph Qi06ee5c72015-02-16 15:59:54 -08002670 iput(orphan_dir_inode);
2671
2672 ocfs2_free_dir_lookup_result(&orphan_insert);
2673
2674bail_unlock_inode:
2675 ocfs2_inode_unlock(inode, 1);
2676 brelse(di_bh);
2677
2678bail:
2679 return status;
2680}
2681
2682int ocfs2_del_inode_from_orphan(struct ocfs2_super *osb,
Joseph Qicf1776a2015-06-24 16:54:59 -07002683 struct inode *inode, struct buffer_head *di_bh,
2684 int update_isize, loff_t end)
Joseph Qi06ee5c72015-02-16 15:59:54 -08002685{
2686 struct inode *orphan_dir_inode = NULL;
2687 struct buffer_head *orphan_dir_bh = NULL;
Joseph Qicf1776a2015-06-24 16:54:59 -07002688 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Joseph Qi06ee5c72015-02-16 15:59:54 -08002689 handle_t *handle = NULL;
2690 int status = 0;
2691
Joseph Qi06ee5c72015-02-16 15:59:54 -08002692 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 Qicf1776a2015-06-24 16:54:59 -07002698 goto bail;
Joseph Qi06ee5c72015-02-16 15:59:54 -08002699 }
2700
Al Viro59551022016-01-22 15:40:57 -05002701 inode_lock(orphan_dir_inode);
Joseph Qi06ee5c72015-02-16 15:59:54 -08002702 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2703 if (status < 0) {
Al Viro59551022016-01-22 15:40:57 -05002704 inode_unlock(orphan_dir_inode);
Joseph Qi06ee5c72015-02-16 15:59:54 -08002705 iput(orphan_dir_inode);
2706 mlog_errno(status);
Joseph Qicf1776a2015-06-24 16:54:59 -07002707 goto bail;
Joseph Qi06ee5c72015-02-16 15:59:54 -08002708 }
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
2745bail_commit:
2746 ocfs2_commit_trans(osb, handle);
2747
2748bail_unlock_orphan:
2749 ocfs2_inode_unlock(orphan_dir_inode, 1);
Al Viro59551022016-01-22 15:40:57 -05002750 inode_unlock(orphan_dir_inode);
Joseph Qi06ee5c72015-02-16 15:59:54 -08002751 brelse(orphan_dir_bh);
2752 iput(orphan_dir_inode);
2753
Joseph Qi06ee5c72015-02-16 15:59:54 -08002754bail:
2755 return status;
2756}
2757
Tao Mabc13d342009-08-18 11:44:14 +08002758int 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 Ma8990e442011-02-23 22:45:26 +08002772 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 Mabc13d342009-08-18 11:44:14 +08002776
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 Qi62f8b1f2015-04-14 15:43:24 -07002809 status = -ENOENT;
Tao Mabc13d342009-08-18 11:44:14 +08002810 mlog_errno(status);
2811 goto leave;
2812 }
2813
Al Viro59551022016-01-22 15:40:57 -05002814 inode_lock(orphan_dir_inode);
Tao Mabc13d342009-08-18 11:44:14 +08002815
2816 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2817 if (status < 0) {
2818 mlog_errno(status);
Al Viro59551022016-01-22 15:40:57 -05002819 inode_unlock(orphan_dir_inode);
Tao Mabc13d342009-08-18 11:44:14 +08002820 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 Qi06ee5c72015-02-16 15:59:54 -08002846 orphan_dir_bh, false);
Tao Mabc13d342009-08-18 11:44:14 +08002847 if (status < 0) {
2848 mlog_errno(status);
2849 goto out_commit;
2850 }
2851
2852 di = (struct ocfs2_dinode *)di_bh->b_data;
Joseph Qi13eb9882013-07-03 15:00:48 -07002853 di->i_flags &= ~cpu_to_le32(OCFS2_ORPHANED_FL);
Tao Mabc13d342009-08-18 11:44:14 +08002854 di->i_orphaned_slot = 0;
Miklos Szeredibfe86842011-10-28 14:13:29 +02002855 set_nlink(inode, 1);
Tao Ma10cf1a02009-12-18 10:24:55 +08002856 ocfs2_set_links_count(di, inode->i_nlink);
Darrick J. Wong6fdb7022014-04-03 14:47:08 -07002857 ocfs2_update_inode_fsync_trans(handle, inode, 1);
Tao Mabc13d342009-08-18 11:44:14 +08002858 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 Mabc13d342009-08-18 11:44:14 +08002875 d_instantiate(dentry, inode);
2876 status = 0;
2877out_commit:
2878 ocfs2_commit_trans(osb, handle);
2879orphan_unlock:
2880 ocfs2_inode_unlock(orphan_dir_inode, 1);
Al Viro59551022016-01-22 15:40:57 -05002881 inode_unlock(orphan_dir_inode);
Tao Mabc13d342009-08-18 11:44:14 +08002882 iput(orphan_dir_inode);
2883leave:
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 Mac1e8d352011-03-07 16:43:21 +08002893 if (status)
2894 mlog_errno(status);
Tao Mabc13d342009-08-18 11:44:14 +08002895
2896 return status;
2897}
2898
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002899const struct inode_operations ocfs2_dir_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002900 .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 Yangd38eb8d2006-11-27 09:59:21 +08002911 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002912 .listxattr = ocfs2_listxattr,
Tristan Ye55f49462009-12-17 18:42:16 +08002913 .fiemap = ocfs2_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002914 .get_acl = ocfs2_iop_get_acl,
Christoph Hellwig702e5bc2013-12-20 05:16:48 -08002915 .set_acl = ocfs2_iop_set_acl,
Mark Fashehccd979b2005-12-15 14:31:24 -08002916};