blob: f4d609be940086794ff8e64b1ed7cd832ba517f5 [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * namei.c
5 *
6 * Create and rename file, directory, symlinks
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * Portions of this code from linux/fs/ext3/dir.c
11 *
12 * Copyright (C) 1992, 1993, 1994, 1995
13 * Remy Card (card@masi.ibp.fr)
14 * Laboratoire MASI - Institut Blaise pascal
15 * Universite Pierre et Marie Curie (Paris VI)
16 *
17 * from
18 *
19 * linux/fs/minix/dir.c
20 *
21 * Copyright (C) 1991, 1992 Linux Torvalds
22 *
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public
25 * License as published by the Free Software Foundation; either
26 * version 2 of the License, or (at your option) any later version.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31 * General Public License for more details.
32 *
33 * You should have received a copy of the GNU General Public
34 * License along with this program; if not, write to the
35 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
36 * Boston, MA 021110-1307, USA.
37 */
38
39#include <linux/fs.h>
40#include <linux/types.h>
41#include <linux/slab.h>
42#include <linux/highmem.h>
Jan Karaa90714c2008-10-09 19:38:40 +020043#include <linux/quotaops.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080044
Mark Fashehccd979b2005-12-15 14:31:24 -080045#include <cluster/masklog.h>
46
47#include "ocfs2.h"
48
49#include "alloc.h"
50#include "dcache.h"
51#include "dir.h"
52#include "dlmglue.h"
53#include "extent_map.h"
54#include "file.h"
55#include "inode.h"
56#include "journal.h"
57#include "namei.h"
58#include "suballoc.h"
Mark Fashehaa958872006-04-21 13:49:02 -070059#include "super.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080060#include "symlink.h"
61#include "sysfile.h"
62#include "uptodate.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080063#include "xattr.h"
Tiger Yang89c38bd2008-11-14 11:17:41 +080064#include "acl.h"
Tao Ma8990e442011-02-23 22:45:26 +080065#include "ocfs2_trace.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080066
67#include "buffer_head_io.h"
68
Mark Fashehccd979b2005-12-15 14:31:24 -080069static int ocfs2_mknod_locked(struct ocfs2_super *osb,
70 struct inode *dir,
Tiger Yangf5d36202008-11-14 11:15:44 +080071 struct inode *inode,
Mark Fashehccd979b2005-12-15 14:31:24 -080072 dev_t dev,
73 struct buffer_head **new_fe_bh,
74 struct buffer_head *parent_fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -070075 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080076 struct ocfs2_alloc_context *inode_ac);
77
Mark Fashehccd979b2005-12-15 14:31:24 -080078static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -070079 struct inode **ret_orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +080080 u64 blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -080081 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -080082 struct ocfs2_dir_lookup_result *lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -080083
84static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070085 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080086 struct inode *inode,
Tristan Ye3939fda2010-03-19 09:21:09 +080087 struct buffer_head *fe_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -080088 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -080089 struct ocfs2_dir_lookup_result *lookup,
Mark Fasheh5098c272006-10-05 18:12:57 -070090 struct inode *orphan_dir_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -080091
92static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070093 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080094 struct inode *inode,
95 const char *symname);
96
Mark Fashehccd979b2005-12-15 14:31:24 -080097/* An orphan dir name is an 8 byte value, printed as a hex string */
98#define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64)))
99
100static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400101 unsigned int flags)
Mark Fashehccd979b2005-12-15 14:31:24 -0800102{
103 int status;
104 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800105 struct inode *inode = NULL;
106 struct dentry *ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800107 struct ocfs2_inode_info *oi;
108
Tao Ma8990e442011-02-23 22:45:26 +0800109 trace_ocfs2_lookup(dir, dentry, dentry->d_name.len,
110 dentry->d_name.name,
111 (unsigned long long)OCFS2_I(dir)->ip_blkno, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800112
113 if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) {
114 ret = ERR_PTR(-ENAMETOOLONG);
115 goto bail;
116 }
117
Jan Karacb257972009-06-04 15:26:50 +0200118 status = ocfs2_inode_lock_nested(dir, NULL, 0, OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800119 if (status < 0) {
120 if (status != -ENOENT)
121 mlog_errno(status);
122 ret = ERR_PTR(status);
123 goto bail;
124 }
125
Mark Fashehbe94d112007-09-11 15:22:06 -0700126 status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name,
127 dentry->d_name.len, &blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800128 if (status < 0)
129 goto bail_add;
130
Jan Kara5fa06132008-01-11 00:11:45 +0100131 inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800132 if (IS_ERR(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800133 ret = ERR_PTR(-EACCES);
134 goto bail_unlock;
135 }
136
137 oi = OCFS2_I(inode);
138 /* Clear any orphaned state... If we were able to look up the
139 * inode from a directory, it certainly can't be orphaned. We
140 * might have the bad state from a node which intended to
141 * orphan this inode but crashed before it could commit the
142 * unlink. */
143 spin_lock(&oi->ip_lock);
144 oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED;
Mark Fashehccd979b2005-12-15 14:31:24 -0800145 spin_unlock(&oi->ip_lock);
146
147bail_add:
Mark Fashehccd979b2005-12-15 14:31:24 -0800148 ret = d_splice_alias(inode, dentry);
149
Mark Fasheh379dfe92006-09-08 14:21:03 -0700150 if (inode) {
151 /*
152 * If d_splice_alias() finds a DCACHE_DISCONNECTED
153 * dentry, it will d_move() it on top of ourse. The
154 * return value will indicate this however, so in
155 * those cases, we switch them around for the locking
156 * code.
157 *
158 * NOTE: This dentry already has ->d_op set from
159 * ocfs2_get_parent() and ocfs2_get_dentry()
160 */
161 if (ret)
162 dentry = ret;
163
164 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700165 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700166 if (status) {
167 mlog_errno(status);
168 ret = ERR_PTR(status);
169 goto bail_unlock;
170 }
Goldwyn Rodrigues5e98d492010-06-28 10:04:32 -0500171 } else
172 ocfs2_dentry_attach_gen(dentry);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700173
Mark Fashehccd979b2005-12-15 14:31:24 -0800174bail_unlock:
175 /* Don't drop the cluster lock until *after* the d_add --
176 * unlink on another node will message us to remove that
177 * dentry under this lock so otherwise we can race this with
Mark Fasheh34d024f2007-09-24 15:56:19 -0700178 * the downconvert thread and have a stale dentry. */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700179 ocfs2_inode_unlock(dir, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800180
181bail:
Mark Fashehccd979b2005-12-15 14:31:24 -0800182
Tao Ma8990e442011-02-23 22:45:26 +0800183 trace_ocfs2_lookup_ret(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -0800184
185 return ret;
186}
187
Al Viro67697cb2011-07-26 02:55:32 -0400188static struct inode *ocfs2_get_init_inode(struct inode *dir, umode_t mode)
Tiger Yangf5d36202008-11-14 11:15:44 +0800189{
190 struct inode *inode;
191
192 inode = new_inode(dir->i_sb);
193 if (!inode) {
194 mlog(ML_ERROR, "new_inode failed!\n");
195 return NULL;
196 }
197
198 /* populate as many fields early on as possible - many of
199 * these are used by the support functions here and in
200 * callers. */
201 if (S_ISDIR(mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +0200202 set_nlink(inode, 2);
Dmitry Monakhov75fe0a22010-03-04 17:32:16 +0300203 inode_init_owner(inode, dir, mode);
Christoph Hellwig871a2932010-03-03 09:05:07 -0500204 dquot_initialize(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +0800205 return inode;
206}
207
Mark Fashehccd979b2005-12-15 14:31:24 -0800208static int ocfs2_mknod(struct inode *dir,
209 struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400210 umode_t mode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800211 dev_t dev)
212{
213 int status = 0;
214 struct buffer_head *parent_fe_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700215 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800216 struct ocfs2_super *osb;
217 struct ocfs2_dinode *dirfe;
218 struct buffer_head *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800219 struct inode *inode = NULL;
220 struct ocfs2_alloc_context *inode_ac = NULL;
221 struct ocfs2_alloc_context *data_ac = NULL;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800222 struct ocfs2_alloc_context *meta_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +0800223 int want_clusters = 0;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800224 int want_meta = 0;
Tiger Yang534eadd2008-11-14 11:16:41 +0800225 int xattr_credits = 0;
226 struct ocfs2_security_xattr_info si = {
227 .enable = 1,
228 };
Jan Karaa90714c2008-10-09 19:38:40 +0200229 int did_quota_inode = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800230 struct ocfs2_dir_lookup_result lookup = { NULL, };
Joel Becker547ba7c2010-05-10 11:56:52 -0700231 sigset_t oldset;
232 int did_block_signals = 0;
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800233 struct posix_acl *default_acl = NULL, *acl = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800234
Tao Ma8990e442011-02-23 22:45:26 +0800235 trace_ocfs2_mknod(dir, dentry, dentry->d_name.len, dentry->d_name.name,
236 (unsigned long long)OCFS2_I(dir)->ip_blkno,
237 (unsigned long)dev, mode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800238
Christoph Hellwig871a2932010-03-03 09:05:07 -0500239 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500240
Mark Fashehccd979b2005-12-15 14:31:24 -0800241 /* get our super block */
242 osb = OCFS2_SB(dir->i_sb);
243
Mark Fashehe63aecb62007-10-18 15:30:42 -0700244 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehe3a82132006-10-05 16:04:17 -0700245 if (status < 0) {
246 if (status != -ENOENT)
247 mlog_errno(status);
248 return status;
249 }
250
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800251 if (S_ISDIR(mode) && (dir->i_nlink >= ocfs2_link_max(osb))) {
Mark Fasheha663e302006-08-09 11:45:07 -0700252 status = -EMLINK;
253 goto leave;
254 }
255
Mark Fashehccd979b2005-12-15 14:31:24 -0800256 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800257 if (!ocfs2_read_links_count(dirfe)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800258 /* can't make a file in a deleted directory. */
259 status = -ENOENT;
260 goto leave;
261 }
262
263 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
264 dentry->d_name.len);
265 if (status)
266 goto leave;
267
268 /* get a spot inside the dir. */
269 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
270 dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800271 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800272 if (status < 0) {
273 mlog_errno(status);
274 goto leave;
275 }
276
277 /* reserve an inode spot */
Mark Fashehda5cbf22006-10-06 18:34:35 -0700278 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800279 if (status < 0) {
280 if (status != -ENOSPC)
281 mlog_errno(status);
282 goto leave;
283 }
284
Tiger Yangf5d36202008-11-14 11:15:44 +0800285 inode = ocfs2_get_init_inode(dir, mode);
286 if (!inode) {
287 status = -ENOMEM;
288 mlog_errno(status);
289 goto leave;
290 }
291
Tiger Yang534eadd2008-11-14 11:16:41 +0800292 /* get security xattr */
Eric Paris2a7dba32011-02-01 11:05:39 -0500293 status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
Tiger Yang534eadd2008-11-14 11:16:41 +0800294 if (status) {
295 if (status == -EOPNOTSUPP)
296 si.enable = 0;
297 else {
298 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800299 goto leave;
300 }
301 }
302
Tiger Yang89c38bd2008-11-14 11:17:41 +0800303 /* calculate meta data/clusters for setting security and acl xattr */
304 status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800305 &si, &want_clusters,
306 &xattr_credits, &want_meta);
Tiger Yang89c38bd2008-11-14 11:17:41 +0800307 if (status < 0) {
308 mlog_errno(status);
309 goto leave;
Tiger Yang534eadd2008-11-14 11:16:41 +0800310 }
311
312 /* Reserve a cluster if creating an extent based directory. */
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800313 if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) {
Tiger Yang534eadd2008-11-14 11:16:41 +0800314 want_clusters += 1;
315
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800316 /* Dir indexing requires extra space as well */
Mark Fasheh4ed8a6b2008-11-24 17:02:08 -0800317 if (ocfs2_supports_indexed_dirs(osb))
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800318 want_meta++;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800319 }
320
321 status = ocfs2_reserve_new_metadata_blocks(osb, want_meta, &meta_ac);
322 if (status < 0) {
323 if (status != -ENOSPC)
324 mlog_errno(status);
325 goto leave;
326 }
327
Tiger Yang534eadd2008-11-14 11:16:41 +0800328 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
329 if (status < 0) {
330 if (status != -ENOSPC)
331 mlog_errno(status);
332 goto leave;
333 }
334
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800335 status = posix_acl_create(dir, &mode, &default_acl, &acl);
336 if (status) {
337 mlog_errno(status);
338 goto leave;
339 }
340
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800341 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb,
342 S_ISDIR(mode),
343 xattr_credits));
Mark Fashehccd979b2005-12-15 14:31:24 -0800344 if (IS_ERR(handle)) {
345 status = PTR_ERR(handle);
346 handle = NULL;
347 mlog_errno(status);
348 goto leave;
349 }
350
Joel Becker547ba7c2010-05-10 11:56:52 -0700351 /* Starting to change things, restart is no longer possible. */
352 ocfs2_block_signals(&oldset);
353 did_block_signals = 1;
354
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500355 status = dquot_alloc_inode(inode);
356 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +0200357 goto leave;
Jan Karaa90714c2008-10-09 19:38:40 +0200358 did_quota_inode = 1;
359
Mark Fashehccd979b2005-12-15 14:31:24 -0800360 /* do the real work now. */
Tao Ma19bd3412009-08-18 11:44:10 +0800361 status = ocfs2_mknod_locked(osb, dir, inode, dev,
Mark Fashehccd979b2005-12-15 14:31:24 -0800362 &new_fe_bh, parent_fe_bh, handle,
Tiger Yangf5d36202008-11-14 11:15:44 +0800363 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800364 if (status < 0) {
365 mlog_errno(status);
366 goto leave;
367 }
368
369 if (S_ISDIR(mode)) {
370 status = ocfs2_fill_new_dir(osb, handle, dir, inode,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800371 new_fe_bh, data_ac, meta_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800372 if (status < 0) {
373 mlog_errno(status);
374 goto leave;
375 }
376
Joel Becker0cf2f762009-02-12 16:41:25 -0800377 status = ocfs2_journal_access_di(handle, INODE_CACHE(dir),
378 parent_fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700379 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800380 if (status < 0) {
381 mlog_errno(status);
382 goto leave;
383 }
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800384 ocfs2_add_links_count(dirfe, 1);
Joel Beckerec20cec2010-03-19 14:13:52 -0700385 ocfs2_journal_dirty(handle, parent_fe_bh);
Dave Hansend8c76e62006-09-30 23:29:04 -0700386 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800387 }
388
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800389 if (default_acl) {
390 status = ocfs2_set_acl(handle, inode, new_fe_bh,
391 ACL_TYPE_DEFAULT, default_acl,
392 meta_ac, data_ac);
393 }
394 if (!status && acl) {
395 status = ocfs2_set_acl(handle, inode, new_fe_bh,
396 ACL_TYPE_ACCESS, acl,
397 meta_ac, data_ac);
398 }
399
Tiger Yang89c38bd2008-11-14 11:17:41 +0800400 if (status < 0) {
401 mlog_errno(status);
402 goto leave;
403 }
404
Tiger Yang534eadd2008-11-14 11:16:41 +0800405 if (si.enable) {
406 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800407 meta_ac, data_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +0800408 if (status < 0) {
409 mlog_errno(status);
410 goto leave;
411 }
412 }
413
Mark Fasheha9743fc2010-04-23 11:42:22 -0700414 /*
415 * Do this before adding the entry to the directory. We add
416 * also set d_op after success so that ->d_iput() will cleanup
417 * the dentry lock even if ocfs2_add_entry() fails below.
418 */
419 status = ocfs2_dentry_attach_lock(dentry, inode,
420 OCFS2_I(dir)->ip_blkno);
421 if (status) {
422 mlog_errno(status);
423 goto leave;
424 }
Mark Fasheha9743fc2010-04-23 11:42:22 -0700425
Mark Fashehccd979b2005-12-15 14:31:24 -0800426 status = ocfs2_add_entry(handle, dentry, inode,
427 OCFS2_I(inode)->ip_blkno, parent_fe_bh,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800428 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800429 if (status < 0) {
430 mlog_errno(status);
431 goto leave;
432 }
433
434 insert_inode_hash(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800435 d_instantiate(dentry, inode);
436 status = 0;
437leave:
Christoph Hellwig702e5bc2013-12-20 05:16:48 -0800438 if (default_acl)
439 posix_acl_release(default_acl);
440 if (acl)
441 posix_acl_release(acl);
Jan Karaa90714c2008-10-09 19:38:40 +0200442 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500443 dquot_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800444 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700445 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800446
Mark Fashehe63aecb62007-10-18 15:30:42 -0700447 ocfs2_inode_unlock(dir, 1);
Joel Becker547ba7c2010-05-10 11:56:52 -0700448 if (did_block_signals)
449 ocfs2_unblock_signals(&oldset);
Mark Fashehe3a82132006-10-05 16:04:17 -0700450
Mark Fasheha81cb882008-10-07 14:25:16 -0700451 brelse(new_fe_bh);
Mark Fasheha81cb882008-10-07 14:25:16 -0700452 brelse(parent_fe_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +0800453 kfree(si.name);
454 kfree(si.value);
Mark Fashehccd979b2005-12-15 14:31:24 -0800455
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800456 ocfs2_free_dir_lookup_result(&lookup);
457
Mark Fashehccd979b2005-12-15 14:31:24 -0800458 if (inode_ac)
459 ocfs2_free_alloc_context(inode_ac);
460
461 if (data_ac)
462 ocfs2_free_alloc_context(data_ac);
463
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800464 if (meta_ac)
465 ocfs2_free_alloc_context(meta_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +0800466
Li Dongyang062d3402010-04-22 16:11:29 +0800467 /*
468 * We should call iput after the i_mutex of the bitmap been
469 * unlocked in ocfs2_free_alloc_context, or the
470 * ocfs2_delete_inode will mutex_lock again.
471 */
472 if ((status < 0) && inode) {
473 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
474 clear_nlink(inode);
475 iput(inode);
476 }
477
Tao Mac1e8d352011-03-07 16:43:21 +0800478 if (status)
479 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800480
481 return status;
482}
483
Mark Fasheh021960c2010-08-13 15:15:15 -0700484static int __ocfs2_mknod_locked(struct inode *dir,
485 struct inode *inode,
486 dev_t dev,
487 struct buffer_head **new_fe_bh,
488 struct buffer_head *parent_fe_bh,
489 handle_t *handle,
490 struct ocfs2_alloc_context *inode_ac,
491 u64 fe_blkno, u64 suballoc_loc, u16 suballoc_bit)
Mark Fashehccd979b2005-12-15 14:31:24 -0800492{
493 int status = 0;
Mark Fasheh021960c2010-08-13 15:15:15 -0700494 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800495 struct ocfs2_dinode *fe = NULL;
496 struct ocfs2_extent_list *fel;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800497 u16 feat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800498
Mark Fashehccd979b2005-12-15 14:31:24 -0800499 *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800500
Mark Fashehccd979b2005-12-15 14:31:24 -0800501 /* populate as many fields early on as possible - many of
502 * these are used by the support functions here and in
503 * callers. */
504 inode->i_ino = ino_from_blkno(osb->sb, fe_blkno);
505 OCFS2_I(inode)->ip_blkno = fe_blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800506 spin_lock(&osb->osb_lock);
507 inode->i_generation = osb->s_next_generation++;
508 spin_unlock(&osb->osb_lock);
509
510 *new_fe_bh = sb_getblk(osb->sb, fe_blkno);
511 if (!*new_fe_bh) {
Rui Xiang7391a292013-11-12 15:06:54 -0800512 status = -ENOMEM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800513 mlog_errno(status);
514 goto leave;
515 }
Joel Becker8cb471e2009-02-10 20:00:41 -0800516 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), *new_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800517
Joel Becker0cf2f762009-02-12 16:41:25 -0800518 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
519 *new_fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700520 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800521 if (status < 0) {
522 mlog_errno(status);
523 goto leave;
524 }
525
526 fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data;
527 memset(fe, 0, osb->sb->s_blocksize);
528
529 fe->i_generation = cpu_to_le32(inode->i_generation);
530 fe->i_fs_generation = cpu_to_le32(osb->fs_generation);
531 fe->i_blkno = cpu_to_le64(fe_blkno);
Joel Becker2b6cb572010-03-26 10:09:15 +0800532 fe->i_suballoc_loc = cpu_to_le64(suballoc_loc);
Mark Fashehccd979b2005-12-15 14:31:24 -0800533 fe->i_suballoc_bit = cpu_to_le16(suballoc_bit);
Tao Ma4d0ddb22008-03-05 16:11:46 +0800534 fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot);
Eric W. Biederman2c034172013-01-31 17:27:11 -0800535 fe->i_uid = cpu_to_le32(i_uid_read(inode));
536 fe->i_gid = cpu_to_le32(i_gid_read(inode));
Tiger Yangf5d36202008-11-14 11:15:44 +0800537 fe->i_mode = cpu_to_le16(inode->i_mode);
538 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
Mark Fashehccd979b2005-12-15 14:31:24 -0800539 fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev));
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800540
541 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800542
543 fe->i_last_eb_blk = 0;
544 strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE);
Joseph Qi13eb9882013-07-03 15:00:48 -0700545 fe->i_flags |= cpu_to_le32(OCFS2_VALID_FL);
Mark Fashehccd979b2005-12-15 14:31:24 -0800546 fe->i_atime = fe->i_ctime = fe->i_mtime =
547 cpu_to_le64(CURRENT_TIME.tv_sec);
548 fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec =
549 cpu_to_le32(CURRENT_TIME.tv_nsec);
550 fe->i_dtime = 0;
551
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700552 /*
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800553 * If supported, directories start with inline data. If inline
554 * isn't supported, but indexing is, we start them as indexed.
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700555 */
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800556 feat = le16_to_cpu(fe->i_dyn_features);
Tiger Yangf5d36202008-11-14 11:15:44 +0800557 if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) {
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700558 fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL);
559
Tiger Yangd9ae49d2009-03-05 11:06:15 +0800560 fe->id2.i_data.id_count = cpu_to_le16(
561 ocfs2_max_inline_data_with_xattr(osb->sb, fe));
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700562 } else {
563 fel = &fe->id2.i_list;
564 fel->l_tree_depth = 0;
565 fel->l_next_free_rec = 0;
566 fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb));
567 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800568
Joel Beckerec20cec2010-03-19 14:13:52 -0700569 ocfs2_journal_dirty(handle, *new_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800570
Joel Beckerb657c952008-11-13 14:49:11 -0800571 ocfs2_populate_inode(inode, fe, 1);
Joel Becker0cf2f762009-02-12 16:41:25 -0800572 ocfs2_ci_set_new(osb, INODE_CACHE(inode));
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800573 if (!ocfs2_mount_local(osb)) {
574 status = ocfs2_create_new_inode_locks(inode);
575 if (status < 0)
576 mlog_errno(status);
577 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800578
579 status = 0; /* error in ocfs2_create_new_inode_locks is not
580 * critical */
581
Mark Fashehccd979b2005-12-15 14:31:24 -0800582leave:
583 if (status < 0) {
584 if (*new_fe_bh) {
585 brelse(*new_fe_bh);
586 *new_fe_bh = NULL;
587 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800588 }
589
Tao Mac1e8d352011-03-07 16:43:21 +0800590 if (status)
591 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800592 return status;
593}
594
Mark Fasheh021960c2010-08-13 15:15:15 -0700595static int ocfs2_mknod_locked(struct ocfs2_super *osb,
596 struct inode *dir,
597 struct inode *inode,
598 dev_t dev,
599 struct buffer_head **new_fe_bh,
600 struct buffer_head *parent_fe_bh,
601 handle_t *handle,
602 struct ocfs2_alloc_context *inode_ac)
603{
604 int status = 0;
605 u64 suballoc_loc, fe_blkno = 0;
606 u16 suballoc_bit;
607
608 *new_fe_bh = NULL;
609
610 status = ocfs2_claim_new_inode(handle, dir, parent_fe_bh,
611 inode_ac, &suballoc_loc,
612 &suballoc_bit, &fe_blkno);
613 if (status < 0) {
614 mlog_errno(status);
615 return status;
616 }
617
618 return __ocfs2_mknod_locked(dir, inode, dev, new_fe_bh,
619 parent_fe_bh, handle, inode_ac,
620 fe_blkno, suballoc_loc, suballoc_bit);
621}
622
Mark Fashehccd979b2005-12-15 14:31:24 -0800623static int ocfs2_mkdir(struct inode *dir,
624 struct dentry *dentry,
Al Viro18bb1db2011-07-26 01:41:39 -0400625 umode_t mode)
Mark Fashehccd979b2005-12-15 14:31:24 -0800626{
627 int ret;
628
Tao Ma8990e442011-02-23 22:45:26 +0800629 trace_ocfs2_mkdir(dir, dentry, dentry->d_name.len, dentry->d_name.name,
630 OCFS2_I(dir)->ip_blkno, mode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800631 ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0);
Tao Mac1e8d352011-03-07 16:43:21 +0800632 if (ret)
633 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -0800634
635 return ret;
636}
637
638static int ocfs2_create(struct inode *dir,
639 struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -0400640 umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400641 bool excl)
Mark Fashehccd979b2005-12-15 14:31:24 -0800642{
643 int ret;
644
Tao Ma8990e442011-02-23 22:45:26 +0800645 trace_ocfs2_create(dir, dentry, dentry->d_name.len, dentry->d_name.name,
646 (unsigned long long)OCFS2_I(dir)->ip_blkno, mode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800647 ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0);
Tao Mac1e8d352011-03-07 16:43:21 +0800648 if (ret)
649 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -0800650
651 return ret;
652}
653
654static int ocfs2_link(struct dentry *old_dentry,
655 struct inode *dir,
656 struct dentry *dentry)
657{
Mark Fasheh1fabe142006-10-09 18:11:45 -0700658 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800659 struct inode *inode = old_dentry->d_inode;
660 int err;
661 struct buffer_head *fe_bh = NULL;
662 struct buffer_head *parent_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800663 struct ocfs2_dinode *fe = NULL;
664 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800665 struct ocfs2_dir_lookup_result lookup = { NULL, };
Joel Becker547ba7c2010-05-10 11:56:52 -0700666 sigset_t oldset;
Mark Fashehccd979b2005-12-15 14:31:24 -0800667
Tao Ma8990e442011-02-23 22:45:26 +0800668 trace_ocfs2_link((unsigned long long)OCFS2_I(inode)->ip_blkno,
669 old_dentry->d_name.len, old_dentry->d_name.name,
670 dentry->d_name.len, dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -0800671
Mark Fasheh123a9642006-10-05 16:48:23 -0700672 if (S_ISDIR(inode->i_mode))
673 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800674
Christoph Hellwig871a2932010-03-03 09:05:07 -0500675 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500676
Jan Karacb257972009-06-04 15:26:50 +0200677 err = ocfs2_inode_lock_nested(dir, &parent_fe_bh, 1, OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800678 if (err < 0) {
679 if (err != -ENOENT)
680 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700681 return err;
Mark Fashehccd979b2005-12-15 14:31:24 -0800682 }
683
Tiger Yang0f62de22006-08-31 20:39:47 -0700684 if (!dir->i_nlink) {
685 err = -ENOENT;
Mark Fasheh123a9642006-10-05 16:48:23 -0700686 goto out;
Tiger Yang0f62de22006-08-31 20:39:47 -0700687 }
688
Mark Fashehccd979b2005-12-15 14:31:24 -0800689 err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
690 dentry->d_name.len);
691 if (err)
Mark Fasheh123a9642006-10-05 16:48:23 -0700692 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800693
694 err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
695 dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800696 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800697 if (err < 0) {
698 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700699 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800700 }
701
Mark Fashehe63aecb62007-10-18 15:30:42 -0700702 err = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800703 if (err < 0) {
704 if (err != -ENOENT)
705 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700706 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800707 }
708
709 fe = (struct ocfs2_dinode *) fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800710 if (ocfs2_read_links_count(fe) >= ocfs2_link_max(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800711 err = -EMLINK;
Mark Fasheh123a9642006-10-05 16:48:23 -0700712 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800713 }
714
Jan Karaa90714c2008-10-09 19:38:40 +0200715 handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800716 if (IS_ERR(handle)) {
717 err = PTR_ERR(handle);
718 handle = NULL;
719 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700720 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800721 }
722
Joel Becker547ba7c2010-05-10 11:56:52 -0700723 /* Starting to change things, restart is no longer possible. */
724 ocfs2_block_signals(&oldset);
725
Joel Becker0cf2f762009-02-12 16:41:25 -0800726 err = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700727 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800728 if (err < 0) {
729 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700730 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800731 }
732
Dave Hansend8c76e62006-09-30 23:29:04 -0700733 inc_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800734 inode->i_ctime = CURRENT_TIME;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800735 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800736 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
737 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
Joel Beckerec20cec2010-03-19 14:13:52 -0700738 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800739
740 err = ocfs2_add_entry(handle, dentry, inode,
741 OCFS2_I(inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800742 parent_fe_bh, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800743 if (err) {
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800744 ocfs2_add_links_count(fe, -1);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700745 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800746 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700747 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800748 }
749
Mark Fasheh0027dd52006-09-21 16:51:28 -0700750 err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700751 if (err) {
752 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700753 goto out_commit;
Mark Fasheh379dfe92006-09-08 14:21:03 -0700754 }
755
Al Viro7de9c6ee2010-10-23 11:11:40 -0400756 ihold(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800757 d_instantiate(dentry, inode);
Mark Fasheh123a9642006-10-05 16:48:23 -0700758
759out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700760 ocfs2_commit_trans(osb, handle);
Joel Becker547ba7c2010-05-10 11:56:52 -0700761 ocfs2_unblock_signals(&oldset);
Mark Fasheh123a9642006-10-05 16:48:23 -0700762out_unlock_inode:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700763 ocfs2_inode_unlock(inode, 1);
Mark Fasheh123a9642006-10-05 16:48:23 -0700764
765out:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700766 ocfs2_inode_unlock(dir, 1);
Mark Fasheh123a9642006-10-05 16:48:23 -0700767
Mark Fasheha81cb882008-10-07 14:25:16 -0700768 brelse(fe_bh);
769 brelse(parent_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800770
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800771 ocfs2_free_dir_lookup_result(&lookup);
772
Tao Mac1e8d352011-03-07 16:43:21 +0800773 if (err)
774 mlog_errno(err);
Mark Fashehccd979b2005-12-15 14:31:24 -0800775
776 return err;
777}
778
Mark Fasheh379dfe92006-09-08 14:21:03 -0700779/*
780 * Takes and drops an exclusive lock on the given dentry. This will
781 * force other nodes to drop it.
782 */
783static int ocfs2_remote_dentry_delete(struct dentry *dentry)
784{
785 int ret;
786
787 ret = ocfs2_dentry_lock(dentry, 1);
788 if (ret)
789 mlog_errno(ret);
790 else
791 ocfs2_dentry_unlock(dentry, 1);
792
793 return ret;
794}
795
Younger Liub5a8bb72013-07-03 15:01:01 -0700796static inline int ocfs2_inode_is_unlinkable(struct inode *inode)
Mark Fasheh17ff7852006-09-30 23:29:05 -0700797{
798 if (S_ISDIR(inode->i_mode)) {
799 if (inode->i_nlink == 2)
800 return 1;
801 return 0;
802 }
803
804 if (inode->i_nlink == 1)
805 return 1;
806 return 0;
807}
808
Mark Fashehccd979b2005-12-15 14:31:24 -0800809static int ocfs2_unlink(struct inode *dir,
810 struct dentry *dentry)
811{
812 int status;
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700813 int child_locked = 0;
Younger Liub5a8bb72013-07-03 15:01:01 -0700814 bool is_unlinkable = false;
Mark Fashehccd979b2005-12-15 14:31:24 -0800815 struct inode *inode = dentry->d_inode;
Mark Fasheh5098c272006-10-05 18:12:57 -0700816 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800817 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
818 u64 blkno;
819 struct ocfs2_dinode *fe = NULL;
820 struct buffer_head *fe_bh = NULL;
821 struct buffer_head *parent_node_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700822 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800823 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800824 struct ocfs2_dir_lookup_result lookup = { NULL, };
825 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -0800826
Tao Ma8990e442011-02-23 22:45:26 +0800827 trace_ocfs2_unlink(dir, dentry, dentry->d_name.len,
828 dentry->d_name.name,
829 (unsigned long long)OCFS2_I(dir)->ip_blkno,
830 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800831
Christoph Hellwig871a2932010-03-03 09:05:07 -0500832 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500833
Mark Fashehccd979b2005-12-15 14:31:24 -0800834 BUG_ON(dentry->d_parent->d_inode != dir);
835
Tao Ma8990e442011-02-23 22:45:26 +0800836 if (inode == osb->root_inode)
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700837 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800838
Jan Karacb257972009-06-04 15:26:50 +0200839 status = ocfs2_inode_lock_nested(dir, &parent_node_bh, 1,
840 OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800841 if (status < 0) {
842 if (status != -ENOENT)
843 mlog_errno(status);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700844 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800845 }
846
847 status = ocfs2_find_files_on_disk(dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800848 dentry->d_name.len, &blkno, dir,
849 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800850 if (status < 0) {
851 if (status != -ENOENT)
852 mlog_errno(status);
853 goto leave;
854 }
855
856 if (OCFS2_I(inode)->ip_blkno != blkno) {
857 status = -ENOENT;
858
Tao Ma8990e442011-02-23 22:45:26 +0800859 trace_ocfs2_unlink_noent(
860 (unsigned long long)OCFS2_I(inode)->ip_blkno,
861 (unsigned long long)blkno,
862 OCFS2_I(inode)->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800863 goto leave;
864 }
865
Mark Fashehe63aecb62007-10-18 15:30:42 -0700866 status = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800867 if (status < 0) {
868 if (status != -ENOENT)
869 mlog_errno(status);
870 goto leave;
871 }
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700872 child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800873
874 if (S_ISDIR(inode->i_mode)) {
Mark Fashehb80b5492009-02-18 11:41:38 -0800875 if (inode->i_nlink != 2 || !ocfs2_empty_dir(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800876 status = -ENOTEMPTY;
877 goto leave;
878 }
879 }
880
Mark Fasheh379dfe92006-09-08 14:21:03 -0700881 status = ocfs2_remote_dentry_delete(dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -0800882 if (status < 0) {
Mark Fasheh34d024f2007-09-24 15:56:19 -0700883 /* This remote delete should succeed under all normal
Mark Fashehccd979b2005-12-15 14:31:24 -0800884 * circumstances. */
885 mlog_errno(status);
886 goto leave;
887 }
888
Younger Liub5a8bb72013-07-03 15:01:01 -0700889 if (ocfs2_inode_is_unlinkable(inode)) {
Tao Ma19bd3412009-08-18 11:44:10 +0800890 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
891 OCFS2_I(inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800892 orphan_name, &orphan_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -0800893 if (status < 0) {
894 mlog_errno(status);
895 goto leave;
896 }
Younger Liub5a8bb72013-07-03 15:01:01 -0700897 is_unlinkable = true;
Mark Fashehccd979b2005-12-15 14:31:24 -0800898 }
899
Jan Karaa90714c2008-10-09 19:38:40 +0200900 handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800901 if (IS_ERR(handle)) {
902 status = PTR_ERR(handle);
903 handle = NULL;
904 mlog_errno(status);
905 goto leave;
906 }
907
Joel Becker0cf2f762009-02-12 16:41:25 -0800908 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700909 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800910 if (status < 0) {
911 mlog_errno(status);
912 goto leave;
913 }
914
915 fe = (struct ocfs2_dinode *) fe_bh->b_data;
916
Mark Fashehccd979b2005-12-15 14:31:24 -0800917 /* delete the name from the parent dir */
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800918 status = ocfs2_delete_entry(handle, dir, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800919 if (status < 0) {
920 mlog_errno(status);
921 goto leave;
922 }
923
Mark Fasheh17ff7852006-09-30 23:29:05 -0700924 if (S_ISDIR(inode->i_mode))
925 drop_nlink(inode);
926 drop_nlink(inode);
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800927 ocfs2_set_links_count(fe, inode->i_nlink);
Joel Beckerec20cec2010-03-19 14:13:52 -0700928 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800929
Mark Fasheh592282c2007-01-02 17:59:40 -0800930 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
931 if (S_ISDIR(inode->i_mode))
Mark Fasheh17ff7852006-09-30 23:29:05 -0700932 drop_nlink(dir);
Mark Fasheh592282c2007-01-02 17:59:40 -0800933
934 status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh);
935 if (status < 0) {
936 mlog_errno(status);
937 if (S_ISDIR(inode->i_mode))
Dave Hansend8c76e62006-09-30 23:29:04 -0700938 inc_nlink(dir);
Younger Liub5a8bb72013-07-03 15:01:01 -0700939 goto leave;
940 }
941
942 if (is_unlinkable) {
943 status = ocfs2_orphan_add(osb, handle, inode, fe_bh,
944 orphan_name, &orphan_insert, orphan_dir);
945 if (status < 0)
946 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800947 }
948
949leave:
Mark Fashehccd979b2005-12-15 14:31:24 -0800950 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700951 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800952
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700953 if (child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -0700954 ocfs2_inode_unlock(inode, 1);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700955
Mark Fashehe63aecb62007-10-18 15:30:42 -0700956 ocfs2_inode_unlock(dir, 1);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700957
Mark Fasheh5098c272006-10-05 18:12:57 -0700958 if (orphan_dir) {
959 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700960 ocfs2_inode_unlock(orphan_dir, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -0700961 mutex_unlock(&orphan_dir->i_mutex);
962 iput(orphan_dir);
963 }
964
Mark Fasheha81cb882008-10-07 14:25:16 -0700965 brelse(fe_bh);
Mark Fasheha81cb882008-10-07 14:25:16 -0700966 brelse(parent_node_bh);
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800967
968 ocfs2_free_dir_lookup_result(&orphan_insert);
969 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800970
Xiaowei.Huf5b25852014-01-27 17:06:56 -0800971 if (status && (status != -ENOTEMPTY) && (status != -ENOENT))
Tao Mac1e8d352011-03-07 16:43:21 +0800972 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800973
974 return status;
975}
976
977/*
978 * The only place this should be used is rename!
979 * if they have the same id, then the 1st one is the only one locked.
980 */
981static int ocfs2_double_lock(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -0800982 struct buffer_head **bh1,
983 struct inode *inode1,
984 struct buffer_head **bh2,
985 struct inode *inode2)
986{
987 int status;
988 struct ocfs2_inode_info *oi1 = OCFS2_I(inode1);
989 struct ocfs2_inode_info *oi2 = OCFS2_I(inode2);
990 struct buffer_head **tmpbh;
991 struct inode *tmpinode;
992
Tao Ma8990e442011-02-23 22:45:26 +0800993 trace_ocfs2_double_lock((unsigned long long)oi1->ip_blkno,
994 (unsigned long long)oi2->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800995
Mark Fashehccd979b2005-12-15 14:31:24 -0800996 if (*bh1)
997 *bh1 = NULL;
998 if (*bh2)
999 *bh2 = NULL;
1000
1001 /* we always want to lock the one with the lower lockid first. */
1002 if (oi1->ip_blkno != oi2->ip_blkno) {
1003 if (oi1->ip_blkno < oi2->ip_blkno) {
1004 /* switch id1 and id2 around */
Mark Fashehccd979b2005-12-15 14:31:24 -08001005 tmpbh = bh2;
1006 bh2 = bh1;
1007 bh1 = tmpbh;
1008
1009 tmpinode = inode2;
1010 inode2 = inode1;
1011 inode1 = tmpinode;
1012 }
1013 /* lock id2 */
Jan Karacb257972009-06-04 15:26:50 +02001014 status = ocfs2_inode_lock_nested(inode2, bh2, 1,
1015 OI_LS_RENAME1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001016 if (status < 0) {
1017 if (status != -ENOENT)
1018 mlog_errno(status);
1019 goto bail;
1020 }
1021 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001022
Mark Fashehccd979b2005-12-15 14:31:24 -08001023 /* lock id1 */
Jan Karacb257972009-06-04 15:26:50 +02001024 status = ocfs2_inode_lock_nested(inode1, bh1, 1, OI_LS_RENAME2);
Mark Fashehccd979b2005-12-15 14:31:24 -08001025 if (status < 0) {
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001026 /*
1027 * An error return must mean that no cluster locks
1028 * were held on function exit.
1029 */
Tao Ma1e6d9152010-12-20 16:21:11 +08001030 if (oi1->ip_blkno != oi2->ip_blkno) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001031 ocfs2_inode_unlock(inode2, 1);
Tao Ma1e6d9152010-12-20 16:21:11 +08001032 brelse(*bh2);
1033 *bh2 = NULL;
1034 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001035
Mark Fashehccd979b2005-12-15 14:31:24 -08001036 if (status != -ENOENT)
1037 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001038 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001039
Tao Ma8990e442011-02-23 22:45:26 +08001040 trace_ocfs2_double_lock_end(
1041 (unsigned long long)OCFS2_I(inode1)->ip_blkno,
1042 (unsigned long long)OCFS2_I(inode2)->ip_blkno);
1043
Mark Fashehccd979b2005-12-15 14:31:24 -08001044bail:
Tao Mac1e8d352011-03-07 16:43:21 +08001045 if (status)
1046 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001047 return status;
1048}
1049
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001050static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2)
1051{
Mark Fashehe63aecb62007-10-18 15:30:42 -07001052 ocfs2_inode_unlock(inode1, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001053
1054 if (inode1 != inode2)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001055 ocfs2_inode_unlock(inode2, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001056}
1057
Mark Fashehccd979b2005-12-15 14:31:24 -08001058static int ocfs2_rename(struct inode *old_dir,
1059 struct dentry *old_dentry,
1060 struct inode *new_dir,
1061 struct dentry *new_dentry)
1062{
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001063 int status = 0, rename_lock = 0, parents_locked = 0, target_exists = 0;
1064 int old_child_locked = 0, new_child_locked = 0, update_dot_dot = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001065 struct inode *old_inode = old_dentry->d_inode;
1066 struct inode *new_inode = new_dentry->d_inode;
Mark Fasheh5098c272006-10-05 18:12:57 -07001067 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001068 struct ocfs2_dinode *newfe = NULL;
1069 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
Mark Fashehccd979b2005-12-15 14:31:24 -08001070 struct buffer_head *newfe_bh = NULL;
Mark Fasheh592282c2007-01-02 17:59:40 -08001071 struct buffer_head *old_inode_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001072 struct ocfs2_super *osb = NULL;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001073 u64 newfe_blkno, old_de_ino;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001074 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001075 struct buffer_head *old_dir_bh = NULL;
1076 struct buffer_head *new_dir_bh = NULL;
Al Viro847c9db2012-02-12 21:00:05 -05001077 u32 old_dir_nlink = old_dir->i_nlink;
Sunil Mushran480214d2007-08-06 15:11:56 -07001078 struct ocfs2_dinode *old_di;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001079 struct ocfs2_dir_lookup_result old_inode_dot_dot_res = { NULL, };
1080 struct ocfs2_dir_lookup_result target_lookup_res = { NULL, };
1081 struct ocfs2_dir_lookup_result old_entry_lookup = { NULL, };
1082 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
1083 struct ocfs2_dir_lookup_result target_insert = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -08001084
1085 /* At some point it might be nice to break this function up a
1086 * bit. */
1087
Tao Ma8990e442011-02-23 22:45:26 +08001088 trace_ocfs2_rename(old_dir, old_dentry, new_dir, new_dentry,
1089 old_dentry->d_name.len, old_dentry->d_name.name,
1090 new_dentry->d_name.len, new_dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08001091
Christoph Hellwig871a2932010-03-03 09:05:07 -05001092 dquot_initialize(old_dir);
1093 dquot_initialize(new_dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001094
Mark Fashehccd979b2005-12-15 14:31:24 -08001095 osb = OCFS2_SB(old_dir->i_sb);
1096
1097 if (new_inode) {
1098 if (!igrab(new_inode))
1099 BUG();
1100 }
1101
Uwe Kleine-König1b3c3712007-02-17 19:23:03 +01001102 /* Assume a directory hierarchy thusly:
Mark Fashehccd979b2005-12-15 14:31:24 -08001103 * a/b/c
1104 * a/d
1105 * a,b,c, and d are all directories.
1106 *
1107 * from cwd of 'a' on both nodes:
1108 * node1: mv b/c d
1109 * node2: mv d b/c
1110 *
1111 * And that's why, just like the VFS, we need a file system
1112 * rename lock. */
Jan Kara5dabd692008-02-21 18:00:00 +01001113 if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001114 status = ocfs2_rename_lock(osb);
1115 if (status < 0) {
1116 mlog_errno(status);
1117 goto bail;
1118 }
1119 rename_lock = 1;
1120 }
1121
Mark Fashehccd979b2005-12-15 14:31:24 -08001122 /* if old and new are the same, this'll just do one lock. */
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001123 status = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
1124 &new_dir_bh, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001125 if (status < 0) {
1126 mlog_errno(status);
1127 goto bail;
1128 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001129 parents_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001130
1131 /* make sure both dirs have bhs
1132 * get an extra ref on old_dir_bh if old==new */
1133 if (!new_dir_bh) {
1134 if (old_dir_bh) {
1135 new_dir_bh = old_dir_bh;
1136 get_bh(new_dir_bh);
1137 } else {
1138 mlog(ML_ERROR, "no old_dir_bh!\n");
1139 status = -EIO;
1140 goto bail;
1141 }
1142 }
1143
Mark Fasheh379dfe92006-09-08 14:21:03 -07001144 /*
Mark Fasheh592282c2007-01-02 17:59:40 -08001145 * Aside from allowing a meta data update, the locking here
Mark Fasheh34d024f2007-09-24 15:56:19 -07001146 * also ensures that the downconvert thread on other nodes
1147 * won't have to concurrently downconvert the inode and the
1148 * dentry locks.
Mark Fasheh379dfe92006-09-08 14:21:03 -07001149 */
Jan Karacb257972009-06-04 15:26:50 +02001150 status = ocfs2_inode_lock_nested(old_inode, &old_inode_bh, 1,
1151 OI_LS_PARENT);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001152 if (status < 0) {
1153 if (status != -ENOENT)
Mark Fashehccd979b2005-12-15 14:31:24 -08001154 mlog_errno(status);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001155 goto bail;
1156 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001157 old_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001158
Mark Fasheh379dfe92006-09-08 14:21:03 -07001159 status = ocfs2_remote_dentry_delete(old_dentry);
1160 if (status < 0) {
1161 mlog_errno(status);
1162 goto bail;
1163 }
1164
1165 if (S_ISDIR(old_inode->i_mode)) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001166 u64 old_inode_parent;
Mark Fashehccd979b2005-12-15 14:31:24 -08001167
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001168 update_dot_dot = 1;
Mark Fasheh38760e22007-09-11 17:21:56 -07001169 status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001170 old_inode,
1171 &old_inode_dot_dot_res);
Mark Fasheh38760e22007-09-11 17:21:56 -07001172 if (status) {
1173 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001174 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001175 }
1176
1177 if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) {
1178 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001179 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001180 }
1181
1182 if (!new_inode && new_dir != old_dir &&
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001183 new_dir->i_nlink >= ocfs2_link_max(osb)) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001184 status = -EMLINK;
1185 goto bail;
1186 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001187 }
1188
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001189 status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
1190 old_dentry->d_name.len,
1191 &old_de_ino);
1192 if (status) {
1193 status = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -08001194 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001195 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001196
1197 /*
1198 * Check for inode number is _not_ due to possible IO errors.
1199 * We might rmdir the source, keep it as pwd of some process
1200 * and merrily kill the link to whatever was created under the
1201 * same name. Goodbye sticky bit ;-<
1202 */
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001203 if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) {
1204 status = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -08001205 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001206 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001207
1208 /* check if the target already exists (in which case we need
1209 * to delete it */
1210 status = ocfs2_find_files_on_disk(new_dentry->d_name.name,
1211 new_dentry->d_name.len,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001212 &newfe_blkno, new_dir,
1213 &target_lookup_res);
Mark Fashehccd979b2005-12-15 14:31:24 -08001214 /* The only error we allow here is -ENOENT because the new
1215 * file not existing is perfectly valid. */
1216 if ((status < 0) && (status != -ENOENT)) {
1217 /* If we cannot find the file specified we should just */
1218 /* return the error... */
1219 mlog_errno(status);
1220 goto bail;
1221 }
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001222 if (status == 0)
1223 target_exists = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001224
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001225 if (!target_exists && new_inode) {
Srinivas Eedae325a882007-10-31 16:49:43 -07001226 /*
1227 * Target was unlinked by another node while we were
1228 * waiting to get to ocfs2_rename(). There isn't
1229 * anything we can do here to help the situation, so
1230 * bubble up the appropriate error.
1231 */
1232 status = -ENOENT;
1233 goto bail;
1234 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001235
1236 /* In case we need to overwrite an existing file, we blow it
1237 * away first */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001238 if (target_exists) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001239 /* VFS didn't think there existed an inode here, but
1240 * someone else in the cluster must have raced our
1241 * rename to create one. Today we error cleanly, in
1242 * the future we should consider calling iget to build
1243 * a new struct inode for this entry. */
1244 if (!new_inode) {
1245 status = -EACCES;
1246
Tao Ma8990e442011-02-23 22:45:26 +08001247 trace_ocfs2_rename_target_exists(new_dentry->d_name.len,
1248 new_dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08001249 goto bail;
1250 }
1251
1252 if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) {
1253 status = -EACCES;
1254
Tao Ma8990e442011-02-23 22:45:26 +08001255 trace_ocfs2_rename_disagree(
Mark Fashehb06970532006-03-03 10:24:33 -08001256 (unsigned long long)OCFS2_I(new_inode)->ip_blkno,
1257 (unsigned long long)newfe_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08001258 OCFS2_I(new_inode)->ip_flags);
1259 goto bail;
1260 }
1261
Mark Fashehe63aecb62007-10-18 15:30:42 -07001262 status = ocfs2_inode_lock(new_inode, &newfe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001263 if (status < 0) {
1264 if (status != -ENOENT)
1265 mlog_errno(status);
1266 goto bail;
1267 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001268 new_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001269
Mark Fasheh379dfe92006-09-08 14:21:03 -07001270 status = ocfs2_remote_dentry_delete(new_dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -08001271 if (status < 0) {
1272 mlog_errno(status);
1273 goto bail;
1274 }
1275
1276 newfe = (struct ocfs2_dinode *) newfe_bh->b_data;
1277
Tao Ma8990e442011-02-23 22:45:26 +08001278 trace_ocfs2_rename_over_existing(
Mark Fashehb06970532006-03-03 10:24:33 -08001279 (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ?
Mark Fashehccd979b2005-12-15 14:31:24 -08001280 (unsigned long long)newfe_bh->b_blocknr : 0ULL);
1281
1282 if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) {
Mark Fasheh5098c272006-10-05 18:12:57 -07001283 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +08001284 OCFS2_I(new_inode)->ip_blkno,
1285 orphan_name, &orphan_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001286 if (status < 0) {
1287 mlog_errno(status);
1288 goto bail;
1289 }
1290 }
1291 } else {
1292 BUG_ON(new_dentry->d_parent->d_inode != new_dir);
1293
1294 status = ocfs2_check_dir_for_entry(new_dir,
1295 new_dentry->d_name.name,
1296 new_dentry->d_name.len);
1297 if (status)
1298 goto bail;
1299
1300 status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh,
1301 new_dentry->d_name.name,
1302 new_dentry->d_name.len,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001303 &target_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001304 if (status < 0) {
1305 mlog_errno(status);
1306 goto bail;
1307 }
1308 }
1309
Jan Karaa90714c2008-10-09 19:38:40 +02001310 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001311 if (IS_ERR(handle)) {
1312 status = PTR_ERR(handle);
1313 handle = NULL;
1314 mlog_errno(status);
1315 goto bail;
1316 }
1317
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001318 if (target_exists) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001319 if (S_ISDIR(new_inode->i_mode)) {
Mark Fashehb80b5492009-02-18 11:41:38 -08001320 if (new_inode->i_nlink != 2 ||
1321 !ocfs2_empty_dir(new_inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001322 status = -ENOTEMPTY;
1323 goto bail;
1324 }
1325 }
Joel Becker0cf2f762009-02-12 16:41:25 -08001326 status = ocfs2_journal_access_di(handle, INODE_CACHE(new_inode),
1327 newfe_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001328 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001329 if (status < 0) {
1330 mlog_errno(status);
1331 goto bail;
1332 }
1333
1334 if (S_ISDIR(new_inode->i_mode) ||
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001335 (ocfs2_read_links_count(newfe) == 1)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001336 status = ocfs2_orphan_add(osb, handle, new_inode,
Tristan Ye3939fda2010-03-19 09:21:09 +08001337 newfe_bh, orphan_name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001338 &orphan_insert, orphan_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001339 if (status < 0) {
1340 mlog_errno(status);
1341 goto bail;
1342 }
1343 }
1344
1345 /* change the dirent to point to the correct inode */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001346 status = ocfs2_update_entry(new_dir, handle, &target_lookup_res,
1347 old_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001348 if (status < 0) {
1349 mlog_errno(status);
1350 goto bail;
1351 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001352 new_dir->i_version++;
Mark Fashehccd979b2005-12-15 14:31:24 -08001353
1354 if (S_ISDIR(new_inode->i_mode))
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001355 ocfs2_set_links_count(newfe, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001356 else
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001357 ocfs2_add_links_count(newfe, -1);
Joel Beckerec20cec2010-03-19 14:13:52 -07001358 ocfs2_journal_dirty(handle, newfe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001359 } else {
1360 /* if the name was not found in new_dir, add it now */
1361 status = ocfs2_add_entry(handle, new_dentry, old_inode,
1362 OCFS2_I(old_inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001363 new_dir_bh, &target_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001364 }
1365
1366 old_inode->i_ctime = CURRENT_TIME;
1367 mark_inode_dirty(old_inode);
Sunil Mushran480214d2007-08-06 15:11:56 -07001368
Joel Becker0cf2f762009-02-12 16:41:25 -08001369 status = ocfs2_journal_access_di(handle, INODE_CACHE(old_inode),
1370 old_inode_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001371 OCFS2_JOURNAL_ACCESS_WRITE);
Sunil Mushran480214d2007-08-06 15:11:56 -07001372 if (status >= 0) {
1373 old_di = (struct ocfs2_dinode *) old_inode_bh->b_data;
1374
1375 old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec);
1376 old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec);
Joel Beckerec20cec2010-03-19 14:13:52 -07001377 ocfs2_journal_dirty(handle, old_inode_bh);
Sunil Mushran480214d2007-08-06 15:11:56 -07001378 } else
1379 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001380
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001381 /*
1382 * Now that the name has been added to new_dir, remove the old name.
1383 *
1384 * We don't keep any directory entry context around until now
1385 * because the insert might have changed the type of directory
1386 * we're dealing with.
1387 */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001388 status = ocfs2_find_entry(old_dentry->d_name.name,
1389 old_dentry->d_name.len, old_dir,
1390 &old_entry_lookup);
1391 if (status)
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001392 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001393
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001394 status = ocfs2_delete_entry(handle, old_dir, &old_entry_lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001395 if (status < 0) {
1396 mlog_errno(status);
1397 goto bail;
1398 }
1399
1400 if (new_inode) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001401 drop_nlink(new_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001402 new_inode->i_ctime = CURRENT_TIME;
1403 }
1404 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001405
1406 if (update_dot_dot) {
1407 status = ocfs2_update_entry(old_inode, handle,
1408 &old_inode_dot_dot_res, new_dir);
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001409 drop_nlink(old_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001410 if (new_inode) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001411 drop_nlink(new_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001412 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001413 inc_nlink(new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001414 mark_inode_dirty(new_dir);
1415 }
1416 }
1417 mark_inode_dirty(old_dir);
Mark Fasheh592282c2007-01-02 17:59:40 -08001418 ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh);
1419 if (new_inode) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001420 mark_inode_dirty(new_inode);
Mark Fasheh592282c2007-01-02 17:59:40 -08001421 ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh);
1422 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001423
Mark Fasheh592282c2007-01-02 17:59:40 -08001424 if (old_dir != new_dir) {
1425 /* Keep the same times on both directories.*/
1426 new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime;
1427
1428 /*
1429 * This will also pick up the i_nlink change from the
1430 * block above.
1431 */
1432 ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh);
1433 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001434
1435 if (old_dir_nlink != old_dir->i_nlink) {
1436 if (!old_dir_bh) {
1437 mlog(ML_ERROR, "need to change nlink for old dir "
Mark Fashehb06970532006-03-03 10:24:33 -08001438 "%llu from %d to %d but bh is NULL!\n",
1439 (unsigned long long)OCFS2_I(old_dir)->ip_blkno,
1440 (int)old_dir_nlink, old_dir->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001441 } else {
1442 struct ocfs2_dinode *fe;
Joel Becker0cf2f762009-02-12 16:41:25 -08001443 status = ocfs2_journal_access_di(handle,
1444 INODE_CACHE(old_dir),
1445 old_dir_bh,
1446 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001447 fe = (struct ocfs2_dinode *) old_dir_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001448 ocfs2_set_links_count(fe, old_dir->i_nlink);
Joel Beckerec20cec2010-03-19 14:13:52 -07001449 ocfs2_journal_dirty(handle, old_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001450 }
1451 }
Mark Fasheh379dfe92006-09-08 14:21:03 -07001452 ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001453 status = 0;
1454bail:
1455 if (rename_lock)
1456 ocfs2_rename_unlock(osb);
1457
1458 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001459 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001460
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001461 if (parents_locked)
1462 ocfs2_double_unlock(old_dir, new_dir);
1463
1464 if (old_child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001465 ocfs2_inode_unlock(old_inode, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001466
1467 if (new_child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001468 ocfs2_inode_unlock(new_inode, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001469
Mark Fasheh5098c272006-10-05 18:12:57 -07001470 if (orphan_dir) {
1471 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001472 ocfs2_inode_unlock(orphan_dir, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -07001473 mutex_unlock(&orphan_dir->i_mutex);
1474 iput(orphan_dir);
1475 }
1476
Mark Fashehccd979b2005-12-15 14:31:24 -08001477 if (new_inode)
1478 sync_mapping_buffers(old_inode->i_mapping);
1479
1480 if (new_inode)
1481 iput(new_inode);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001482
1483 ocfs2_free_dir_lookup_result(&target_lookup_res);
1484 ocfs2_free_dir_lookup_result(&old_entry_lookup);
1485 ocfs2_free_dir_lookup_result(&old_inode_dot_dot_res);
1486 ocfs2_free_dir_lookup_result(&orphan_insert);
1487 ocfs2_free_dir_lookup_result(&target_insert);
1488
Mark Fasheha81cb882008-10-07 14:25:16 -07001489 brelse(newfe_bh);
1490 brelse(old_inode_bh);
1491 brelse(old_dir_bh);
1492 brelse(new_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001493
Tao Mac1e8d352011-03-07 16:43:21 +08001494 if (status)
1495 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001496
1497 return status;
1498}
1499
1500/*
1501 * we expect i_size = strlen(symname). Copy symname into the file
1502 * data, including the null terminator.
1503 */
1504static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001505 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001506 struct inode *inode,
1507 const char *symname)
1508{
1509 struct buffer_head **bhs = NULL;
1510 const char *c;
1511 struct super_block *sb = osb->sb;
Mark Fasheh4f902c32007-03-09 16:26:50 -08001512 u64 p_blkno, p_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -08001513 int virtual, blocks, status, i, bytes_left;
1514
1515 bytes_left = i_size_read(inode) + 1;
1516 /* we can't trust i_blocks because we're actually going to
1517 * write i_size + 1 bytes. */
1518 blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
1519
Tao Ma8990e442011-02-23 22:45:26 +08001520 trace_ocfs2_create_symlink_data((unsigned long long)inode->i_blocks,
1521 i_size_read(inode), blocks);
Mark Fashehccd979b2005-12-15 14:31:24 -08001522
1523 /* Sanity check -- make sure we're going to fit. */
1524 if (bytes_left >
1525 ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) {
1526 status = -EIO;
1527 mlog_errno(status);
1528 goto bail;
1529 }
1530
1531 bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL);
1532 if (!bhs) {
1533 status = -ENOMEM;
1534 mlog_errno(status);
1535 goto bail;
1536 }
1537
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001538 status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks,
1539 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001540 if (status < 0) {
1541 mlog_errno(status);
1542 goto bail;
1543 }
1544
1545 /* links can never be larger than one cluster so we know this
1546 * is all going to be contiguous, but do a sanity check
1547 * anyway. */
1548 if ((p_blocks << sb->s_blocksize_bits) < bytes_left) {
1549 status = -EIO;
1550 mlog_errno(status);
1551 goto bail;
1552 }
1553
1554 virtual = 0;
1555 while(bytes_left > 0) {
1556 c = &symname[virtual * sb->s_blocksize];
1557
1558 bhs[virtual] = sb_getblk(sb, p_blkno);
1559 if (!bhs[virtual]) {
1560 status = -ENOMEM;
1561 mlog_errno(status);
1562 goto bail;
1563 }
Joel Becker8cb471e2009-02-10 20:00:41 -08001564 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode),
1565 bhs[virtual]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001566
Joel Becker0cf2f762009-02-12 16:41:25 -08001567 status = ocfs2_journal_access(handle, INODE_CACHE(inode),
1568 bhs[virtual],
Mark Fashehccd979b2005-12-15 14:31:24 -08001569 OCFS2_JOURNAL_ACCESS_CREATE);
1570 if (status < 0) {
1571 mlog_errno(status);
1572 goto bail;
1573 }
1574
1575 memset(bhs[virtual]->b_data, 0, sb->s_blocksize);
1576
1577 memcpy(bhs[virtual]->b_data, c,
1578 (bytes_left > sb->s_blocksize) ? sb->s_blocksize :
1579 bytes_left);
1580
Joel Beckerec20cec2010-03-19 14:13:52 -07001581 ocfs2_journal_dirty(handle, bhs[virtual]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001582
1583 virtual++;
1584 p_blkno++;
1585 bytes_left -= sb->s_blocksize;
1586 }
1587
1588 status = 0;
1589bail:
1590
1591 if (bhs) {
1592 for(i = 0; i < blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001593 brelse(bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001594 kfree(bhs);
1595 }
1596
Tao Mac1e8d352011-03-07 16:43:21 +08001597 if (status)
1598 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001599 return status;
1600}
1601
1602static int ocfs2_symlink(struct inode *dir,
1603 struct dentry *dentry,
1604 const char *symname)
1605{
1606 int status, l, credits;
1607 u64 newsize;
1608 struct ocfs2_super *osb = NULL;
1609 struct inode *inode = NULL;
1610 struct super_block *sb;
1611 struct buffer_head *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001612 struct buffer_head *parent_fe_bh = NULL;
1613 struct ocfs2_dinode *fe = NULL;
1614 struct ocfs2_dinode *dirfe;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001615 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001616 struct ocfs2_alloc_context *inode_ac = NULL;
1617 struct ocfs2_alloc_context *data_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +08001618 struct ocfs2_alloc_context *xattr_ac = NULL;
1619 int want_clusters = 0;
1620 int xattr_credits = 0;
1621 struct ocfs2_security_xattr_info si = {
1622 .enable = 1,
1623 };
Jan Karaa90714c2008-10-09 19:38:40 +02001624 int did_quota = 0, did_quota_inode = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001625 struct ocfs2_dir_lookup_result lookup = { NULL, };
Joel Becker547ba7c2010-05-10 11:56:52 -07001626 sigset_t oldset;
1627 int did_block_signals = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001628
Tao Ma8990e442011-02-23 22:45:26 +08001629 trace_ocfs2_symlink_begin(dir, dentry, symname,
1630 dentry->d_name.len, dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08001631
Christoph Hellwig871a2932010-03-03 09:05:07 -05001632 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001633
Mark Fashehccd979b2005-12-15 14:31:24 -08001634 sb = dir->i_sb;
1635 osb = OCFS2_SB(sb);
1636
1637 l = strlen(symname) + 1;
1638
1639 credits = ocfs2_calc_symlink_credits(sb);
1640
Mark Fashehccd979b2005-12-15 14:31:24 -08001641 /* lock the parent directory */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001642 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001643 if (status < 0) {
1644 if (status != -ENOENT)
1645 mlog_errno(status);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001646 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001647 }
1648
1649 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001650 if (!ocfs2_read_links_count(dirfe)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001651 /* can't make a file in a deleted directory. */
1652 status = -ENOENT;
1653 goto bail;
1654 }
1655
1656 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
1657 dentry->d_name.len);
1658 if (status)
1659 goto bail;
1660
1661 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
1662 dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001663 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001664 if (status < 0) {
1665 mlog_errno(status);
1666 goto bail;
1667 }
1668
Mark Fashehda5cbf22006-10-06 18:34:35 -07001669 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001670 if (status < 0) {
1671 if (status != -ENOSPC)
1672 mlog_errno(status);
1673 goto bail;
1674 }
1675
Tiger Yangf5d36202008-11-14 11:15:44 +08001676 inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO);
1677 if (!inode) {
1678 status = -ENOMEM;
1679 mlog_errno(status);
1680 goto bail;
1681 }
1682
Tiger Yang534eadd2008-11-14 11:16:41 +08001683 /* get security xattr */
Eric Paris2a7dba32011-02-01 11:05:39 -05001684 status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
Tiger Yang534eadd2008-11-14 11:16:41 +08001685 if (status) {
1686 if (status == -EOPNOTSUPP)
1687 si.enable = 0;
1688 else {
1689 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001690 goto bail;
1691 }
1692 }
1693
Tiger Yang534eadd2008-11-14 11:16:41 +08001694 /* calculate meta data/clusters for setting security xattr */
1695 if (si.enable) {
1696 status = ocfs2_calc_security_init(dir, &si, &want_clusters,
1697 &xattr_credits, &xattr_ac);
1698 if (status < 0) {
1699 mlog_errno(status);
1700 goto bail;
1701 }
1702 }
1703
1704 /* don't reserve bitmap space for fast symlinks. */
1705 if (l > ocfs2_fast_symlink_chars(sb))
1706 want_clusters += 1;
1707
1708 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
1709 if (status < 0) {
1710 if (status != -ENOSPC)
1711 mlog_errno(status);
1712 goto bail;
1713 }
1714
1715 handle = ocfs2_start_trans(osb, credits + xattr_credits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001716 if (IS_ERR(handle)) {
1717 status = PTR_ERR(handle);
1718 handle = NULL;
1719 mlog_errno(status);
1720 goto bail;
1721 }
1722
Joel Becker547ba7c2010-05-10 11:56:52 -07001723 /* Starting to change things, restart is no longer possible. */
1724 ocfs2_block_signals(&oldset);
1725 did_block_signals = 1;
1726
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001727 status = dquot_alloc_inode(inode);
1728 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +02001729 goto bail;
Jan Karaa90714c2008-10-09 19:38:40 +02001730 did_quota_inode = 1;
1731
Tao Ma8990e442011-02-23 22:45:26 +08001732 trace_ocfs2_symlink_create(dir, dentry, dentry->d_name.len,
1733 dentry->d_name.name,
1734 (unsigned long long)OCFS2_I(dir)->ip_blkno,
1735 inode->i_mode);
Tao Ma19bd3412009-08-18 11:44:10 +08001736
1737 status = ocfs2_mknod_locked(osb, dir, inode,
Tiger Yangf5d36202008-11-14 11:15:44 +08001738 0, &new_fe_bh, parent_fe_bh, handle,
1739 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001740 if (status < 0) {
1741 mlog_errno(status);
1742 goto bail;
1743 }
1744
1745 fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
1746 inode->i_rdev = 0;
1747 newsize = l - 1;
Al Viroea022dfb2012-05-03 10:14:29 -04001748 inode->i_op = &ocfs2_symlink_inode_operations;
Mark Fashehccd979b2005-12-15 14:31:24 -08001749 if (l > ocfs2_fast_symlink_chars(sb)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08001750 u32 offset = 0;
1751
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001752 status = dquot_alloc_space_nodirty(inode,
1753 ocfs2_clusters_to_bytes(osb->sb, 1));
1754 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +02001755 goto bail;
Jan Karaa90714c2008-10-09 19:38:40 +02001756 did_quota = 1;
Al Viroea022dfb2012-05-03 10:14:29 -04001757 inode->i_mapping->a_ops = &ocfs2_aops;
Tao Ma0eb8d472008-08-18 17:38:45 +08001758 status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0,
1759 new_fe_bh,
1760 handle, data_ac, NULL,
1761 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001762 if (status < 0) {
1763 if (status != -ENOSPC && status != -EINTR) {
Mark Fashehb06970532006-03-03 10:24:33 -08001764 mlog(ML_ERROR,
1765 "Failed to extend file to %llu\n",
1766 (unsigned long long)newsize);
Mark Fashehccd979b2005-12-15 14:31:24 -08001767 mlog_errno(status);
1768 status = -ENOSPC;
1769 }
1770 goto bail;
1771 }
1772 i_size_write(inode, newsize);
Mark Fasheh8110b072007-03-22 16:53:23 -07001773 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001774 } else {
Al Viroea022dfb2012-05-03 10:14:29 -04001775 inode->i_mapping->a_ops = &ocfs2_fast_symlink_aops;
Mark Fashehccd979b2005-12-15 14:31:24 -08001776 memcpy((char *) fe->id2.i_symlink, symname, l);
1777 i_size_write(inode, newsize);
1778 inode->i_blocks = 0;
1779 }
1780
1781 status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh);
1782 if (status < 0) {
1783 mlog_errno(status);
1784 goto bail;
1785 }
1786
1787 if (!ocfs2_inode_is_fast_symlink(inode)) {
1788 status = ocfs2_create_symlink_data(osb, handle, inode,
1789 symname);
1790 if (status < 0) {
1791 mlog_errno(status);
1792 goto bail;
1793 }
1794 }
1795
Tiger Yang534eadd2008-11-14 11:16:41 +08001796 if (si.enable) {
1797 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
1798 xattr_ac, data_ac);
1799 if (status < 0) {
1800 mlog_errno(status);
1801 goto bail;
1802 }
1803 }
1804
Mark Fasheha9743fc2010-04-23 11:42:22 -07001805 /*
1806 * Do this before adding the entry to the directory. We add
1807 * also set d_op after success so that ->d_iput() will cleanup
1808 * the dentry lock even if ocfs2_add_entry() fails below.
1809 */
1810 status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
1811 if (status) {
1812 mlog_errno(status);
1813 goto bail;
1814 }
Mark Fasheha9743fc2010-04-23 11:42:22 -07001815
Mark Fashehccd979b2005-12-15 14:31:24 -08001816 status = ocfs2_add_entry(handle, dentry, inode,
1817 le64_to_cpu(fe->i_blkno), parent_fe_bh,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001818 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001819 if (status < 0) {
1820 mlog_errno(status);
1821 goto bail;
1822 }
1823
1824 insert_inode_hash(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001825 d_instantiate(dentry, inode);
1826bail:
Jan Karaa90714c2008-10-09 19:38:40 +02001827 if (status < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001828 dquot_free_space_nodirty(inode,
Jan Karaa90714c2008-10-09 19:38:40 +02001829 ocfs2_clusters_to_bytes(osb->sb, 1));
1830 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001831 dquot_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001832 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001833 ocfs2_commit_trans(osb, handle);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001834
Mark Fashehe63aecb62007-10-18 15:30:42 -07001835 ocfs2_inode_unlock(dir, 1);
Joel Becker547ba7c2010-05-10 11:56:52 -07001836 if (did_block_signals)
1837 ocfs2_unblock_signals(&oldset);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001838
Mark Fasheha81cb882008-10-07 14:25:16 -07001839 brelse(new_fe_bh);
1840 brelse(parent_fe_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +08001841 kfree(si.name);
1842 kfree(si.value);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001843 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001844 if (inode_ac)
1845 ocfs2_free_alloc_context(inode_ac);
1846 if (data_ac)
1847 ocfs2_free_alloc_context(data_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +08001848 if (xattr_ac)
1849 ocfs2_free_alloc_context(xattr_ac);
Tiger Yangf5d36202008-11-14 11:15:44 +08001850 if ((status < 0) && inode) {
Li Dongyangab41fdc2010-04-22 16:11:25 +08001851 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
Tiger Yangf5d36202008-11-14 11:15:44 +08001852 clear_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001853 iput(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +08001854 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001855
Tao Mac1e8d352011-03-07 16:43:21 +08001856 if (status)
1857 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001858
1859 return status;
1860}
1861
Mark Fashehccd979b2005-12-15 14:31:24 -08001862static int ocfs2_blkno_stringify(u64 blkno, char *name)
1863{
1864 int status, namelen;
1865
Mark Fashehb06970532006-03-03 10:24:33 -08001866 namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx",
1867 (long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001868 if (namelen <= 0) {
1869 if (namelen)
1870 status = namelen;
1871 else
1872 status = -EINVAL;
1873 mlog_errno(status);
1874 goto bail;
1875 }
1876 if (namelen != OCFS2_ORPHAN_NAMELEN) {
1877 status = -EINVAL;
1878 mlog_errno(status);
1879 goto bail;
1880 }
1881
Tao Ma8990e442011-02-23 22:45:26 +08001882 trace_ocfs2_blkno_stringify(blkno, name, namelen);
Mark Fashehccd979b2005-12-15 14:31:24 -08001883
1884 status = 0;
1885bail:
Tao Mac1e8d352011-03-07 16:43:21 +08001886 if (status < 0)
1887 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001888 return status;
1889}
1890
Mark Fashehdd43bcd2010-08-13 15:15:18 -07001891static int ocfs2_lookup_lock_orphan_dir(struct ocfs2_super *osb,
1892 struct inode **ret_orphan_dir,
1893 struct buffer_head **ret_orphan_dir_bh)
1894{
1895 struct inode *orphan_dir_inode;
1896 struct buffer_head *orphan_dir_bh = NULL;
1897 int ret = 0;
1898
1899 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
1900 ORPHAN_DIR_SYSTEM_INODE,
1901 osb->slot_num);
1902 if (!orphan_dir_inode) {
1903 ret = -ENOENT;
1904 mlog_errno(ret);
1905 return ret;
1906 }
1907
1908 mutex_lock(&orphan_dir_inode->i_mutex);
1909
1910 ret = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
1911 if (ret < 0) {
1912 mutex_unlock(&orphan_dir_inode->i_mutex);
1913 iput(orphan_dir_inode);
1914
1915 mlog_errno(ret);
1916 return ret;
1917 }
1918
1919 *ret_orphan_dir = orphan_dir_inode;
1920 *ret_orphan_dir_bh = orphan_dir_bh;
1921
1922 return 0;
1923}
1924
1925static int __ocfs2_prepare_orphan_dir(struct inode *orphan_dir_inode,
1926 struct buffer_head *orphan_dir_bh,
1927 u64 blkno,
1928 char *name,
1929 struct ocfs2_dir_lookup_result *lookup)
1930{
1931 int ret;
1932 struct ocfs2_super *osb = OCFS2_SB(orphan_dir_inode->i_sb);
1933
1934 ret = ocfs2_blkno_stringify(blkno, name);
1935 if (ret < 0) {
1936 mlog_errno(ret);
1937 return ret;
1938 }
1939
1940 ret = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode,
1941 orphan_dir_bh, name,
1942 OCFS2_ORPHAN_NAMELEN, lookup);
1943 if (ret < 0) {
1944 mlog_errno(ret);
1945 return ret;
1946 }
1947
1948 return 0;
1949}
1950
1951/**
1952 * ocfs2_prepare_orphan_dir() - Prepare an orphan directory for
1953 * insertion of an orphan.
1954 * @osb: ocfs2 file system
1955 * @ret_orphan_dir: Orphan dir inode - returned locked!
1956 * @blkno: Actual block number of the inode to be inserted into orphan dir.
1957 * @lookup: dir lookup result, to be passed back into functions like
1958 * ocfs2_orphan_add
1959 *
1960 * Returns zero on success and the ret_orphan_dir, name and lookup
1961 * fields will be populated.
1962 *
1963 * Returns non-zero on failure.
1964 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001965static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -07001966 struct inode **ret_orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +08001967 u64 blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08001968 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001969 struct ocfs2_dir_lookup_result *lookup)
Mark Fashehccd979b2005-12-15 14:31:24 -08001970{
Mark Fashehdd43bcd2010-08-13 15:15:18 -07001971 struct inode *orphan_dir_inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001972 struct buffer_head *orphan_dir_bh = NULL;
Mark Fashehdd43bcd2010-08-13 15:15:18 -07001973 int ret = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001974
Mark Fashehdd43bcd2010-08-13 15:15:18 -07001975 ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir_inode,
1976 &orphan_dir_bh);
1977 if (ret < 0) {
1978 mlog_errno(ret);
1979 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08001980 }
1981
Mark Fashehdd43bcd2010-08-13 15:15:18 -07001982 ret = __ocfs2_prepare_orphan_dir(orphan_dir_inode, orphan_dir_bh,
1983 blkno, name, lookup);
1984 if (ret < 0) {
1985 mlog_errno(ret);
1986 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08001987 }
1988
Mark Fasheh5098c272006-10-05 18:12:57 -07001989 *ret_orphan_dir = orphan_dir_inode;
1990
Mark Fashehdd43bcd2010-08-13 15:15:18 -07001991out:
1992 brelse(orphan_dir_bh);
1993
1994 if (ret) {
1995 ocfs2_inode_unlock(orphan_dir_inode, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -07001996 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001997 iput(orphan_dir_inode);
Mark Fasheh5098c272006-10-05 18:12:57 -07001998 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001999
Tao Mac1e8d352011-03-07 16:43:21 +08002000 if (ret)
2001 mlog_errno(ret);
Mark Fashehdd43bcd2010-08-13 15:15:18 -07002002 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08002003}
2004
2005static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07002006 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08002007 struct inode *inode,
Tristan Ye3939fda2010-03-19 09:21:09 +08002008 struct buffer_head *fe_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -08002009 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002010 struct ocfs2_dir_lookup_result *lookup,
Mark Fasheh5098c272006-10-05 18:12:57 -07002011 struct inode *orphan_dir_inode)
Mark Fashehccd979b2005-12-15 14:31:24 -08002012{
Mark Fashehccd979b2005-12-15 14:31:24 -08002013 struct buffer_head *orphan_dir_bh = NULL;
2014 int status = 0;
2015 struct ocfs2_dinode *orphan_fe;
Tristan Ye3939fda2010-03-19 09:21:09 +08002016 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08002017
Tao Ma8990e442011-02-23 22:45:26 +08002018 trace_ocfs2_orphan_add_begin(
2019 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002020
Joel Beckerb657c952008-11-13 14:49:11 -08002021 status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08002022 if (status < 0) {
2023 mlog_errno(status);
2024 goto leave;
2025 }
2026
Joel Becker0cf2f762009-02-12 16:41:25 -08002027 status = ocfs2_journal_access_di(handle,
2028 INODE_CACHE(orphan_dir_inode),
2029 orphan_dir_bh,
Joel Becker13723d02008-10-17 19:25:01 -07002030 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08002031 if (status < 0) {
2032 mlog_errno(status);
2033 goto leave;
2034 }
2035
Tristan Ye3939fda2010-03-19 09:21:09 +08002036 /*
2037 * We're going to journal the change of i_flags and i_orphaned_slot.
2038 * It's safe anyway, though some callers may duplicate the journaling.
2039 * Journaling within the func just make the logic look more
2040 * straightforward.
2041 */
2042 status = ocfs2_journal_access_di(handle,
2043 INODE_CACHE(inode),
2044 fe_bh,
2045 OCFS2_JOURNAL_ACCESS_WRITE);
2046 if (status < 0) {
2047 mlog_errno(status);
2048 goto leave;
2049 }
2050
Younger Liuea454662013-07-03 15:00:58 -07002051 /* we're a cluster, and nlink can change on disk from
2052 * underneath us... */
2053 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
2054 if (S_ISDIR(inode->i_mode))
2055 ocfs2_add_links_count(orphan_fe, 1);
2056 set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2057 ocfs2_journal_dirty(handle, orphan_dir_bh);
2058
2059 status = __ocfs2_add_entry(handle, orphan_dir_inode, name,
2060 OCFS2_ORPHAN_NAMELEN, inode,
2061 OCFS2_I(inode)->ip_blkno,
2062 orphan_dir_bh, lookup);
2063 if (status < 0) {
2064 mlog_errno(status);
2065 goto rollback;
2066 }
2067
Joseph Qi13eb9882013-07-03 15:00:48 -07002068 fe->i_flags |= cpu_to_le32(OCFS2_ORPHANED_FL);
Li Dongyangd4cd1872010-04-22 16:11:19 +08002069 OCFS2_I(inode)->ip_flags &= ~OCFS2_INODE_SKIP_ORPHAN_DIR;
Mark Fashehccd979b2005-12-15 14:31:24 -08002070
2071 /* Record which orphan dir our inode now resides
2072 * in. delete_inode will use this to determine which orphan
2073 * dir to lock. */
Tiger Yang50008632007-03-20 16:01:38 -07002074 fe->i_orphaned_slot = cpu_to_le16(osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08002075
Tristan Ye3939fda2010-03-19 09:21:09 +08002076 ocfs2_journal_dirty(handle, fe_bh);
2077
Tao Ma8990e442011-02-23 22:45:26 +08002078 trace_ocfs2_orphan_add_end((unsigned long long)OCFS2_I(inode)->ip_blkno,
2079 osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08002080
Younger Liuea454662013-07-03 15:00:58 -07002081rollback:
2082 if (status < 0) {
2083 if (S_ISDIR(inode->i_mode))
2084 ocfs2_add_links_count(orphan_fe, -1);
2085 set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2086 }
2087
Mark Fashehccd979b2005-12-15 14:31:24 -08002088leave:
Mark Fasheha81cb882008-10-07 14:25:16 -07002089 brelse(orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08002090
Mark Fashehccd979b2005-12-15 14:31:24 -08002091 return status;
2092}
2093
2094/* unlike orphan_add, we expect the orphan dir to already be locked here. */
2095int ocfs2_orphan_del(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07002096 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08002097 struct inode *orphan_dir_inode,
2098 struct inode *inode,
2099 struct buffer_head *orphan_dir_bh)
2100{
2101 char name[OCFS2_ORPHAN_NAMELEN + 1];
2102 struct ocfs2_dinode *orphan_fe;
2103 int status = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002104 struct ocfs2_dir_lookup_result lookup = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -08002105
Mark Fashehccd979b2005-12-15 14:31:24 -08002106 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
2107 if (status < 0) {
2108 mlog_errno(status);
2109 goto leave;
2110 }
2111
Tao Ma8990e442011-02-23 22:45:26 +08002112 trace_ocfs2_orphan_del(
2113 (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
2114 name, OCFS2_ORPHAN_NAMELEN);
Mark Fashehccd979b2005-12-15 14:31:24 -08002115
2116 /* find it's spot in the orphan directory */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002117 status = ocfs2_find_entry(name, OCFS2_ORPHAN_NAMELEN, orphan_dir_inode,
2118 &lookup);
2119 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08002120 mlog_errno(status);
2121 goto leave;
2122 }
2123
2124 /* remove it from the orphan directory */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002125 status = ocfs2_delete_entry(handle, orphan_dir_inode, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08002126 if (status < 0) {
2127 mlog_errno(status);
2128 goto leave;
2129 }
2130
Joel Becker0cf2f762009-02-12 16:41:25 -08002131 status = ocfs2_journal_access_di(handle,
2132 INODE_CACHE(orphan_dir_inode),
2133 orphan_dir_bh,
Joel Becker13723d02008-10-17 19:25:01 -07002134 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08002135 if (status < 0) {
2136 mlog_errno(status);
2137 goto leave;
2138 }
2139
2140 /* do the i_nlink dance! :) */
2141 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
2142 if (S_ISDIR(inode->i_mode))
Mark Fasheh198a1ca2008-11-20 17:54:57 -08002143 ocfs2_add_links_count(orphan_fe, -1);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002144 set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
Joel Beckerec20cec2010-03-19 14:13:52 -07002145 ocfs2_journal_dirty(handle, orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08002146
2147leave:
Mark Fasheh4a12ca32008-11-12 15:43:34 -08002148 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08002149
Tao Mac1e8d352011-03-07 16:43:21 +08002150 if (status)
2151 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08002152 return status;
2153}
2154
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002155/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002156 * ocfs2_prep_new_orphaned_file() - Prepare the orphan dir to receive a newly
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002157 * allocated file. This is different from the typical 'add to orphan dir'
2158 * operation in that the inode does not yet exist. This is a problem because
2159 * the orphan dir stringifies the inode block number to come up with it's
2160 * dirent. Obviously if the inode does not yet exist we have a chicken and egg
2161 * problem. This function works around it by calling deeper into the orphan
2162 * and suballoc code than other callers. Use this only by necessity.
2163 * @dir: The directory which this inode will ultimately wind up under - not the
2164 * orphan dir!
2165 * @dir_bh: buffer_head the @dir inode block
2166 * @orphan_name: string of length (CFS2_ORPHAN_NAMELEN + 1). Will be filled
2167 * with the string to be used for orphan dirent. Pass back to the orphan dir
2168 * code.
2169 * @ret_orphan_dir: orphan dir inode returned to be passed back into orphan
2170 * dir code.
2171 * @ret_di_blkno: block number where the new inode will be allocated.
2172 * @orphan_insert: Dir insert context to be passed back into orphan dir code.
2173 * @ret_inode_ac: Inode alloc context to be passed back to the allocator.
2174 *
2175 * Returns zero on success and the ret_orphan_dir, name and lookup
2176 * fields will be populated.
2177 *
2178 * Returns non-zero on failure.
2179 */
2180static int ocfs2_prep_new_orphaned_file(struct inode *dir,
2181 struct buffer_head *dir_bh,
2182 char *orphan_name,
2183 struct inode **ret_orphan_dir,
2184 u64 *ret_di_blkno,
2185 struct ocfs2_dir_lookup_result *orphan_insert,
2186 struct ocfs2_alloc_context **ret_inode_ac)
2187{
2188 int ret;
2189 u64 di_blkno;
2190 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2191 struct inode *orphan_dir = NULL;
2192 struct buffer_head *orphan_dir_bh = NULL;
2193 struct ocfs2_alloc_context *inode_ac = NULL;
2194
2195 ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir, &orphan_dir_bh);
2196 if (ret < 0) {
2197 mlog_errno(ret);
2198 return ret;
2199 }
2200
2201 /* reserve an inode spot */
2202 ret = ocfs2_reserve_new_inode(osb, &inode_ac);
2203 if (ret < 0) {
2204 if (ret != -ENOSPC)
2205 mlog_errno(ret);
2206 goto out;
2207 }
2208
2209 ret = ocfs2_find_new_inode_loc(dir, dir_bh, inode_ac,
2210 &di_blkno);
2211 if (ret) {
2212 mlog_errno(ret);
2213 goto out;
2214 }
2215
2216 ret = __ocfs2_prepare_orphan_dir(orphan_dir, orphan_dir_bh,
2217 di_blkno, orphan_name, orphan_insert);
2218 if (ret < 0) {
2219 mlog_errno(ret);
2220 goto out;
2221 }
2222
2223out:
2224 if (ret == 0) {
2225 *ret_orphan_dir = orphan_dir;
2226 *ret_di_blkno = di_blkno;
2227 *ret_inode_ac = inode_ac;
2228 /*
2229 * orphan_name and orphan_insert are already up to
2230 * date via prepare_orphan_dir
2231 */
2232 } else {
2233 /* Unroll reserve_new_inode* */
2234 if (inode_ac)
2235 ocfs2_free_alloc_context(inode_ac);
2236
2237 /* Unroll orphan dir locking */
2238 mutex_unlock(&orphan_dir->i_mutex);
2239 ocfs2_inode_unlock(orphan_dir, 1);
2240 iput(orphan_dir);
2241 }
2242
2243 brelse(orphan_dir_bh);
2244
Xiaowei.Hu7869e592013-06-12 14:04:41 -07002245 return ret;
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002246}
2247
Tao Mabc13d342009-08-18 11:44:14 +08002248int ocfs2_create_inode_in_orphan(struct inode *dir,
2249 int mode,
2250 struct inode **new_inode)
2251{
2252 int status, did_quota_inode = 0;
2253 struct inode *inode = NULL;
2254 struct inode *orphan_dir = NULL;
2255 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2256 struct ocfs2_dinode *di = NULL;
2257 handle_t *handle = NULL;
2258 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
2259 struct buffer_head *parent_di_bh = NULL;
2260 struct buffer_head *new_di_bh = NULL;
2261 struct ocfs2_alloc_context *inode_ac = NULL;
2262 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002263 u64 uninitialized_var(di_blkno), suballoc_loc;
2264 u16 suballoc_bit;
Tao Mabc13d342009-08-18 11:44:14 +08002265
2266 status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2267 if (status < 0) {
2268 if (status != -ENOENT)
2269 mlog_errno(status);
2270 return status;
2271 }
2272
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002273 status = ocfs2_prep_new_orphaned_file(dir, parent_di_bh,
2274 orphan_name, &orphan_dir,
2275 &di_blkno, &orphan_insert, &inode_ac);
Tao Mabc13d342009-08-18 11:44:14 +08002276 if (status < 0) {
2277 if (status != -ENOSPC)
2278 mlog_errno(status);
2279 goto leave;
2280 }
2281
2282 inode = ocfs2_get_init_inode(dir, mode);
2283 if (!inode) {
2284 status = -ENOMEM;
2285 mlog_errno(status);
2286 goto leave;
2287 }
2288
2289 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, 0, 0));
2290 if (IS_ERR(handle)) {
2291 status = PTR_ERR(handle);
2292 handle = NULL;
2293 mlog_errno(status);
2294 goto leave;
2295 }
2296
Christoph Hellwig63936dd2010-03-03 09:05:01 -05002297 status = dquot_alloc_inode(inode);
2298 if (status)
Tao Mabc13d342009-08-18 11:44:14 +08002299 goto leave;
Tao Mabc13d342009-08-18 11:44:14 +08002300 did_quota_inode = 1;
2301
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002302 status = ocfs2_claim_new_inode_at_loc(handle, dir, inode_ac,
2303 &suballoc_loc,
2304 &suballoc_bit, di_blkno);
Tao Mabc13d342009-08-18 11:44:14 +08002305 if (status < 0) {
2306 mlog_errno(status);
2307 goto leave;
2308 }
2309
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02002310 clear_nlink(inode);
Mark Fasheh97b8f4a2010-08-13 15:15:19 -07002311 /* do the real work now. */
2312 status = __ocfs2_mknod_locked(dir, inode,
2313 0, &new_di_bh, parent_di_bh, handle,
2314 inode_ac, di_blkno, suballoc_loc,
2315 suballoc_bit);
Tao Mabc13d342009-08-18 11:44:14 +08002316 if (status < 0) {
2317 mlog_errno(status);
2318 goto leave;
2319 }
2320
2321 di = (struct ocfs2_dinode *)new_di_bh->b_data;
Tristan Ye3939fda2010-03-19 09:21:09 +08002322 status = ocfs2_orphan_add(osb, handle, inode, new_di_bh, orphan_name,
Tao Mabc13d342009-08-18 11:44:14 +08002323 &orphan_insert, orphan_dir);
2324 if (status < 0) {
2325 mlog_errno(status);
2326 goto leave;
2327 }
2328
2329 /* get open lock so that only nodes can't remove it from orphan dir. */
2330 status = ocfs2_open_lock(inode);
2331 if (status < 0)
2332 mlog_errno(status);
2333
Tao Mac7d260a2009-12-18 10:24:54 +08002334 insert_inode_hash(inode);
Tao Mabc13d342009-08-18 11:44:14 +08002335leave:
2336 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -05002337 dquot_free_inode(inode);
Tao Mabc13d342009-08-18 11:44:14 +08002338 if (handle)
2339 ocfs2_commit_trans(osb, handle);
2340
2341 if (orphan_dir) {
2342 /* This was locked for us in ocfs2_prepare_orphan_dir() */
2343 ocfs2_inode_unlock(orphan_dir, 1);
2344 mutex_unlock(&orphan_dir->i_mutex);
2345 iput(orphan_dir);
2346 }
2347
Tao Mabc13d342009-08-18 11:44:14 +08002348 if ((status < 0) && inode) {
2349 clear_nlink(inode);
2350 iput(inode);
2351 }
2352
2353 if (inode_ac)
2354 ocfs2_free_alloc_context(inode_ac);
2355
2356 brelse(new_di_bh);
2357
2358 if (!status)
2359 *new_inode = inode;
2360
2361 ocfs2_free_dir_lookup_result(&orphan_insert);
2362
2363 ocfs2_inode_unlock(dir, 1);
2364 brelse(parent_di_bh);
2365 return status;
2366}
2367
2368int ocfs2_mv_orphaned_inode_to_new(struct inode *dir,
2369 struct inode *inode,
2370 struct dentry *dentry)
2371{
2372 int status = 0;
2373 struct buffer_head *parent_di_bh = NULL;
2374 handle_t *handle = NULL;
2375 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2376 struct ocfs2_dinode *dir_di, *di;
2377 struct inode *orphan_dir_inode = NULL;
2378 struct buffer_head *orphan_dir_bh = NULL;
2379 struct buffer_head *di_bh = NULL;
2380 struct ocfs2_dir_lookup_result lookup = { NULL, };
2381
Tao Ma8990e442011-02-23 22:45:26 +08002382 trace_ocfs2_mv_orphaned_inode_to_new(dir, dentry,
2383 dentry->d_name.len, dentry->d_name.name,
2384 (unsigned long long)OCFS2_I(dir)->ip_blkno,
2385 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Tao Mabc13d342009-08-18 11:44:14 +08002386
2387 status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2388 if (status < 0) {
2389 if (status != -ENOENT)
2390 mlog_errno(status);
2391 return status;
2392 }
2393
2394 dir_di = (struct ocfs2_dinode *) parent_di_bh->b_data;
2395 if (!dir_di->i_links_count) {
2396 /* can't make a file in a deleted directory. */
2397 status = -ENOENT;
2398 goto leave;
2399 }
2400
2401 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
2402 dentry->d_name.len);
2403 if (status)
2404 goto leave;
2405
2406 /* get a spot inside the dir. */
2407 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_di_bh,
2408 dentry->d_name.name,
2409 dentry->d_name.len, &lookup);
2410 if (status < 0) {
2411 mlog_errno(status);
2412 goto leave;
2413 }
2414
2415 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2416 ORPHAN_DIR_SYSTEM_INODE,
2417 osb->slot_num);
2418 if (!orphan_dir_inode) {
2419 status = -EEXIST;
2420 mlog_errno(status);
2421 goto leave;
2422 }
2423
2424 mutex_lock(&orphan_dir_inode->i_mutex);
2425
2426 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2427 if (status < 0) {
2428 mlog_errno(status);
2429 mutex_unlock(&orphan_dir_inode->i_mutex);
2430 iput(orphan_dir_inode);
2431 goto leave;
2432 }
2433
2434 status = ocfs2_read_inode_block(inode, &di_bh);
2435 if (status < 0) {
2436 mlog_errno(status);
2437 goto orphan_unlock;
2438 }
2439
2440 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
2441 if (IS_ERR(handle)) {
2442 status = PTR_ERR(handle);
2443 handle = NULL;
2444 mlog_errno(status);
2445 goto orphan_unlock;
2446 }
2447
2448 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
2449 di_bh, OCFS2_JOURNAL_ACCESS_WRITE);
2450 if (status < 0) {
2451 mlog_errno(status);
2452 goto out_commit;
2453 }
2454
2455 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
2456 orphan_dir_bh);
2457 if (status < 0) {
2458 mlog_errno(status);
2459 goto out_commit;
2460 }
2461
2462 di = (struct ocfs2_dinode *)di_bh->b_data;
Joseph Qi13eb9882013-07-03 15:00:48 -07002463 di->i_flags &= ~cpu_to_le32(OCFS2_ORPHANED_FL);
Tao Mabc13d342009-08-18 11:44:14 +08002464 di->i_orphaned_slot = 0;
Miklos Szeredibfe86842011-10-28 14:13:29 +02002465 set_nlink(inode, 1);
Tao Ma10cf1a02009-12-18 10:24:55 +08002466 ocfs2_set_links_count(di, inode->i_nlink);
Tao Mabc13d342009-08-18 11:44:14 +08002467 ocfs2_journal_dirty(handle, di_bh);
2468
2469 status = ocfs2_add_entry(handle, dentry, inode,
2470 OCFS2_I(inode)->ip_blkno, parent_di_bh,
2471 &lookup);
2472 if (status < 0) {
2473 mlog_errno(status);
2474 goto out_commit;
2475 }
2476
2477 status = ocfs2_dentry_attach_lock(dentry, inode,
2478 OCFS2_I(dir)->ip_blkno);
2479 if (status) {
2480 mlog_errno(status);
2481 goto out_commit;
2482 }
2483
Tao Mabc13d342009-08-18 11:44:14 +08002484 d_instantiate(dentry, inode);
2485 status = 0;
2486out_commit:
2487 ocfs2_commit_trans(osb, handle);
2488orphan_unlock:
2489 ocfs2_inode_unlock(orphan_dir_inode, 1);
2490 mutex_unlock(&orphan_dir_inode->i_mutex);
2491 iput(orphan_dir_inode);
2492leave:
2493
2494 ocfs2_inode_unlock(dir, 1);
2495
2496 brelse(di_bh);
2497 brelse(parent_di_bh);
2498 brelse(orphan_dir_bh);
2499
2500 ocfs2_free_dir_lookup_result(&lookup);
2501
Tao Mac1e8d352011-03-07 16:43:21 +08002502 if (status)
2503 mlog_errno(status);
Tao Mabc13d342009-08-18 11:44:14 +08002504
2505 return status;
2506}
2507
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002508const struct inode_operations ocfs2_dir_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002509 .create = ocfs2_create,
2510 .lookup = ocfs2_lookup,
2511 .link = ocfs2_link,
2512 .unlink = ocfs2_unlink,
2513 .rmdir = ocfs2_unlink,
2514 .symlink = ocfs2_symlink,
2515 .mkdir = ocfs2_mkdir,
2516 .mknod = ocfs2_mknod,
2517 .rename = ocfs2_rename,
2518 .setattr = ocfs2_setattr,
2519 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002520 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002521 .setxattr = generic_setxattr,
2522 .getxattr = generic_getxattr,
2523 .listxattr = ocfs2_listxattr,
2524 .removexattr = generic_removexattr,
Tristan Ye55f49462009-12-17 18:42:16 +08002525 .fiemap = ocfs2_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002526 .get_acl = ocfs2_iop_get_acl,
Christoph Hellwig702e5bc2013-12-20 05:16:48 -08002527 .set_acl = ocfs2_iop_set_acl,
Mark Fashehccd979b2005-12-15 14:31:24 -08002528};