blob: 21d4a33d0f0e2a62ee79d1c6fa2b068e32ceebb7 [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
45#define MLOG_MASK_PREFIX ML_NAMEI
46#include <cluster/masklog.h>
47
48#include "ocfs2.h"
49
50#include "alloc.h"
51#include "dcache.h"
52#include "dir.h"
53#include "dlmglue.h"
54#include "extent_map.h"
55#include "file.h"
56#include "inode.h"
57#include "journal.h"
58#include "namei.h"
59#include "suballoc.h"
Mark Fashehaa958872006-04-21 13:49:02 -070060#include "super.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080061#include "symlink.h"
62#include "sysfile.h"
63#include "uptodate.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080064#include "xattr.h"
Tiger Yang89c38bd2008-11-14 11:17:41 +080065#include "acl.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,
87 struct ocfs2_dinode *fe,
88 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,
101 struct nameidata *nd)
102{
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
109 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry,
110 dentry->d_name.len, dentry->d_name.name);
111
112 if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) {
113 ret = ERR_PTR(-ENAMETOOLONG);
114 goto bail;
115 }
116
Mark Fashehb06970532006-03-03 10:24:33 -0800117 mlog(0, "find name %.*s in directory %llu\n", dentry->d_name.len,
118 dentry->d_name.name, (unsigned long long)OCFS2_I(dir)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800119
Jan Karacb257972009-06-04 15:26:50 +0200120 status = ocfs2_inode_lock_nested(dir, NULL, 0, OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800121 if (status < 0) {
122 if (status != -ENOENT)
123 mlog_errno(status);
124 ret = ERR_PTR(status);
125 goto bail;
126 }
127
Mark Fashehbe94d112007-09-11 15:22:06 -0700128 status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name,
129 dentry->d_name.len, &blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800130 if (status < 0)
131 goto bail_add;
132
Jan Kara5fa06132008-01-11 00:11:45 +0100133 inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800134 if (IS_ERR(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800135 ret = ERR_PTR(-EACCES);
136 goto bail_unlock;
137 }
138
139 oi = OCFS2_I(inode);
140 /* Clear any orphaned state... If we were able to look up the
141 * inode from a directory, it certainly can't be orphaned. We
142 * might have the bad state from a node which intended to
143 * orphan this inode but crashed before it could commit the
144 * unlink. */
145 spin_lock(&oi->ip_lock);
146 oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED;
Mark Fashehccd979b2005-12-15 14:31:24 -0800147 spin_unlock(&oi->ip_lock);
148
149bail_add:
Mark Fashehccd979b2005-12-15 14:31:24 -0800150 dentry->d_op = &ocfs2_dentry_ops;
151 ret = d_splice_alias(inode, dentry);
152
Mark Fasheh379dfe92006-09-08 14:21:03 -0700153 if (inode) {
154 /*
155 * If d_splice_alias() finds a DCACHE_DISCONNECTED
156 * dentry, it will d_move() it on top of ourse. The
157 * return value will indicate this however, so in
158 * those cases, we switch them around for the locking
159 * code.
160 *
161 * NOTE: This dentry already has ->d_op set from
162 * ocfs2_get_parent() and ocfs2_get_dentry()
163 */
164 if (ret)
165 dentry = ret;
166
167 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700168 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700169 if (status) {
170 mlog_errno(status);
171 ret = ERR_PTR(status);
172 goto bail_unlock;
173 }
174 }
175
Mark Fashehccd979b2005-12-15 14:31:24 -0800176bail_unlock:
177 /* Don't drop the cluster lock until *after* the d_add --
178 * unlink on another node will message us to remove that
179 * dentry under this lock so otherwise we can race this with
Mark Fasheh34d024f2007-09-24 15:56:19 -0700180 * the downconvert thread and have a stale dentry. */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700181 ocfs2_inode_unlock(dir, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800182
183bail:
Mark Fashehccd979b2005-12-15 14:31:24 -0800184
185 mlog_exit_ptr(ret);
186
187 return ret;
188}
189
Tiger Yangf5d36202008-11-14 11:15:44 +0800190static struct inode *ocfs2_get_init_inode(struct inode *dir, int mode)
191{
192 struct inode *inode;
193
194 inode = new_inode(dir->i_sb);
195 if (!inode) {
196 mlog(ML_ERROR, "new_inode failed!\n");
197 return NULL;
198 }
199
200 /* populate as many fields early on as possible - many of
201 * these are used by the support functions here and in
202 * callers. */
203 if (S_ISDIR(mode))
204 inode->i_nlink = 2;
205 else
206 inode->i_nlink = 1;
207 inode->i_uid = current_fsuid();
208 if (dir->i_mode & S_ISGID) {
209 inode->i_gid = dir->i_gid;
210 if (S_ISDIR(mode))
211 mode |= S_ISGID;
212 } else
213 inode->i_gid = current_fsgid();
214 inode->i_mode = mode;
Christoph Hellwig871a2932010-03-03 09:05:07 -0500215 dquot_initialize(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +0800216 return inode;
217}
218
Mark Fashehccd979b2005-12-15 14:31:24 -0800219static int ocfs2_mknod(struct inode *dir,
220 struct dentry *dentry,
221 int mode,
222 dev_t dev)
223{
224 int status = 0;
225 struct buffer_head *parent_fe_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700226 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800227 struct ocfs2_super *osb;
228 struct ocfs2_dinode *dirfe;
229 struct buffer_head *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800230 struct inode *inode = NULL;
231 struct ocfs2_alloc_context *inode_ac = NULL;
232 struct ocfs2_alloc_context *data_ac = NULL;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800233 struct ocfs2_alloc_context *meta_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +0800234 int want_clusters = 0;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800235 int want_meta = 0;
Tiger Yang534eadd2008-11-14 11:16:41 +0800236 int xattr_credits = 0;
237 struct ocfs2_security_xattr_info si = {
238 .enable = 1,
239 };
Jan Karaa90714c2008-10-09 19:38:40 +0200240 int did_quota_inode = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800241 struct ocfs2_dir_lookup_result lookup = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -0800242
243 mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir, dentry, mode,
244 (unsigned long)dev, dentry->d_name.len,
245 dentry->d_name.name);
246
Christoph Hellwig871a2932010-03-03 09:05:07 -0500247 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500248
Mark Fashehccd979b2005-12-15 14:31:24 -0800249 /* get our super block */
250 osb = OCFS2_SB(dir->i_sb);
251
Mark Fashehe63aecb62007-10-18 15:30:42 -0700252 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehe3a82132006-10-05 16:04:17 -0700253 if (status < 0) {
254 if (status != -ENOENT)
255 mlog_errno(status);
256 return status;
257 }
258
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800259 if (S_ISDIR(mode) && (dir->i_nlink >= ocfs2_link_max(osb))) {
Mark Fasheha663e302006-08-09 11:45:07 -0700260 status = -EMLINK;
261 goto leave;
262 }
263
Mark Fashehccd979b2005-12-15 14:31:24 -0800264 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800265 if (!ocfs2_read_links_count(dirfe)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800266 /* can't make a file in a deleted directory. */
267 status = -ENOENT;
268 goto leave;
269 }
270
271 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
272 dentry->d_name.len);
273 if (status)
274 goto leave;
275
276 /* get a spot inside the dir. */
277 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
278 dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800279 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800280 if (status < 0) {
281 mlog_errno(status);
282 goto leave;
283 }
284
285 /* reserve an inode spot */
Mark Fashehda5cbf22006-10-06 18:34:35 -0700286 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800287 if (status < 0) {
288 if (status != -ENOSPC)
289 mlog_errno(status);
290 goto leave;
291 }
292
Tiger Yangf5d36202008-11-14 11:15:44 +0800293 inode = ocfs2_get_init_inode(dir, mode);
294 if (!inode) {
295 status = -ENOMEM;
296 mlog_errno(status);
297 goto leave;
298 }
299
Tiger Yang534eadd2008-11-14 11:16:41 +0800300 /* get security xattr */
301 status = ocfs2_init_security_get(inode, dir, &si);
302 if (status) {
303 if (status == -EOPNOTSUPP)
304 si.enable = 0;
305 else {
306 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800307 goto leave;
308 }
309 }
310
Tiger Yang89c38bd2008-11-14 11:17:41 +0800311 /* calculate meta data/clusters for setting security and acl xattr */
312 status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800313 &si, &want_clusters,
314 &xattr_credits, &want_meta);
Tiger Yang89c38bd2008-11-14 11:17:41 +0800315 if (status < 0) {
316 mlog_errno(status);
317 goto leave;
Tiger Yang534eadd2008-11-14 11:16:41 +0800318 }
319
320 /* Reserve a cluster if creating an extent based directory. */
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800321 if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) {
Tiger Yang534eadd2008-11-14 11:16:41 +0800322 want_clusters += 1;
323
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800324 /* Dir indexing requires extra space as well */
Mark Fasheh4ed8a6b2008-11-24 17:02:08 -0800325 if (ocfs2_supports_indexed_dirs(osb))
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800326 want_meta++;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800327 }
328
329 status = ocfs2_reserve_new_metadata_blocks(osb, want_meta, &meta_ac);
330 if (status < 0) {
331 if (status != -ENOSPC)
332 mlog_errno(status);
333 goto leave;
334 }
335
Tiger Yang534eadd2008-11-14 11:16:41 +0800336 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
337 if (status < 0) {
338 if (status != -ENOSPC)
339 mlog_errno(status);
340 goto leave;
341 }
342
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800343 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb,
344 S_ISDIR(mode),
345 xattr_credits));
Mark Fashehccd979b2005-12-15 14:31:24 -0800346 if (IS_ERR(handle)) {
347 status = PTR_ERR(handle);
348 handle = NULL;
349 mlog_errno(status);
350 goto leave;
351 }
352
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500353 status = dquot_alloc_inode(inode);
354 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +0200355 goto leave;
Jan Karaa90714c2008-10-09 19:38:40 +0200356 did_quota_inode = 1;
357
Tao Ma19bd3412009-08-18 11:44:10 +0800358 mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir, dentry,
359 inode->i_mode, (unsigned long)dev, dentry->d_name.len,
360 dentry->d_name.name);
361
Mark Fashehccd979b2005-12-15 14:31:24 -0800362 /* do the real work now. */
Tao Ma19bd3412009-08-18 11:44:10 +0800363 status = ocfs2_mknod_locked(osb, dir, inode, dev,
Mark Fashehccd979b2005-12-15 14:31:24 -0800364 &new_fe_bh, parent_fe_bh, handle,
Tiger Yangf5d36202008-11-14 11:15:44 +0800365 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800366 if (status < 0) {
367 mlog_errno(status);
368 goto leave;
369 }
370
371 if (S_ISDIR(mode)) {
372 status = ocfs2_fill_new_dir(osb, handle, dir, inode,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800373 new_fe_bh, data_ac, meta_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800374 if (status < 0) {
375 mlog_errno(status);
376 goto leave;
377 }
378
Joel Becker0cf2f762009-02-12 16:41:25 -0800379 status = ocfs2_journal_access_di(handle, INODE_CACHE(dir),
380 parent_fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700381 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800382 if (status < 0) {
383 mlog_errno(status);
384 goto leave;
385 }
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800386 ocfs2_add_links_count(dirfe, 1);
Joel Beckerec20cec2010-03-19 14:13:52 -0700387 ocfs2_journal_dirty(handle, parent_fe_bh);
Dave Hansend8c76e62006-09-30 23:29:04 -0700388 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800389 }
390
Tiger Yang89c38bd2008-11-14 11:17:41 +0800391 status = ocfs2_init_acl(handle, inode, dir, new_fe_bh, parent_fe_bh,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800392 meta_ac, data_ac);
Tiger Yang89c38bd2008-11-14 11:17:41 +0800393 if (status < 0) {
394 mlog_errno(status);
395 goto leave;
396 }
397
Tiger Yang534eadd2008-11-14 11:16:41 +0800398 if (si.enable) {
399 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800400 meta_ac, data_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +0800401 if (status < 0) {
402 mlog_errno(status);
403 goto leave;
404 }
405 }
406
Mark Fashehccd979b2005-12-15 14:31:24 -0800407 status = ocfs2_add_entry(handle, dentry, inode,
408 OCFS2_I(inode)->ip_blkno, parent_fe_bh,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800409 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800410 if (status < 0) {
411 mlog_errno(status);
412 goto leave;
413 }
414
Mark Fasheh379dfe92006-09-08 14:21:03 -0700415 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700416 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700417 if (status) {
418 mlog_errno(status);
419 goto leave;
420 }
421
Mark Fashehccd979b2005-12-15 14:31:24 -0800422 insert_inode_hash(inode);
423 dentry->d_op = &ocfs2_dentry_ops;
424 d_instantiate(dentry, inode);
425 status = 0;
426leave:
Jan Karaa90714c2008-10-09 19:38:40 +0200427 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500428 dquot_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800429 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700430 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800431
Mark Fashehe63aecb62007-10-18 15:30:42 -0700432 ocfs2_inode_unlock(dir, 1);
Mark Fashehe3a82132006-10-05 16:04:17 -0700433
Mark Fashehccd979b2005-12-15 14:31:24 -0800434 if (status == -ENOSPC)
435 mlog(0, "Disk is full\n");
436
Mark Fasheha81cb882008-10-07 14:25:16 -0700437 brelse(new_fe_bh);
Mark Fasheha81cb882008-10-07 14:25:16 -0700438 brelse(parent_fe_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +0800439 kfree(si.name);
440 kfree(si.value);
Mark Fashehccd979b2005-12-15 14:31:24 -0800441
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800442 ocfs2_free_dir_lookup_result(&lookup);
443
Tiger Yangf5d36202008-11-14 11:15:44 +0800444 if ((status < 0) && inode) {
445 clear_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800446 iput(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +0800447 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800448
449 if (inode_ac)
450 ocfs2_free_alloc_context(inode_ac);
451
452 if (data_ac)
453 ocfs2_free_alloc_context(data_ac);
454
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800455 if (meta_ac)
456 ocfs2_free_alloc_context(meta_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +0800457
Mark Fashehccd979b2005-12-15 14:31:24 -0800458 mlog_exit(status);
459
460 return status;
461}
462
463static int ocfs2_mknod_locked(struct ocfs2_super *osb,
464 struct inode *dir,
Tiger Yangf5d36202008-11-14 11:15:44 +0800465 struct inode *inode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800466 dev_t dev,
467 struct buffer_head **new_fe_bh,
468 struct buffer_head *parent_fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700469 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800470 struct ocfs2_alloc_context *inode_ac)
471{
472 int status = 0;
473 struct ocfs2_dinode *fe = NULL;
474 struct ocfs2_extent_list *fel;
475 u64 fe_blkno = 0;
476 u16 suballoc_bit;
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800477 u16 feat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800478
Mark Fashehccd979b2005-12-15 14:31:24 -0800479 *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800480
Tao Ma13821152009-02-25 00:53:23 +0800481 status = ocfs2_claim_new_inode(osb, handle, dir, parent_fe_bh,
482 inode_ac, &suballoc_bit, &fe_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800483 if (status < 0) {
484 mlog_errno(status);
485 goto leave;
486 }
487
Mark Fashehccd979b2005-12-15 14:31:24 -0800488 /* populate as many fields early on as possible - many of
489 * these are used by the support functions here and in
490 * callers. */
491 inode->i_ino = ino_from_blkno(osb->sb, fe_blkno);
492 OCFS2_I(inode)->ip_blkno = fe_blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800493 spin_lock(&osb->osb_lock);
494 inode->i_generation = osb->s_next_generation++;
495 spin_unlock(&osb->osb_lock);
496
497 *new_fe_bh = sb_getblk(osb->sb, fe_blkno);
498 if (!*new_fe_bh) {
499 status = -EIO;
500 mlog_errno(status);
501 goto leave;
502 }
Joel Becker8cb471e2009-02-10 20:00:41 -0800503 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), *new_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800504
Joel Becker0cf2f762009-02-12 16:41:25 -0800505 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
506 *new_fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700507 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800508 if (status < 0) {
509 mlog_errno(status);
510 goto leave;
511 }
512
513 fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data;
514 memset(fe, 0, osb->sb->s_blocksize);
515
516 fe->i_generation = cpu_to_le32(inode->i_generation);
517 fe->i_fs_generation = cpu_to_le32(osb->fs_generation);
518 fe->i_blkno = cpu_to_le64(fe_blkno);
519 fe->i_suballoc_bit = cpu_to_le16(suballoc_bit);
Tao Ma4d0ddb22008-03-05 16:11:46 +0800520 fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot);
Tiger Yangf5d36202008-11-14 11:15:44 +0800521 fe->i_uid = cpu_to_le32(inode->i_uid);
522 fe->i_gid = cpu_to_le32(inode->i_gid);
523 fe->i_mode = cpu_to_le16(inode->i_mode);
524 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
Mark Fashehccd979b2005-12-15 14:31:24 -0800525 fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev));
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800526
527 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800528
529 fe->i_last_eb_blk = 0;
530 strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE);
531 le32_add_cpu(&fe->i_flags, OCFS2_VALID_FL);
532 fe->i_atime = fe->i_ctime = fe->i_mtime =
533 cpu_to_le64(CURRENT_TIME.tv_sec);
534 fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec =
535 cpu_to_le32(CURRENT_TIME.tv_nsec);
536 fe->i_dtime = 0;
537
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700538 /*
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800539 * If supported, directories start with inline data. If inline
540 * isn't supported, but indexing is, we start them as indexed.
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700541 */
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800542 feat = le16_to_cpu(fe->i_dyn_features);
Tiger Yangf5d36202008-11-14 11:15:44 +0800543 if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) {
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700544 fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL);
545
Tiger Yangd9ae49d2009-03-05 11:06:15 +0800546 fe->id2.i_data.id_count = cpu_to_le16(
547 ocfs2_max_inline_data_with_xattr(osb->sb, fe));
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700548 } else {
549 fel = &fe->id2.i_list;
550 fel->l_tree_depth = 0;
551 fel->l_next_free_rec = 0;
552 fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb));
553 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800554
Joel Beckerec20cec2010-03-19 14:13:52 -0700555 ocfs2_journal_dirty(handle, *new_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800556
Joel Beckerb657c952008-11-13 14:49:11 -0800557 ocfs2_populate_inode(inode, fe, 1);
Joel Becker0cf2f762009-02-12 16:41:25 -0800558 ocfs2_ci_set_new(osb, INODE_CACHE(inode));
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800559 if (!ocfs2_mount_local(osb)) {
560 status = ocfs2_create_new_inode_locks(inode);
561 if (status < 0)
562 mlog_errno(status);
563 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800564
565 status = 0; /* error in ocfs2_create_new_inode_locks is not
566 * critical */
567
Mark Fashehccd979b2005-12-15 14:31:24 -0800568leave:
569 if (status < 0) {
570 if (*new_fe_bh) {
571 brelse(*new_fe_bh);
572 *new_fe_bh = NULL;
573 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800574 }
575
576 mlog_exit(status);
577 return status;
578}
579
580static int ocfs2_mkdir(struct inode *dir,
581 struct dentry *dentry,
582 int mode)
583{
584 int ret;
585
586 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode,
587 dentry->d_name.len, dentry->d_name.name);
588 ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0);
589 mlog_exit(ret);
590
591 return ret;
592}
593
594static int ocfs2_create(struct inode *dir,
595 struct dentry *dentry,
596 int mode,
597 struct nameidata *nd)
598{
599 int ret;
600
601 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode,
602 dentry->d_name.len, dentry->d_name.name);
603 ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0);
604 mlog_exit(ret);
605
606 return ret;
607}
608
609static int ocfs2_link(struct dentry *old_dentry,
610 struct inode *dir,
611 struct dentry *dentry)
612{
Mark Fasheh1fabe142006-10-09 18:11:45 -0700613 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800614 struct inode *inode = old_dentry->d_inode;
615 int err;
616 struct buffer_head *fe_bh = NULL;
617 struct buffer_head *parent_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800618 struct ocfs2_dinode *fe = NULL;
619 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800620 struct ocfs2_dir_lookup_result lookup = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -0800621
622 mlog_entry("(inode=%lu, old='%.*s' new='%.*s')\n", inode->i_ino,
623 old_dentry->d_name.len, old_dentry->d_name.name,
624 dentry->d_name.len, dentry->d_name.name);
625
Mark Fasheh123a9642006-10-05 16:48:23 -0700626 if (S_ISDIR(inode->i_mode))
627 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800628
Christoph Hellwig871a2932010-03-03 09:05:07 -0500629 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500630
Jan Karacb257972009-06-04 15:26:50 +0200631 err = ocfs2_inode_lock_nested(dir, &parent_fe_bh, 1, OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800632 if (err < 0) {
633 if (err != -ENOENT)
634 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700635 return err;
Mark Fashehccd979b2005-12-15 14:31:24 -0800636 }
637
Tiger Yang0f62de22006-08-31 20:39:47 -0700638 if (!dir->i_nlink) {
639 err = -ENOENT;
Mark Fasheh123a9642006-10-05 16:48:23 -0700640 goto out;
Tiger Yang0f62de22006-08-31 20:39:47 -0700641 }
642
Mark Fashehccd979b2005-12-15 14:31:24 -0800643 err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
644 dentry->d_name.len);
645 if (err)
Mark Fasheh123a9642006-10-05 16:48:23 -0700646 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800647
648 err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
649 dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800650 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800651 if (err < 0) {
652 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700653 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800654 }
655
Mark Fashehe63aecb62007-10-18 15:30:42 -0700656 err = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800657 if (err < 0) {
658 if (err != -ENOENT)
659 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700660 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800661 }
662
663 fe = (struct ocfs2_dinode *) fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800664 if (ocfs2_read_links_count(fe) >= ocfs2_link_max(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800665 err = -EMLINK;
Mark Fasheh123a9642006-10-05 16:48:23 -0700666 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800667 }
668
Jan Karaa90714c2008-10-09 19:38:40 +0200669 handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800670 if (IS_ERR(handle)) {
671 err = PTR_ERR(handle);
672 handle = NULL;
673 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700674 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800675 }
676
Joel Becker0cf2f762009-02-12 16:41:25 -0800677 err = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700678 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800679 if (err < 0) {
680 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700681 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800682 }
683
Dave Hansend8c76e62006-09-30 23:29:04 -0700684 inc_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800685 inode->i_ctime = CURRENT_TIME;
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800686 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800687 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
688 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
Joel Beckerec20cec2010-03-19 14:13:52 -0700689 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800690
691 err = ocfs2_add_entry(handle, dentry, inode,
692 OCFS2_I(inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800693 parent_fe_bh, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800694 if (err) {
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800695 ocfs2_add_links_count(fe, -1);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700696 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800697 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700698 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800699 }
700
Mark Fasheh0027dd52006-09-21 16:51:28 -0700701 err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700702 if (err) {
703 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700704 goto out_commit;
Mark Fasheh379dfe92006-09-08 14:21:03 -0700705 }
706
Mark Fashehccd979b2005-12-15 14:31:24 -0800707 atomic_inc(&inode->i_count);
708 dentry->d_op = &ocfs2_dentry_ops;
709 d_instantiate(dentry, inode);
Mark Fasheh123a9642006-10-05 16:48:23 -0700710
711out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700712 ocfs2_commit_trans(osb, handle);
Mark Fasheh123a9642006-10-05 16:48:23 -0700713out_unlock_inode:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700714 ocfs2_inode_unlock(inode, 1);
Mark Fasheh123a9642006-10-05 16:48:23 -0700715
716out:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700717 ocfs2_inode_unlock(dir, 1);
Mark Fasheh123a9642006-10-05 16:48:23 -0700718
Mark Fasheha81cb882008-10-07 14:25:16 -0700719 brelse(fe_bh);
720 brelse(parent_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800721
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800722 ocfs2_free_dir_lookup_result(&lookup);
723
Mark Fashehccd979b2005-12-15 14:31:24 -0800724 mlog_exit(err);
725
726 return err;
727}
728
Mark Fasheh379dfe92006-09-08 14:21:03 -0700729/*
730 * Takes and drops an exclusive lock on the given dentry. This will
731 * force other nodes to drop it.
732 */
733static int ocfs2_remote_dentry_delete(struct dentry *dentry)
734{
735 int ret;
736
737 ret = ocfs2_dentry_lock(dentry, 1);
738 if (ret)
739 mlog_errno(ret);
740 else
741 ocfs2_dentry_unlock(dentry, 1);
742
743 return ret;
744}
745
Mark Fasheh17ff7852006-09-30 23:29:05 -0700746static inline int inode_is_unlinkable(struct inode *inode)
747{
748 if (S_ISDIR(inode->i_mode)) {
749 if (inode->i_nlink == 2)
750 return 1;
751 return 0;
752 }
753
754 if (inode->i_nlink == 1)
755 return 1;
756 return 0;
757}
758
Mark Fashehccd979b2005-12-15 14:31:24 -0800759static int ocfs2_unlink(struct inode *dir,
760 struct dentry *dentry)
761{
762 int status;
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700763 int child_locked = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800764 struct inode *inode = dentry->d_inode;
Mark Fasheh5098c272006-10-05 18:12:57 -0700765 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800766 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
767 u64 blkno;
768 struct ocfs2_dinode *fe = NULL;
769 struct buffer_head *fe_bh = NULL;
770 struct buffer_head *parent_node_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700771 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800772 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800773 struct ocfs2_dir_lookup_result lookup = { NULL, };
774 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -0800775
776 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry,
777 dentry->d_name.len, dentry->d_name.name);
778
Christoph Hellwig871a2932010-03-03 09:05:07 -0500779 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500780
Mark Fashehccd979b2005-12-15 14:31:24 -0800781 BUG_ON(dentry->d_parent->d_inode != dir);
782
Mark Fashehb06970532006-03-03 10:24:33 -0800783 mlog(0, "ino = %llu\n", (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800784
785 if (inode == osb->root_inode) {
786 mlog(0, "Cannot delete the root directory\n");
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700787 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800788 }
789
Jan Karacb257972009-06-04 15:26:50 +0200790 status = ocfs2_inode_lock_nested(dir, &parent_node_bh, 1,
791 OI_LS_PARENT);
Mark Fashehccd979b2005-12-15 14:31:24 -0800792 if (status < 0) {
793 if (status != -ENOENT)
794 mlog_errno(status);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700795 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800796 }
797
798 status = ocfs2_find_files_on_disk(dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800799 dentry->d_name.len, &blkno, dir,
800 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800801 if (status < 0) {
802 if (status != -ENOENT)
803 mlog_errno(status);
804 goto leave;
805 }
806
807 if (OCFS2_I(inode)->ip_blkno != blkno) {
808 status = -ENOENT;
809
Mark Fashehb06970532006-03-03 10:24:33 -0800810 mlog(0, "ip_blkno %llu != dirent blkno %llu ip_flags = %x\n",
811 (unsigned long long)OCFS2_I(inode)->ip_blkno,
812 (unsigned long long)blkno, OCFS2_I(inode)->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800813 goto leave;
814 }
815
Mark Fashehe63aecb62007-10-18 15:30:42 -0700816 status = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800817 if (status < 0) {
818 if (status != -ENOENT)
819 mlog_errno(status);
820 goto leave;
821 }
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700822 child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800823
824 if (S_ISDIR(inode->i_mode)) {
Mark Fashehb80b5492009-02-18 11:41:38 -0800825 if (inode->i_nlink != 2 || !ocfs2_empty_dir(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800826 status = -ENOTEMPTY;
827 goto leave;
828 }
829 }
830
Mark Fasheh379dfe92006-09-08 14:21:03 -0700831 status = ocfs2_remote_dentry_delete(dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -0800832 if (status < 0) {
Mark Fasheh34d024f2007-09-24 15:56:19 -0700833 /* This remote delete should succeed under all normal
Mark Fashehccd979b2005-12-15 14:31:24 -0800834 * circumstances. */
835 mlog_errno(status);
836 goto leave;
837 }
838
Mark Fasheh17ff7852006-09-30 23:29:05 -0700839 if (inode_is_unlinkable(inode)) {
Tao Ma19bd3412009-08-18 11:44:10 +0800840 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
841 OCFS2_I(inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800842 orphan_name, &orphan_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -0800843 if (status < 0) {
844 mlog_errno(status);
845 goto leave;
846 }
847 }
848
Jan Karaa90714c2008-10-09 19:38:40 +0200849 handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800850 if (IS_ERR(handle)) {
851 status = PTR_ERR(handle);
852 handle = NULL;
853 mlog_errno(status);
854 goto leave;
855 }
856
Joel Becker0cf2f762009-02-12 16:41:25 -0800857 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700858 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800859 if (status < 0) {
860 mlog_errno(status);
861 goto leave;
862 }
863
864 fe = (struct ocfs2_dinode *) fe_bh->b_data;
865
Mark Fasheh17ff7852006-09-30 23:29:05 -0700866 if (inode_is_unlinkable(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800867 status = ocfs2_orphan_add(osb, handle, inode, fe, orphan_name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800868 &orphan_insert, orphan_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800869 if (status < 0) {
870 mlog_errno(status);
871 goto leave;
872 }
873 }
874
875 /* delete the name from the parent dir */
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800876 status = ocfs2_delete_entry(handle, dir, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800877 if (status < 0) {
878 mlog_errno(status);
879 goto leave;
880 }
881
Mark Fasheh17ff7852006-09-30 23:29:05 -0700882 if (S_ISDIR(inode->i_mode))
883 drop_nlink(inode);
884 drop_nlink(inode);
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800885 ocfs2_set_links_count(fe, inode->i_nlink);
Joel Beckerec20cec2010-03-19 14:13:52 -0700886 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800887
Mark Fasheh592282c2007-01-02 17:59:40 -0800888 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
889 if (S_ISDIR(inode->i_mode))
Mark Fasheh17ff7852006-09-30 23:29:05 -0700890 drop_nlink(dir);
Mark Fasheh592282c2007-01-02 17:59:40 -0800891
892 status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh);
893 if (status < 0) {
894 mlog_errno(status);
895 if (S_ISDIR(inode->i_mode))
Dave Hansend8c76e62006-09-30 23:29:04 -0700896 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800897 }
898
899leave:
Mark Fashehccd979b2005-12-15 14:31:24 -0800900 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700901 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800902
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700903 if (child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -0700904 ocfs2_inode_unlock(inode, 1);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700905
Mark Fashehe63aecb62007-10-18 15:30:42 -0700906 ocfs2_inode_unlock(dir, 1);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700907
Mark Fasheh5098c272006-10-05 18:12:57 -0700908 if (orphan_dir) {
909 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700910 ocfs2_inode_unlock(orphan_dir, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -0700911 mutex_unlock(&orphan_dir->i_mutex);
912 iput(orphan_dir);
913 }
914
Mark Fasheha81cb882008-10-07 14:25:16 -0700915 brelse(fe_bh);
Mark Fasheha81cb882008-10-07 14:25:16 -0700916 brelse(parent_node_bh);
Mark Fasheh4a12ca32008-11-12 15:43:34 -0800917
918 ocfs2_free_dir_lookup_result(&orphan_insert);
919 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -0800920
921 mlog_exit(status);
922
923 return status;
924}
925
926/*
927 * The only place this should be used is rename!
928 * if they have the same id, then the 1st one is the only one locked.
929 */
930static int ocfs2_double_lock(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -0800931 struct buffer_head **bh1,
932 struct inode *inode1,
933 struct buffer_head **bh2,
934 struct inode *inode2)
935{
936 int status;
937 struct ocfs2_inode_info *oi1 = OCFS2_I(inode1);
938 struct ocfs2_inode_info *oi2 = OCFS2_I(inode2);
939 struct buffer_head **tmpbh;
940 struct inode *tmpinode;
941
Mark Fashehb06970532006-03-03 10:24:33 -0800942 mlog_entry("(inode1 = %llu, inode2 = %llu)\n",
943 (unsigned long long)oi1->ip_blkno,
944 (unsigned long long)oi2->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800945
Mark Fashehccd979b2005-12-15 14:31:24 -0800946 if (*bh1)
947 *bh1 = NULL;
948 if (*bh2)
949 *bh2 = NULL;
950
951 /* we always want to lock the one with the lower lockid first. */
952 if (oi1->ip_blkno != oi2->ip_blkno) {
953 if (oi1->ip_blkno < oi2->ip_blkno) {
954 /* switch id1 and id2 around */
955 mlog(0, "switching them around...\n");
956 tmpbh = bh2;
957 bh2 = bh1;
958 bh1 = tmpbh;
959
960 tmpinode = inode2;
961 inode2 = inode1;
962 inode1 = tmpinode;
963 }
964 /* lock id2 */
Jan Karacb257972009-06-04 15:26:50 +0200965 status = ocfs2_inode_lock_nested(inode2, bh2, 1,
966 OI_LS_RENAME1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800967 if (status < 0) {
968 if (status != -ENOENT)
969 mlog_errno(status);
970 goto bail;
971 }
972 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700973
Mark Fashehccd979b2005-12-15 14:31:24 -0800974 /* lock id1 */
Jan Karacb257972009-06-04 15:26:50 +0200975 status = ocfs2_inode_lock_nested(inode1, bh1, 1, OI_LS_RENAME2);
Mark Fashehccd979b2005-12-15 14:31:24 -0800976 if (status < 0) {
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700977 /*
978 * An error return must mean that no cluster locks
979 * were held on function exit.
980 */
981 if (oi1->ip_blkno != oi2->ip_blkno)
Mark Fashehe63aecb62007-10-18 15:30:42 -0700982 ocfs2_inode_unlock(inode2, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700983
Mark Fashehccd979b2005-12-15 14:31:24 -0800984 if (status != -ENOENT)
985 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800986 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700987
Mark Fashehccd979b2005-12-15 14:31:24 -0800988bail:
989 mlog_exit(status);
990 return status;
991}
992
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700993static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2)
994{
Mark Fashehe63aecb62007-10-18 15:30:42 -0700995 ocfs2_inode_unlock(inode1, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700996
997 if (inode1 != inode2)
Mark Fashehe63aecb62007-10-18 15:30:42 -0700998 ocfs2_inode_unlock(inode2, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700999}
1000
Mark Fashehccd979b2005-12-15 14:31:24 -08001001static int ocfs2_rename(struct inode *old_dir,
1002 struct dentry *old_dentry,
1003 struct inode *new_dir,
1004 struct dentry *new_dentry)
1005{
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001006 int status = 0, rename_lock = 0, parents_locked = 0, target_exists = 0;
1007 int old_child_locked = 0, new_child_locked = 0, update_dot_dot = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001008 struct inode *old_inode = old_dentry->d_inode;
1009 struct inode *new_inode = new_dentry->d_inode;
Mark Fasheh5098c272006-10-05 18:12:57 -07001010 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001011 struct ocfs2_dinode *newfe = NULL;
1012 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
Mark Fashehccd979b2005-12-15 14:31:24 -08001013 struct buffer_head *newfe_bh = NULL;
Mark Fasheh592282c2007-01-02 17:59:40 -08001014 struct buffer_head *old_inode_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001015 struct ocfs2_super *osb = NULL;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001016 u64 newfe_blkno, old_de_ino;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001017 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001018 struct buffer_head *old_dir_bh = NULL;
1019 struct buffer_head *new_dir_bh = NULL;
Mark Fasheh592282c2007-01-02 17:59:40 -08001020 nlink_t old_dir_nlink = old_dir->i_nlink;
Sunil Mushran480214d2007-08-06 15:11:56 -07001021 struct ocfs2_dinode *old_di;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001022 struct ocfs2_dir_lookup_result old_inode_dot_dot_res = { NULL, };
1023 struct ocfs2_dir_lookup_result target_lookup_res = { NULL, };
1024 struct ocfs2_dir_lookup_result old_entry_lookup = { NULL, };
1025 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
1026 struct ocfs2_dir_lookup_result target_insert = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -08001027
1028 /* At some point it might be nice to break this function up a
1029 * bit. */
1030
1031 mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p, from='%.*s' to='%.*s')\n",
1032 old_dir, old_dentry, new_dir, new_dentry,
1033 old_dentry->d_name.len, old_dentry->d_name.name,
1034 new_dentry->d_name.len, new_dentry->d_name.name);
1035
Christoph Hellwig871a2932010-03-03 09:05:07 -05001036 dquot_initialize(old_dir);
1037 dquot_initialize(new_dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001038
Mark Fashehccd979b2005-12-15 14:31:24 -08001039 osb = OCFS2_SB(old_dir->i_sb);
1040
1041 if (new_inode) {
1042 if (!igrab(new_inode))
1043 BUG();
1044 }
1045
Uwe Kleine-König1b3c3712007-02-17 19:23:03 +01001046 /* Assume a directory hierarchy thusly:
Mark Fashehccd979b2005-12-15 14:31:24 -08001047 * a/b/c
1048 * a/d
1049 * a,b,c, and d are all directories.
1050 *
1051 * from cwd of 'a' on both nodes:
1052 * node1: mv b/c d
1053 * node2: mv d b/c
1054 *
1055 * And that's why, just like the VFS, we need a file system
1056 * rename lock. */
Jan Kara5dabd692008-02-21 18:00:00 +01001057 if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001058 status = ocfs2_rename_lock(osb);
1059 if (status < 0) {
1060 mlog_errno(status);
1061 goto bail;
1062 }
1063 rename_lock = 1;
1064 }
1065
Mark Fashehccd979b2005-12-15 14:31:24 -08001066 /* if old and new are the same, this'll just do one lock. */
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001067 status = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
1068 &new_dir_bh, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001069 if (status < 0) {
1070 mlog_errno(status);
1071 goto bail;
1072 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001073 parents_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001074
1075 /* make sure both dirs have bhs
1076 * get an extra ref on old_dir_bh if old==new */
1077 if (!new_dir_bh) {
1078 if (old_dir_bh) {
1079 new_dir_bh = old_dir_bh;
1080 get_bh(new_dir_bh);
1081 } else {
1082 mlog(ML_ERROR, "no old_dir_bh!\n");
1083 status = -EIO;
1084 goto bail;
1085 }
1086 }
1087
Mark Fasheh379dfe92006-09-08 14:21:03 -07001088 /*
Mark Fasheh592282c2007-01-02 17:59:40 -08001089 * Aside from allowing a meta data update, the locking here
Mark Fasheh34d024f2007-09-24 15:56:19 -07001090 * also ensures that the downconvert thread on other nodes
1091 * won't have to concurrently downconvert the inode and the
1092 * dentry locks.
Mark Fasheh379dfe92006-09-08 14:21:03 -07001093 */
Jan Karacb257972009-06-04 15:26:50 +02001094 status = ocfs2_inode_lock_nested(old_inode, &old_inode_bh, 1,
1095 OI_LS_PARENT);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001096 if (status < 0) {
1097 if (status != -ENOENT)
Mark Fashehccd979b2005-12-15 14:31:24 -08001098 mlog_errno(status);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001099 goto bail;
1100 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001101 old_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001102
Mark Fasheh379dfe92006-09-08 14:21:03 -07001103 status = ocfs2_remote_dentry_delete(old_dentry);
1104 if (status < 0) {
1105 mlog_errno(status);
1106 goto bail;
1107 }
1108
1109 if (S_ISDIR(old_inode->i_mode)) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001110 u64 old_inode_parent;
Mark Fashehccd979b2005-12-15 14:31:24 -08001111
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001112 update_dot_dot = 1;
Mark Fasheh38760e22007-09-11 17:21:56 -07001113 status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001114 old_inode,
1115 &old_inode_dot_dot_res);
Mark Fasheh38760e22007-09-11 17:21:56 -07001116 if (status) {
1117 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001118 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001119 }
1120
1121 if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) {
1122 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001123 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001124 }
1125
1126 if (!new_inode && new_dir != old_dir &&
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001127 new_dir->i_nlink >= ocfs2_link_max(osb)) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001128 status = -EMLINK;
1129 goto bail;
1130 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001131 }
1132
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001133 status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
1134 old_dentry->d_name.len,
1135 &old_de_ino);
1136 if (status) {
1137 status = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -08001138 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001139 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001140
1141 /*
1142 * Check for inode number is _not_ due to possible IO errors.
1143 * We might rmdir the source, keep it as pwd of some process
1144 * and merrily kill the link to whatever was created under the
1145 * same name. Goodbye sticky bit ;-<
1146 */
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001147 if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) {
1148 status = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -08001149 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001150 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001151
1152 /* check if the target already exists (in which case we need
1153 * to delete it */
1154 status = ocfs2_find_files_on_disk(new_dentry->d_name.name,
1155 new_dentry->d_name.len,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001156 &newfe_blkno, new_dir,
1157 &target_lookup_res);
Mark Fashehccd979b2005-12-15 14:31:24 -08001158 /* The only error we allow here is -ENOENT because the new
1159 * file not existing is perfectly valid. */
1160 if ((status < 0) && (status != -ENOENT)) {
1161 /* If we cannot find the file specified we should just */
1162 /* return the error... */
1163 mlog_errno(status);
1164 goto bail;
1165 }
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001166 if (status == 0)
1167 target_exists = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001168
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001169 if (!target_exists && new_inode) {
Srinivas Eedae325a882007-10-31 16:49:43 -07001170 /*
1171 * Target was unlinked by another node while we were
1172 * waiting to get to ocfs2_rename(). There isn't
1173 * anything we can do here to help the situation, so
1174 * bubble up the appropriate error.
1175 */
1176 status = -ENOENT;
1177 goto bail;
1178 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001179
1180 /* In case we need to overwrite an existing file, we blow it
1181 * away first */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001182 if (target_exists) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001183 /* VFS didn't think there existed an inode here, but
1184 * someone else in the cluster must have raced our
1185 * rename to create one. Today we error cleanly, in
1186 * the future we should consider calling iget to build
1187 * a new struct inode for this entry. */
1188 if (!new_inode) {
1189 status = -EACCES;
1190
1191 mlog(0, "We found an inode for name %.*s but VFS "
1192 "didn't give us one.\n", new_dentry->d_name.len,
1193 new_dentry->d_name.name);
1194 goto bail;
1195 }
1196
1197 if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) {
1198 status = -EACCES;
1199
Mark Fashehb06970532006-03-03 10:24:33 -08001200 mlog(0, "Inode %llu and dir %llu disagree. flags = %x\n",
1201 (unsigned long long)OCFS2_I(new_inode)->ip_blkno,
1202 (unsigned long long)newfe_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08001203 OCFS2_I(new_inode)->ip_flags);
1204 goto bail;
1205 }
1206
Mark Fashehe63aecb62007-10-18 15:30:42 -07001207 status = ocfs2_inode_lock(new_inode, &newfe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001208 if (status < 0) {
1209 if (status != -ENOENT)
1210 mlog_errno(status);
1211 goto bail;
1212 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001213 new_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001214
Mark Fasheh379dfe92006-09-08 14:21:03 -07001215 status = ocfs2_remote_dentry_delete(new_dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -08001216 if (status < 0) {
1217 mlog_errno(status);
1218 goto bail;
1219 }
1220
1221 newfe = (struct ocfs2_dinode *) newfe_bh->b_data;
1222
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001223 mlog(0, "aha rename over existing... new_blkno=%llu "
1224 "newfebh=%p bhblocknr=%llu\n",
Mark Fashehb06970532006-03-03 10:24:33 -08001225 (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ?
Mark Fashehccd979b2005-12-15 14:31:24 -08001226 (unsigned long long)newfe_bh->b_blocknr : 0ULL);
1227
1228 if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) {
Mark Fasheh5098c272006-10-05 18:12:57 -07001229 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +08001230 OCFS2_I(new_inode)->ip_blkno,
1231 orphan_name, &orphan_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001232 if (status < 0) {
1233 mlog_errno(status);
1234 goto bail;
1235 }
1236 }
1237 } else {
1238 BUG_ON(new_dentry->d_parent->d_inode != new_dir);
1239
1240 status = ocfs2_check_dir_for_entry(new_dir,
1241 new_dentry->d_name.name,
1242 new_dentry->d_name.len);
1243 if (status)
1244 goto bail;
1245
1246 status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh,
1247 new_dentry->d_name.name,
1248 new_dentry->d_name.len,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001249 &target_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001250 if (status < 0) {
1251 mlog_errno(status);
1252 goto bail;
1253 }
1254 }
1255
Jan Karaa90714c2008-10-09 19:38:40 +02001256 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001257 if (IS_ERR(handle)) {
1258 status = PTR_ERR(handle);
1259 handle = NULL;
1260 mlog_errno(status);
1261 goto bail;
1262 }
1263
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001264 if (target_exists) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001265 if (S_ISDIR(new_inode->i_mode)) {
Mark Fashehb80b5492009-02-18 11:41:38 -08001266 if (new_inode->i_nlink != 2 ||
1267 !ocfs2_empty_dir(new_inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001268 status = -ENOTEMPTY;
1269 goto bail;
1270 }
1271 }
Joel Becker0cf2f762009-02-12 16:41:25 -08001272 status = ocfs2_journal_access_di(handle, INODE_CACHE(new_inode),
1273 newfe_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001274 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001275 if (status < 0) {
1276 mlog_errno(status);
1277 goto bail;
1278 }
1279
1280 if (S_ISDIR(new_inode->i_mode) ||
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001281 (ocfs2_read_links_count(newfe) == 1)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001282 status = ocfs2_orphan_add(osb, handle, new_inode,
1283 newfe, orphan_name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001284 &orphan_insert, orphan_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001285 if (status < 0) {
1286 mlog_errno(status);
1287 goto bail;
1288 }
1289 }
1290
1291 /* change the dirent to point to the correct inode */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001292 status = ocfs2_update_entry(new_dir, handle, &target_lookup_res,
1293 old_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001294 if (status < 0) {
1295 mlog_errno(status);
1296 goto bail;
1297 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001298 new_dir->i_version++;
Mark Fashehccd979b2005-12-15 14:31:24 -08001299
1300 if (S_ISDIR(new_inode->i_mode))
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001301 ocfs2_set_links_count(newfe, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001302 else
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001303 ocfs2_add_links_count(newfe, -1);
Joel Beckerec20cec2010-03-19 14:13:52 -07001304 ocfs2_journal_dirty(handle, newfe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001305 } else {
1306 /* if the name was not found in new_dir, add it now */
1307 status = ocfs2_add_entry(handle, new_dentry, old_inode,
1308 OCFS2_I(old_inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001309 new_dir_bh, &target_insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08001310 }
1311
1312 old_inode->i_ctime = CURRENT_TIME;
1313 mark_inode_dirty(old_inode);
Sunil Mushran480214d2007-08-06 15:11:56 -07001314
Joel Becker0cf2f762009-02-12 16:41:25 -08001315 status = ocfs2_journal_access_di(handle, INODE_CACHE(old_inode),
1316 old_inode_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001317 OCFS2_JOURNAL_ACCESS_WRITE);
Sunil Mushran480214d2007-08-06 15:11:56 -07001318 if (status >= 0) {
1319 old_di = (struct ocfs2_dinode *) old_inode_bh->b_data;
1320
1321 old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec);
1322 old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec);
Joel Beckerec20cec2010-03-19 14:13:52 -07001323 ocfs2_journal_dirty(handle, old_inode_bh);
Sunil Mushran480214d2007-08-06 15:11:56 -07001324 } else
1325 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001326
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001327 /*
1328 * Now that the name has been added to new_dir, remove the old name.
1329 *
1330 * We don't keep any directory entry context around until now
1331 * because the insert might have changed the type of directory
1332 * we're dealing with.
1333 */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001334 status = ocfs2_find_entry(old_dentry->d_name.name,
1335 old_dentry->d_name.len, old_dir,
1336 &old_entry_lookup);
1337 if (status)
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001338 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001339
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001340 status = ocfs2_delete_entry(handle, old_dir, &old_entry_lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001341 if (status < 0) {
1342 mlog_errno(status);
1343 goto bail;
1344 }
1345
1346 if (new_inode) {
1347 new_inode->i_nlink--;
1348 new_inode->i_ctime = CURRENT_TIME;
1349 }
1350 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001351
1352 if (update_dot_dot) {
1353 status = ocfs2_update_entry(old_inode, handle,
1354 &old_inode_dot_dot_res, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001355 old_dir->i_nlink--;
1356 if (new_inode) {
1357 new_inode->i_nlink--;
1358 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001359 inc_nlink(new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001360 mark_inode_dirty(new_dir);
1361 }
1362 }
1363 mark_inode_dirty(old_dir);
Mark Fasheh592282c2007-01-02 17:59:40 -08001364 ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh);
1365 if (new_inode) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001366 mark_inode_dirty(new_inode);
Mark Fasheh592282c2007-01-02 17:59:40 -08001367 ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh);
1368 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001369
Mark Fasheh592282c2007-01-02 17:59:40 -08001370 if (old_dir != new_dir) {
1371 /* Keep the same times on both directories.*/
1372 new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime;
1373
1374 /*
1375 * This will also pick up the i_nlink change from the
1376 * block above.
1377 */
1378 ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh);
1379 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001380
1381 if (old_dir_nlink != old_dir->i_nlink) {
1382 if (!old_dir_bh) {
1383 mlog(ML_ERROR, "need to change nlink for old dir "
Mark Fashehb06970532006-03-03 10:24:33 -08001384 "%llu from %d to %d but bh is NULL!\n",
1385 (unsigned long long)OCFS2_I(old_dir)->ip_blkno,
1386 (int)old_dir_nlink, old_dir->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001387 } else {
1388 struct ocfs2_dinode *fe;
Joel Becker0cf2f762009-02-12 16:41:25 -08001389 status = ocfs2_journal_access_di(handle,
1390 INODE_CACHE(old_dir),
1391 old_dir_bh,
1392 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001393 fe = (struct ocfs2_dinode *) old_dir_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001394 ocfs2_set_links_count(fe, old_dir->i_nlink);
Joel Beckerec20cec2010-03-19 14:13:52 -07001395 ocfs2_journal_dirty(handle, old_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001396 }
1397 }
Mark Fasheh379dfe92006-09-08 14:21:03 -07001398 ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001399 status = 0;
1400bail:
1401 if (rename_lock)
1402 ocfs2_rename_unlock(osb);
1403
1404 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001405 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001406
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001407 if (parents_locked)
1408 ocfs2_double_unlock(old_dir, new_dir);
1409
1410 if (old_child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001411 ocfs2_inode_unlock(old_inode, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001412
1413 if (new_child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001414 ocfs2_inode_unlock(new_inode, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001415
Mark Fasheh5098c272006-10-05 18:12:57 -07001416 if (orphan_dir) {
1417 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001418 ocfs2_inode_unlock(orphan_dir, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -07001419 mutex_unlock(&orphan_dir->i_mutex);
1420 iput(orphan_dir);
1421 }
1422
Mark Fashehccd979b2005-12-15 14:31:24 -08001423 if (new_inode)
1424 sync_mapping_buffers(old_inode->i_mapping);
1425
1426 if (new_inode)
1427 iput(new_inode);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001428
1429 ocfs2_free_dir_lookup_result(&target_lookup_res);
1430 ocfs2_free_dir_lookup_result(&old_entry_lookup);
1431 ocfs2_free_dir_lookup_result(&old_inode_dot_dot_res);
1432 ocfs2_free_dir_lookup_result(&orphan_insert);
1433 ocfs2_free_dir_lookup_result(&target_insert);
1434
Mark Fasheha81cb882008-10-07 14:25:16 -07001435 brelse(newfe_bh);
1436 brelse(old_inode_bh);
1437 brelse(old_dir_bh);
1438 brelse(new_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001439
1440 mlog_exit(status);
1441
1442 return status;
1443}
1444
1445/*
1446 * we expect i_size = strlen(symname). Copy symname into the file
1447 * data, including the null terminator.
1448 */
1449static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001450 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001451 struct inode *inode,
1452 const char *symname)
1453{
1454 struct buffer_head **bhs = NULL;
1455 const char *c;
1456 struct super_block *sb = osb->sb;
Mark Fasheh4f902c32007-03-09 16:26:50 -08001457 u64 p_blkno, p_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -08001458 int virtual, blocks, status, i, bytes_left;
1459
1460 bytes_left = i_size_read(inode) + 1;
1461 /* we can't trust i_blocks because we're actually going to
1462 * write i_size + 1 bytes. */
1463 blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
1464
Andrew Morton5515eff2006-03-26 01:37:53 -08001465 mlog_entry("i_blocks = %llu, i_size = %llu, blocks = %d\n",
1466 (unsigned long long)inode->i_blocks,
1467 i_size_read(inode), blocks);
Mark Fashehccd979b2005-12-15 14:31:24 -08001468
1469 /* Sanity check -- make sure we're going to fit. */
1470 if (bytes_left >
1471 ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) {
1472 status = -EIO;
1473 mlog_errno(status);
1474 goto bail;
1475 }
1476
1477 bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL);
1478 if (!bhs) {
1479 status = -ENOMEM;
1480 mlog_errno(status);
1481 goto bail;
1482 }
1483
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001484 status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks,
1485 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001486 if (status < 0) {
1487 mlog_errno(status);
1488 goto bail;
1489 }
1490
1491 /* links can never be larger than one cluster so we know this
1492 * is all going to be contiguous, but do a sanity check
1493 * anyway. */
1494 if ((p_blocks << sb->s_blocksize_bits) < bytes_left) {
1495 status = -EIO;
1496 mlog_errno(status);
1497 goto bail;
1498 }
1499
1500 virtual = 0;
1501 while(bytes_left > 0) {
1502 c = &symname[virtual * sb->s_blocksize];
1503
1504 bhs[virtual] = sb_getblk(sb, p_blkno);
1505 if (!bhs[virtual]) {
1506 status = -ENOMEM;
1507 mlog_errno(status);
1508 goto bail;
1509 }
Joel Becker8cb471e2009-02-10 20:00:41 -08001510 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode),
1511 bhs[virtual]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001512
Joel Becker0cf2f762009-02-12 16:41:25 -08001513 status = ocfs2_journal_access(handle, INODE_CACHE(inode),
1514 bhs[virtual],
Mark Fashehccd979b2005-12-15 14:31:24 -08001515 OCFS2_JOURNAL_ACCESS_CREATE);
1516 if (status < 0) {
1517 mlog_errno(status);
1518 goto bail;
1519 }
1520
1521 memset(bhs[virtual]->b_data, 0, sb->s_blocksize);
1522
1523 memcpy(bhs[virtual]->b_data, c,
1524 (bytes_left > sb->s_blocksize) ? sb->s_blocksize :
1525 bytes_left);
1526
Joel Beckerec20cec2010-03-19 14:13:52 -07001527 ocfs2_journal_dirty(handle, bhs[virtual]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001528
1529 virtual++;
1530 p_blkno++;
1531 bytes_left -= sb->s_blocksize;
1532 }
1533
1534 status = 0;
1535bail:
1536
1537 if (bhs) {
1538 for(i = 0; i < blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001539 brelse(bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001540 kfree(bhs);
1541 }
1542
1543 mlog_exit(status);
1544 return status;
1545}
1546
1547static int ocfs2_symlink(struct inode *dir,
1548 struct dentry *dentry,
1549 const char *symname)
1550{
1551 int status, l, credits;
1552 u64 newsize;
1553 struct ocfs2_super *osb = NULL;
1554 struct inode *inode = NULL;
1555 struct super_block *sb;
1556 struct buffer_head *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001557 struct buffer_head *parent_fe_bh = NULL;
1558 struct ocfs2_dinode *fe = NULL;
1559 struct ocfs2_dinode *dirfe;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001560 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001561 struct ocfs2_alloc_context *inode_ac = NULL;
1562 struct ocfs2_alloc_context *data_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +08001563 struct ocfs2_alloc_context *xattr_ac = NULL;
1564 int want_clusters = 0;
1565 int xattr_credits = 0;
1566 struct ocfs2_security_xattr_info si = {
1567 .enable = 1,
1568 };
Jan Karaa90714c2008-10-09 19:38:40 +02001569 int did_quota = 0, did_quota_inode = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001570 struct ocfs2_dir_lookup_result lookup = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -08001571
1572 mlog_entry("(0x%p, 0x%p, symname='%s' actual='%.*s')\n", dir,
1573 dentry, symname, dentry->d_name.len, dentry->d_name.name);
1574
Christoph Hellwig871a2932010-03-03 09:05:07 -05001575 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001576
Mark Fashehccd979b2005-12-15 14:31:24 -08001577 sb = dir->i_sb;
1578 osb = OCFS2_SB(sb);
1579
1580 l = strlen(symname) + 1;
1581
1582 credits = ocfs2_calc_symlink_credits(sb);
1583
Mark Fashehccd979b2005-12-15 14:31:24 -08001584 /* lock the parent directory */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001585 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001586 if (status < 0) {
1587 if (status != -ENOENT)
1588 mlog_errno(status);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001589 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001590 }
1591
1592 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001593 if (!ocfs2_read_links_count(dirfe)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001594 /* can't make a file in a deleted directory. */
1595 status = -ENOENT;
1596 goto bail;
1597 }
1598
1599 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
1600 dentry->d_name.len);
1601 if (status)
1602 goto bail;
1603
1604 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
1605 dentry->d_name.name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001606 dentry->d_name.len, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001607 if (status < 0) {
1608 mlog_errno(status);
1609 goto bail;
1610 }
1611
Mark Fashehda5cbf22006-10-06 18:34:35 -07001612 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001613 if (status < 0) {
1614 if (status != -ENOSPC)
1615 mlog_errno(status);
1616 goto bail;
1617 }
1618
Tiger Yangf5d36202008-11-14 11:15:44 +08001619 inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO);
1620 if (!inode) {
1621 status = -ENOMEM;
1622 mlog_errno(status);
1623 goto bail;
1624 }
1625
Tiger Yang534eadd2008-11-14 11:16:41 +08001626 /* get security xattr */
1627 status = ocfs2_init_security_get(inode, dir, &si);
1628 if (status) {
1629 if (status == -EOPNOTSUPP)
1630 si.enable = 0;
1631 else {
1632 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001633 goto bail;
1634 }
1635 }
1636
Tiger Yang534eadd2008-11-14 11:16:41 +08001637 /* calculate meta data/clusters for setting security xattr */
1638 if (si.enable) {
1639 status = ocfs2_calc_security_init(dir, &si, &want_clusters,
1640 &xattr_credits, &xattr_ac);
1641 if (status < 0) {
1642 mlog_errno(status);
1643 goto bail;
1644 }
1645 }
1646
1647 /* don't reserve bitmap space for fast symlinks. */
1648 if (l > ocfs2_fast_symlink_chars(sb))
1649 want_clusters += 1;
1650
1651 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
1652 if (status < 0) {
1653 if (status != -ENOSPC)
1654 mlog_errno(status);
1655 goto bail;
1656 }
1657
1658 handle = ocfs2_start_trans(osb, credits + xattr_credits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001659 if (IS_ERR(handle)) {
1660 status = PTR_ERR(handle);
1661 handle = NULL;
1662 mlog_errno(status);
1663 goto bail;
1664 }
1665
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001666 status = dquot_alloc_inode(inode);
1667 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +02001668 goto bail;
Jan Karaa90714c2008-10-09 19:38:40 +02001669 did_quota_inode = 1;
1670
Tao Ma19bd3412009-08-18 11:44:10 +08001671 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry,
1672 inode->i_mode, dentry->d_name.len,
1673 dentry->d_name.name);
1674
1675 status = ocfs2_mknod_locked(osb, dir, inode,
Tiger Yangf5d36202008-11-14 11:15:44 +08001676 0, &new_fe_bh, parent_fe_bh, handle,
1677 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001678 if (status < 0) {
1679 mlog_errno(status);
1680 goto bail;
1681 }
1682
1683 fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
1684 inode->i_rdev = 0;
1685 newsize = l - 1;
1686 if (l > ocfs2_fast_symlink_chars(sb)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08001687 u32 offset = 0;
1688
Mark Fashehccd979b2005-12-15 14:31:24 -08001689 inode->i_op = &ocfs2_symlink_inode_operations;
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001690 status = dquot_alloc_space_nodirty(inode,
1691 ocfs2_clusters_to_bytes(osb->sb, 1));
1692 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +02001693 goto bail;
Jan Karaa90714c2008-10-09 19:38:40 +02001694 did_quota = 1;
Tao Ma0eb8d472008-08-18 17:38:45 +08001695 status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0,
1696 new_fe_bh,
1697 handle, data_ac, NULL,
1698 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001699 if (status < 0) {
1700 if (status != -ENOSPC && status != -EINTR) {
Mark Fashehb06970532006-03-03 10:24:33 -08001701 mlog(ML_ERROR,
1702 "Failed to extend file to %llu\n",
1703 (unsigned long long)newsize);
Mark Fashehccd979b2005-12-15 14:31:24 -08001704 mlog_errno(status);
1705 status = -ENOSPC;
1706 }
1707 goto bail;
1708 }
1709 i_size_write(inode, newsize);
Mark Fasheh8110b072007-03-22 16:53:23 -07001710 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001711 } else {
1712 inode->i_op = &ocfs2_fast_symlink_inode_operations;
1713 memcpy((char *) fe->id2.i_symlink, symname, l);
1714 i_size_write(inode, newsize);
1715 inode->i_blocks = 0;
1716 }
1717
1718 status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh);
1719 if (status < 0) {
1720 mlog_errno(status);
1721 goto bail;
1722 }
1723
1724 if (!ocfs2_inode_is_fast_symlink(inode)) {
1725 status = ocfs2_create_symlink_data(osb, handle, inode,
1726 symname);
1727 if (status < 0) {
1728 mlog_errno(status);
1729 goto bail;
1730 }
1731 }
1732
Tiger Yang534eadd2008-11-14 11:16:41 +08001733 if (si.enable) {
1734 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
1735 xattr_ac, data_ac);
1736 if (status < 0) {
1737 mlog_errno(status);
1738 goto bail;
1739 }
1740 }
1741
Mark Fashehccd979b2005-12-15 14:31:24 -08001742 status = ocfs2_add_entry(handle, dentry, inode,
1743 le64_to_cpu(fe->i_blkno), parent_fe_bh,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001744 &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001745 if (status < 0) {
1746 mlog_errno(status);
1747 goto bail;
1748 }
1749
Mark Fasheh0027dd52006-09-21 16:51:28 -07001750 status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001751 if (status) {
1752 mlog_errno(status);
1753 goto bail;
1754 }
1755
Mark Fashehccd979b2005-12-15 14:31:24 -08001756 insert_inode_hash(inode);
1757 dentry->d_op = &ocfs2_dentry_ops;
1758 d_instantiate(dentry, inode);
1759bail:
Jan Karaa90714c2008-10-09 19:38:40 +02001760 if (status < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001761 dquot_free_space_nodirty(inode,
Jan Karaa90714c2008-10-09 19:38:40 +02001762 ocfs2_clusters_to_bytes(osb->sb, 1));
1763 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001764 dquot_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001765 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001766 ocfs2_commit_trans(osb, handle);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001767
Mark Fashehe63aecb62007-10-18 15:30:42 -07001768 ocfs2_inode_unlock(dir, 1);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001769
Mark Fasheha81cb882008-10-07 14:25:16 -07001770 brelse(new_fe_bh);
1771 brelse(parent_fe_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +08001772 kfree(si.name);
1773 kfree(si.value);
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001774 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001775 if (inode_ac)
1776 ocfs2_free_alloc_context(inode_ac);
1777 if (data_ac)
1778 ocfs2_free_alloc_context(data_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +08001779 if (xattr_ac)
1780 ocfs2_free_alloc_context(xattr_ac);
Tiger Yangf5d36202008-11-14 11:15:44 +08001781 if ((status < 0) && inode) {
1782 clear_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001783 iput(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +08001784 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001785
1786 mlog_exit(status);
1787
1788 return status;
1789}
1790
Mark Fashehccd979b2005-12-15 14:31:24 -08001791static int ocfs2_blkno_stringify(u64 blkno, char *name)
1792{
1793 int status, namelen;
1794
1795 mlog_entry_void();
1796
Mark Fashehb06970532006-03-03 10:24:33 -08001797 namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx",
1798 (long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001799 if (namelen <= 0) {
1800 if (namelen)
1801 status = namelen;
1802 else
1803 status = -EINVAL;
1804 mlog_errno(status);
1805 goto bail;
1806 }
1807 if (namelen != OCFS2_ORPHAN_NAMELEN) {
1808 status = -EINVAL;
1809 mlog_errno(status);
1810 goto bail;
1811 }
1812
1813 mlog(0, "built filename '%s' for orphan dir (len=%d)\n", name,
1814 namelen);
1815
1816 status = 0;
1817bail:
1818 mlog_exit(status);
1819 return status;
1820}
1821
1822static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -07001823 struct inode **ret_orphan_dir,
Tao Ma19bd3412009-08-18 11:44:10 +08001824 u64 blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08001825 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001826 struct ocfs2_dir_lookup_result *lookup)
Mark Fashehccd979b2005-12-15 14:31:24 -08001827{
Mark Fasheh5098c272006-10-05 18:12:57 -07001828 struct inode *orphan_dir_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08001829 struct buffer_head *orphan_dir_bh = NULL;
1830 int status = 0;
1831
Tao Ma19bd3412009-08-18 11:44:10 +08001832 status = ocfs2_blkno_stringify(blkno, name);
Mark Fashehccd979b2005-12-15 14:31:24 -08001833 if (status < 0) {
1834 mlog_errno(status);
Mark Fasheh5098c272006-10-05 18:12:57 -07001835 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001836 }
1837
1838 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
1839 ORPHAN_DIR_SYSTEM_INODE,
1840 osb->slot_num);
1841 if (!orphan_dir_inode) {
1842 status = -ENOENT;
1843 mlog_errno(status);
Mark Fasheh5098c272006-10-05 18:12:57 -07001844 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001845 }
1846
Mark Fasheh5098c272006-10-05 18:12:57 -07001847 mutex_lock(&orphan_dir_inode->i_mutex);
1848
Mark Fashehe63aecb62007-10-18 15:30:42 -07001849 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001850 if (status < 0) {
1851 mlog_errno(status);
1852 goto leave;
1853 }
1854
1855 status = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode,
1856 orphan_dir_bh, name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001857 OCFS2_ORPHAN_NAMELEN, lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001858 if (status < 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001859 ocfs2_inode_unlock(orphan_dir_inode, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -07001860
Mark Fashehccd979b2005-12-15 14:31:24 -08001861 mlog_errno(status);
1862 goto leave;
1863 }
1864
Mark Fasheh5098c272006-10-05 18:12:57 -07001865 *ret_orphan_dir = orphan_dir_inode;
1866
Mark Fashehccd979b2005-12-15 14:31:24 -08001867leave:
Mark Fasheh5098c272006-10-05 18:12:57 -07001868 if (status) {
1869 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001870 iput(orphan_dir_inode);
Mark Fasheh5098c272006-10-05 18:12:57 -07001871 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001872
Mark Fasheha81cb882008-10-07 14:25:16 -07001873 brelse(orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001874
1875 mlog_exit(status);
1876 return status;
1877}
1878
1879static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001880 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001881 struct inode *inode,
1882 struct ocfs2_dinode *fe,
1883 char *name,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001884 struct ocfs2_dir_lookup_result *lookup,
Mark Fasheh5098c272006-10-05 18:12:57 -07001885 struct inode *orphan_dir_inode)
Mark Fashehccd979b2005-12-15 14:31:24 -08001886{
Mark Fashehccd979b2005-12-15 14:31:24 -08001887 struct buffer_head *orphan_dir_bh = NULL;
1888 int status = 0;
1889 struct ocfs2_dinode *orphan_fe;
1890
1891 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
1892
Joel Beckerb657c952008-11-13 14:49:11 -08001893 status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001894 if (status < 0) {
1895 mlog_errno(status);
1896 goto leave;
1897 }
1898
Joel Becker0cf2f762009-02-12 16:41:25 -08001899 status = ocfs2_journal_access_di(handle,
1900 INODE_CACHE(orphan_dir_inode),
1901 orphan_dir_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001902 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001903 if (status < 0) {
1904 mlog_errno(status);
1905 goto leave;
1906 }
1907
1908 /* we're a cluster, and nlink can change on disk from
1909 * underneath us... */
1910 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
1911 if (S_ISDIR(inode->i_mode))
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001912 ocfs2_add_links_count(orphan_fe, 1);
1913 orphan_dir_inode->i_nlink = ocfs2_read_links_count(orphan_fe);
Joel Beckerec20cec2010-03-19 14:13:52 -07001914 ocfs2_journal_dirty(handle, orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001915
1916 status = __ocfs2_add_entry(handle, orphan_dir_inode, name,
1917 OCFS2_ORPHAN_NAMELEN, inode,
1918 OCFS2_I(inode)->ip_blkno,
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001919 orphan_dir_bh, lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001920 if (status < 0) {
1921 mlog_errno(status);
1922 goto leave;
1923 }
1924
1925 le32_add_cpu(&fe->i_flags, OCFS2_ORPHANED_FL);
1926
1927 /* Record which orphan dir our inode now resides
1928 * in. delete_inode will use this to determine which orphan
1929 * dir to lock. */
Tiger Yang50008632007-03-20 16:01:38 -07001930 fe->i_orphaned_slot = cpu_to_le16(osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001931
Mark Fashehb06970532006-03-03 10:24:33 -08001932 mlog(0, "Inode %llu orphaned in slot %d\n",
1933 (unsigned long long)OCFS2_I(inode)->ip_blkno, osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001934
1935leave:
Mark Fasheha81cb882008-10-07 14:25:16 -07001936 brelse(orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001937
1938 mlog_exit(status);
1939 return status;
1940}
1941
1942/* unlike orphan_add, we expect the orphan dir to already be locked here. */
1943int ocfs2_orphan_del(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001944 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001945 struct inode *orphan_dir_inode,
1946 struct inode *inode,
1947 struct buffer_head *orphan_dir_bh)
1948{
1949 char name[OCFS2_ORPHAN_NAMELEN + 1];
1950 struct ocfs2_dinode *orphan_fe;
1951 int status = 0;
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001952 struct ocfs2_dir_lookup_result lookup = { NULL, };
Mark Fashehccd979b2005-12-15 14:31:24 -08001953
1954 mlog_entry_void();
1955
1956 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
1957 if (status < 0) {
1958 mlog_errno(status);
1959 goto leave;
1960 }
1961
Mark Fashehb06970532006-03-03 10:24:33 -08001962 mlog(0, "removing '%s' from orphan dir %llu (namelen=%d)\n",
1963 name, (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
1964 OCFS2_ORPHAN_NAMELEN);
Mark Fashehccd979b2005-12-15 14:31:24 -08001965
1966 /* find it's spot in the orphan directory */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001967 status = ocfs2_find_entry(name, OCFS2_ORPHAN_NAMELEN, orphan_dir_inode,
1968 &lookup);
1969 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001970 mlog_errno(status);
1971 goto leave;
1972 }
1973
1974 /* remove it from the orphan directory */
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001975 status = ocfs2_delete_entry(handle, orphan_dir_inode, &lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001976 if (status < 0) {
1977 mlog_errno(status);
1978 goto leave;
1979 }
1980
Joel Becker0cf2f762009-02-12 16:41:25 -08001981 status = ocfs2_journal_access_di(handle,
1982 INODE_CACHE(orphan_dir_inode),
1983 orphan_dir_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001984 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001985 if (status < 0) {
1986 mlog_errno(status);
1987 goto leave;
1988 }
1989
1990 /* do the i_nlink dance! :) */
1991 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
1992 if (S_ISDIR(inode->i_mode))
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001993 ocfs2_add_links_count(orphan_fe, -1);
1994 orphan_dir_inode->i_nlink = ocfs2_read_links_count(orphan_fe);
Joel Beckerec20cec2010-03-19 14:13:52 -07001995 ocfs2_journal_dirty(handle, orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001996
1997leave:
Mark Fasheh4a12ca32008-11-12 15:43:34 -08001998 ocfs2_free_dir_lookup_result(&lookup);
Mark Fashehccd979b2005-12-15 14:31:24 -08001999
2000 mlog_exit(status);
2001 return status;
2002}
2003
Tao Mabc13d342009-08-18 11:44:14 +08002004int ocfs2_create_inode_in_orphan(struct inode *dir,
2005 int mode,
2006 struct inode **new_inode)
2007{
2008 int status, did_quota_inode = 0;
2009 struct inode *inode = NULL;
2010 struct inode *orphan_dir = NULL;
2011 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2012 struct ocfs2_dinode *di = NULL;
2013 handle_t *handle = NULL;
2014 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
2015 struct buffer_head *parent_di_bh = NULL;
2016 struct buffer_head *new_di_bh = NULL;
2017 struct ocfs2_alloc_context *inode_ac = NULL;
2018 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
2019
2020 status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2021 if (status < 0) {
2022 if (status != -ENOENT)
2023 mlog_errno(status);
2024 return status;
2025 }
2026
2027 /*
2028 * We give the orphan dir the root blkno to fake an orphan name,
2029 * and allocate enough space for our insertion.
2030 */
2031 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
2032 osb->root_blkno,
2033 orphan_name, &orphan_insert);
2034 if (status < 0) {
2035 mlog_errno(status);
2036 goto leave;
2037 }
2038
2039 /* reserve an inode spot */
2040 status = ocfs2_reserve_new_inode(osb, &inode_ac);
2041 if (status < 0) {
2042 if (status != -ENOSPC)
2043 mlog_errno(status);
2044 goto leave;
2045 }
2046
2047 inode = ocfs2_get_init_inode(dir, mode);
2048 if (!inode) {
2049 status = -ENOMEM;
2050 mlog_errno(status);
2051 goto leave;
2052 }
2053
2054 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, 0, 0));
2055 if (IS_ERR(handle)) {
2056 status = PTR_ERR(handle);
2057 handle = NULL;
2058 mlog_errno(status);
2059 goto leave;
2060 }
2061
Christoph Hellwig63936dd2010-03-03 09:05:01 -05002062 status = dquot_alloc_inode(inode);
2063 if (status)
Tao Mabc13d342009-08-18 11:44:14 +08002064 goto leave;
Tao Mabc13d342009-08-18 11:44:14 +08002065 did_quota_inode = 1;
2066
Tao Ma10cf1a02009-12-18 10:24:55 +08002067 inode->i_nlink = 0;
Tao Mabc13d342009-08-18 11:44:14 +08002068 /* do the real work now. */
2069 status = ocfs2_mknod_locked(osb, dir, inode,
2070 0, &new_di_bh, parent_di_bh, handle,
2071 inode_ac);
2072 if (status < 0) {
2073 mlog_errno(status);
2074 goto leave;
2075 }
2076
2077 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, orphan_name);
2078 if (status < 0) {
2079 mlog_errno(status);
2080 goto leave;
2081 }
2082
2083 di = (struct ocfs2_dinode *)new_di_bh->b_data;
2084 status = ocfs2_orphan_add(osb, handle, inode, di, orphan_name,
2085 &orphan_insert, orphan_dir);
2086 if (status < 0) {
2087 mlog_errno(status);
2088 goto leave;
2089 }
2090
2091 /* get open lock so that only nodes can't remove it from orphan dir. */
2092 status = ocfs2_open_lock(inode);
2093 if (status < 0)
2094 mlog_errno(status);
2095
Tao Mac7d260a2009-12-18 10:24:54 +08002096 insert_inode_hash(inode);
Tao Mabc13d342009-08-18 11:44:14 +08002097leave:
2098 if (status < 0 && did_quota_inode)
Christoph Hellwig63936dd2010-03-03 09:05:01 -05002099 dquot_free_inode(inode);
Tao Mabc13d342009-08-18 11:44:14 +08002100 if (handle)
2101 ocfs2_commit_trans(osb, handle);
2102
2103 if (orphan_dir) {
2104 /* This was locked for us in ocfs2_prepare_orphan_dir() */
2105 ocfs2_inode_unlock(orphan_dir, 1);
2106 mutex_unlock(&orphan_dir->i_mutex);
2107 iput(orphan_dir);
2108 }
2109
2110 if (status == -ENOSPC)
2111 mlog(0, "Disk is full\n");
2112
2113 if ((status < 0) && inode) {
2114 clear_nlink(inode);
2115 iput(inode);
2116 }
2117
2118 if (inode_ac)
2119 ocfs2_free_alloc_context(inode_ac);
2120
2121 brelse(new_di_bh);
2122
2123 if (!status)
2124 *new_inode = inode;
2125
2126 ocfs2_free_dir_lookup_result(&orphan_insert);
2127
2128 ocfs2_inode_unlock(dir, 1);
2129 brelse(parent_di_bh);
2130 return status;
2131}
2132
2133int ocfs2_mv_orphaned_inode_to_new(struct inode *dir,
2134 struct inode *inode,
2135 struct dentry *dentry)
2136{
2137 int status = 0;
2138 struct buffer_head *parent_di_bh = NULL;
2139 handle_t *handle = NULL;
2140 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2141 struct ocfs2_dinode *dir_di, *di;
2142 struct inode *orphan_dir_inode = NULL;
2143 struct buffer_head *orphan_dir_bh = NULL;
2144 struct buffer_head *di_bh = NULL;
2145 struct ocfs2_dir_lookup_result lookup = { NULL, };
2146
2147 mlog_entry("(0x%p, 0x%p, %.*s')\n", dir, dentry,
2148 dentry->d_name.len, dentry->d_name.name);
2149
2150 status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2151 if (status < 0) {
2152 if (status != -ENOENT)
2153 mlog_errno(status);
2154 return status;
2155 }
2156
2157 dir_di = (struct ocfs2_dinode *) parent_di_bh->b_data;
2158 if (!dir_di->i_links_count) {
2159 /* can't make a file in a deleted directory. */
2160 status = -ENOENT;
2161 goto leave;
2162 }
2163
2164 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
2165 dentry->d_name.len);
2166 if (status)
2167 goto leave;
2168
2169 /* get a spot inside the dir. */
2170 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_di_bh,
2171 dentry->d_name.name,
2172 dentry->d_name.len, &lookup);
2173 if (status < 0) {
2174 mlog_errno(status);
2175 goto leave;
2176 }
2177
2178 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2179 ORPHAN_DIR_SYSTEM_INODE,
2180 osb->slot_num);
2181 if (!orphan_dir_inode) {
2182 status = -EEXIST;
2183 mlog_errno(status);
2184 goto leave;
2185 }
2186
2187 mutex_lock(&orphan_dir_inode->i_mutex);
2188
2189 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2190 if (status < 0) {
2191 mlog_errno(status);
2192 mutex_unlock(&orphan_dir_inode->i_mutex);
2193 iput(orphan_dir_inode);
2194 goto leave;
2195 }
2196
2197 status = ocfs2_read_inode_block(inode, &di_bh);
2198 if (status < 0) {
2199 mlog_errno(status);
2200 goto orphan_unlock;
2201 }
2202
2203 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
2204 if (IS_ERR(handle)) {
2205 status = PTR_ERR(handle);
2206 handle = NULL;
2207 mlog_errno(status);
2208 goto orphan_unlock;
2209 }
2210
2211 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
2212 di_bh, OCFS2_JOURNAL_ACCESS_WRITE);
2213 if (status < 0) {
2214 mlog_errno(status);
2215 goto out_commit;
2216 }
2217
2218 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
2219 orphan_dir_bh);
2220 if (status < 0) {
2221 mlog_errno(status);
2222 goto out_commit;
2223 }
2224
2225 di = (struct ocfs2_dinode *)di_bh->b_data;
2226 le32_add_cpu(&di->i_flags, -OCFS2_ORPHANED_FL);
2227 di->i_orphaned_slot = 0;
Tao Ma10cf1a02009-12-18 10:24:55 +08002228 inode->i_nlink = 1;
2229 ocfs2_set_links_count(di, inode->i_nlink);
Tao Mabc13d342009-08-18 11:44:14 +08002230 ocfs2_journal_dirty(handle, di_bh);
2231
2232 status = ocfs2_add_entry(handle, dentry, inode,
2233 OCFS2_I(inode)->ip_blkno, parent_di_bh,
2234 &lookup);
2235 if (status < 0) {
2236 mlog_errno(status);
2237 goto out_commit;
2238 }
2239
2240 status = ocfs2_dentry_attach_lock(dentry, inode,
2241 OCFS2_I(dir)->ip_blkno);
2242 if (status) {
2243 mlog_errno(status);
2244 goto out_commit;
2245 }
2246
Tao Mabc13d342009-08-18 11:44:14 +08002247 dentry->d_op = &ocfs2_dentry_ops;
2248 d_instantiate(dentry, inode);
2249 status = 0;
2250out_commit:
2251 ocfs2_commit_trans(osb, handle);
2252orphan_unlock:
2253 ocfs2_inode_unlock(orphan_dir_inode, 1);
2254 mutex_unlock(&orphan_dir_inode->i_mutex);
2255 iput(orphan_dir_inode);
2256leave:
2257
2258 ocfs2_inode_unlock(dir, 1);
2259
2260 brelse(di_bh);
2261 brelse(parent_di_bh);
2262 brelse(orphan_dir_bh);
2263
2264 ocfs2_free_dir_lookup_result(&lookup);
2265
2266 mlog_exit(status);
2267
2268 return status;
2269}
2270
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002271const struct inode_operations ocfs2_dir_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002272 .create = ocfs2_create,
2273 .lookup = ocfs2_lookup,
2274 .link = ocfs2_link,
2275 .unlink = ocfs2_unlink,
2276 .rmdir = ocfs2_unlink,
2277 .symlink = ocfs2_symlink,
2278 .mkdir = ocfs2_mkdir,
2279 .mknod = ocfs2_mknod,
2280 .rename = ocfs2_rename,
2281 .setattr = ocfs2_setattr,
2282 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002283 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002284 .setxattr = generic_setxattr,
2285 .getxattr = generic_getxattr,
2286 .listxattr = ocfs2_listxattr,
2287 .removexattr = generic_removexattr,
Tristan Ye55f49462009-12-17 18:42:16 +08002288 .fiemap = ocfs2_fiemap,
Mark Fashehccd979b2005-12-15 14:31:24 -08002289};