blob: 084aba86c3b29c145551eb12c60a44d56a6aed4f [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,
72 struct dentry *dentry,
Mark Fashehccd979b2005-12-15 14:31:24 -080073 dev_t dev,
74 struct buffer_head **new_fe_bh,
75 struct buffer_head *parent_fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -070076 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080077 struct ocfs2_alloc_context *inode_ac);
78
Mark Fashehccd979b2005-12-15 14:31:24 -080079static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -070080 struct inode **ret_orphan_dir,
Mark Fashehccd979b2005-12-15 14:31:24 -080081 struct inode *inode,
82 char *name,
83 struct buffer_head **de_bh);
84
85static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070086 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080087 struct inode *inode,
88 struct ocfs2_dinode *fe,
89 char *name,
Mark Fasheh5098c272006-10-05 18:12:57 -070090 struct buffer_head *de_bh,
91 struct inode *orphan_dir_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -080092
93static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070094 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080095 struct inode *inode,
96 const char *symname);
97
Mark Fashehccd979b2005-12-15 14:31:24 -080098/* An orphan dir name is an 8 byte value, printed as a hex string */
99#define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64)))
100
101static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry,
102 struct nameidata *nd)
103{
104 int status;
105 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800106 struct inode *inode = NULL;
107 struct dentry *ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800108 struct ocfs2_inode_info *oi;
109
110 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry,
111 dentry->d_name.len, dentry->d_name.name);
112
113 if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) {
114 ret = ERR_PTR(-ENAMETOOLONG);
115 goto bail;
116 }
117
Mark Fashehb06970532006-03-03 10:24:33 -0800118 mlog(0, "find name %.*s in directory %llu\n", dentry->d_name.len,
119 dentry->d_name.name, (unsigned long long)OCFS2_I(dir)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800120
Mark Fashehe63aecb62007-10-18 15:30:42 -0700121 status = ocfs2_inode_lock(dir, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800122 if (status < 0) {
123 if (status != -ENOENT)
124 mlog_errno(status);
125 ret = ERR_PTR(status);
126 goto bail;
127 }
128
Mark Fashehbe94d112007-09-11 15:22:06 -0700129 status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name,
130 dentry->d_name.len, &blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800131 if (status < 0)
132 goto bail_add;
133
Jan Kara5fa06132008-01-11 00:11:45 +0100134 inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800135 if (IS_ERR(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800136 ret = ERR_PTR(-EACCES);
137 goto bail_unlock;
138 }
139
140 oi = OCFS2_I(inode);
141 /* Clear any orphaned state... If we were able to look up the
142 * inode from a directory, it certainly can't be orphaned. We
143 * might have the bad state from a node which intended to
144 * orphan this inode but crashed before it could commit the
145 * unlink. */
146 spin_lock(&oi->ip_lock);
147 oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED;
Mark Fashehccd979b2005-12-15 14:31:24 -0800148 spin_unlock(&oi->ip_lock);
149
150bail_add:
Mark Fashehccd979b2005-12-15 14:31:24 -0800151 dentry->d_op = &ocfs2_dentry_ops;
152 ret = d_splice_alias(inode, dentry);
153
Mark Fasheh379dfe92006-09-08 14:21:03 -0700154 if (inode) {
155 /*
156 * If d_splice_alias() finds a DCACHE_DISCONNECTED
157 * dentry, it will d_move() it on top of ourse. The
158 * return value will indicate this however, so in
159 * those cases, we switch them around for the locking
160 * code.
161 *
162 * NOTE: This dentry already has ->d_op set from
163 * ocfs2_get_parent() and ocfs2_get_dentry()
164 */
165 if (ret)
166 dentry = ret;
167
168 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700169 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700170 if (status) {
171 mlog_errno(status);
172 ret = ERR_PTR(status);
173 goto bail_unlock;
174 }
175 }
176
Mark Fashehccd979b2005-12-15 14:31:24 -0800177bail_unlock:
178 /* Don't drop the cluster lock until *after* the d_add --
179 * unlink on another node will message us to remove that
180 * dentry under this lock so otherwise we can race this with
Mark Fasheh34d024f2007-09-24 15:56:19 -0700181 * the downconvert thread and have a stale dentry. */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700182 ocfs2_inode_unlock(dir, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800183
184bail:
Mark Fashehccd979b2005-12-15 14:31:24 -0800185
186 mlog_exit_ptr(ret);
187
188 return ret;
189}
190
Tiger Yangf5d36202008-11-14 11:15:44 +0800191static struct inode *ocfs2_get_init_inode(struct inode *dir, int mode)
192{
193 struct inode *inode;
194
195 inode = new_inode(dir->i_sb);
196 if (!inode) {
197 mlog(ML_ERROR, "new_inode failed!\n");
198 return NULL;
199 }
200
201 /* populate as many fields early on as possible - many of
202 * these are used by the support functions here and in
203 * callers. */
204 if (S_ISDIR(mode))
205 inode->i_nlink = 2;
206 else
207 inode->i_nlink = 1;
208 inode->i_uid = current_fsuid();
209 if (dir->i_mode & S_ISGID) {
210 inode->i_gid = dir->i_gid;
211 if (S_ISDIR(mode))
212 mode |= S_ISGID;
213 } else
214 inode->i_gid = current_fsgid();
215 inode->i_mode = mode;
Jan Karaa90714c2008-10-09 19:38:40 +0200216 vfs_dq_init(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +0800217 return inode;
218}
219
Mark Fashehccd979b2005-12-15 14:31:24 -0800220static int ocfs2_mknod(struct inode *dir,
221 struct dentry *dentry,
222 int mode,
223 dev_t dev)
224{
225 int status = 0;
226 struct buffer_head *parent_fe_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700227 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800228 struct ocfs2_super *osb;
229 struct ocfs2_dinode *dirfe;
230 struct buffer_head *new_fe_bh = NULL;
231 struct buffer_head *de_bh = NULL;
232 struct inode *inode = NULL;
233 struct ocfs2_alloc_context *inode_ac = NULL;
234 struct ocfs2_alloc_context *data_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +0800235 struct ocfs2_alloc_context *xattr_ac = NULL;
236 int want_clusters = 0;
237 int xattr_credits = 0;
238 struct ocfs2_security_xattr_info si = {
239 .enable = 1,
240 };
Jan Karaa90714c2008-10-09 19:38:40 +0200241 int did_quota_inode = 0;
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
247 /* get our super block */
248 osb = OCFS2_SB(dir->i_sb);
249
Mark Fashehe63aecb62007-10-18 15:30:42 -0700250 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehe3a82132006-10-05 16:04:17 -0700251 if (status < 0) {
252 if (status != -ENOENT)
253 mlog_errno(status);
254 return status;
255 }
256
Mark Fasheha663e302006-08-09 11:45:07 -0700257 if (S_ISDIR(mode) && (dir->i_nlink >= OCFS2_LINK_MAX)) {
258 status = -EMLINK;
259 goto leave;
260 }
261
Mark Fashehccd979b2005-12-15 14:31:24 -0800262 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
263 if (!dirfe->i_links_count) {
264 /* can't make a file in a deleted directory. */
265 status = -ENOENT;
266 goto leave;
267 }
268
269 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
270 dentry->d_name.len);
271 if (status)
272 goto leave;
273
274 /* get a spot inside the dir. */
275 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
276 dentry->d_name.name,
277 dentry->d_name.len, &de_bh);
278 if (status < 0) {
279 mlog_errno(status);
280 goto leave;
281 }
282
283 /* reserve an inode spot */
Mark Fashehda5cbf22006-10-06 18:34:35 -0700284 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800285 if (status < 0) {
286 if (status != -ENOSPC)
287 mlog_errno(status);
288 goto leave;
289 }
290
Tiger Yangf5d36202008-11-14 11:15:44 +0800291 inode = ocfs2_get_init_inode(dir, mode);
292 if (!inode) {
293 status = -ENOMEM;
294 mlog_errno(status);
295 goto leave;
296 }
297
Tiger Yang534eadd2008-11-14 11:16:41 +0800298 /* get security xattr */
299 status = ocfs2_init_security_get(inode, dir, &si);
300 if (status) {
301 if (status == -EOPNOTSUPP)
302 si.enable = 0;
303 else {
304 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800305 goto leave;
306 }
307 }
308
Tiger Yang89c38bd2008-11-14 11:17:41 +0800309 /* calculate meta data/clusters for setting security and acl xattr */
310 status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode,
311 &si, &want_clusters,
312 &xattr_credits, &xattr_ac);
313 if (status < 0) {
314 mlog_errno(status);
315 goto leave;
Tiger Yang534eadd2008-11-14 11:16:41 +0800316 }
317
318 /* Reserve a cluster if creating an extent based directory. */
319 if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb))
320 want_clusters += 1;
321
322 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
323 if (status < 0) {
324 if (status != -ENOSPC)
325 mlog_errno(status);
326 goto leave;
327 }
328
Jan Karaa90714c2008-10-09 19:38:40 +0200329 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb) +
330 xattr_credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800331 if (IS_ERR(handle)) {
332 status = PTR_ERR(handle);
333 handle = NULL;
334 mlog_errno(status);
335 goto leave;
336 }
337
Jan Karaa90714c2008-10-09 19:38:40 +0200338 /* We don't use standard VFS wrapper because we don't want vfs_dq_init
339 * to be called. */
340 if (sb_any_quota_active(osb->sb) &&
341 osb->sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) {
342 status = -EDQUOT;
343 goto leave;
344 }
345 did_quota_inode = 1;
346
Mark Fashehccd979b2005-12-15 14:31:24 -0800347 /* do the real work now. */
Tiger Yangf5d36202008-11-14 11:15:44 +0800348 status = ocfs2_mknod_locked(osb, dir, inode, dentry, dev,
Mark Fashehccd979b2005-12-15 14:31:24 -0800349 &new_fe_bh, parent_fe_bh, handle,
Tiger Yangf5d36202008-11-14 11:15:44 +0800350 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800351 if (status < 0) {
352 mlog_errno(status);
353 goto leave;
354 }
355
356 if (S_ISDIR(mode)) {
357 status = ocfs2_fill_new_dir(osb, handle, dir, inode,
358 new_fe_bh, data_ac);
359 if (status < 0) {
360 mlog_errno(status);
361 goto leave;
362 }
363
Joel Becker13723d02008-10-17 19:25:01 -0700364 status = ocfs2_journal_access_di(handle, dir, parent_fe_bh,
365 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800366 if (status < 0) {
367 mlog_errno(status);
368 goto leave;
369 }
370 le16_add_cpu(&dirfe->i_links_count, 1);
371 status = ocfs2_journal_dirty(handle, parent_fe_bh);
372 if (status < 0) {
373 mlog_errno(status);
374 goto leave;
375 }
Dave Hansend8c76e62006-09-30 23:29:04 -0700376 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800377 }
378
Tiger Yang89c38bd2008-11-14 11:17:41 +0800379 status = ocfs2_init_acl(handle, inode, dir, new_fe_bh, parent_fe_bh,
380 xattr_ac, data_ac);
381 if (status < 0) {
382 mlog_errno(status);
383 goto leave;
384 }
385
Tiger Yang534eadd2008-11-14 11:16:41 +0800386 if (si.enable) {
387 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
388 xattr_ac, data_ac);
389 if (status < 0) {
390 mlog_errno(status);
391 goto leave;
392 }
393 }
394
Mark Fashehccd979b2005-12-15 14:31:24 -0800395 status = ocfs2_add_entry(handle, dentry, inode,
396 OCFS2_I(inode)->ip_blkno, parent_fe_bh,
397 de_bh);
398 if (status < 0) {
399 mlog_errno(status);
400 goto leave;
401 }
402
Mark Fasheh379dfe92006-09-08 14:21:03 -0700403 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700404 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700405 if (status) {
406 mlog_errno(status);
407 goto leave;
408 }
409
Mark Fashehccd979b2005-12-15 14:31:24 -0800410 insert_inode_hash(inode);
411 dentry->d_op = &ocfs2_dentry_ops;
412 d_instantiate(dentry, inode);
413 status = 0;
414leave:
Jan Karaa90714c2008-10-09 19:38:40 +0200415 if (status < 0 && did_quota_inode)
416 vfs_dq_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800417 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700418 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800419
Mark Fashehe63aecb62007-10-18 15:30:42 -0700420 ocfs2_inode_unlock(dir, 1);
Mark Fashehe3a82132006-10-05 16:04:17 -0700421
Mark Fashehccd979b2005-12-15 14:31:24 -0800422 if (status == -ENOSPC)
423 mlog(0, "Disk is full\n");
424
Mark Fasheha81cb882008-10-07 14:25:16 -0700425 brelse(new_fe_bh);
426 brelse(de_bh);
427 brelse(parent_fe_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +0800428 kfree(si.name);
429 kfree(si.value);
Mark Fashehccd979b2005-12-15 14:31:24 -0800430
Tiger Yangf5d36202008-11-14 11:15:44 +0800431 if ((status < 0) && inode) {
432 clear_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800433 iput(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +0800434 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800435
436 if (inode_ac)
437 ocfs2_free_alloc_context(inode_ac);
438
439 if (data_ac)
440 ocfs2_free_alloc_context(data_ac);
441
Tiger Yang534eadd2008-11-14 11:16:41 +0800442 if (xattr_ac)
443 ocfs2_free_alloc_context(xattr_ac);
444
Mark Fashehccd979b2005-12-15 14:31:24 -0800445 mlog_exit(status);
446
447 return status;
448}
449
450static int ocfs2_mknod_locked(struct ocfs2_super *osb,
451 struct inode *dir,
Tiger Yangf5d36202008-11-14 11:15:44 +0800452 struct inode *inode,
453 struct dentry *dentry,
Mark Fashehccd979b2005-12-15 14:31:24 -0800454 dev_t dev,
455 struct buffer_head **new_fe_bh,
456 struct buffer_head *parent_fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700457 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800458 struct ocfs2_alloc_context *inode_ac)
459{
460 int status = 0;
461 struct ocfs2_dinode *fe = NULL;
462 struct ocfs2_extent_list *fel;
463 u64 fe_blkno = 0;
464 u16 suballoc_bit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800465
Tiger Yangf5d36202008-11-14 11:15:44 +0800466 mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir, dentry,
467 inode->i_mode, (unsigned long)dev, dentry->d_name.len,
Mark Fashehccd979b2005-12-15 14:31:24 -0800468 dentry->d_name.name);
469
470 *new_fe_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800471
472 status = ocfs2_claim_new_inode(osb, handle, inode_ac, &suballoc_bit,
473 &fe_blkno);
474 if (status < 0) {
475 mlog_errno(status);
476 goto leave;
477 }
478
Mark Fashehccd979b2005-12-15 14:31:24 -0800479 /* populate as many fields early on as possible - many of
480 * these are used by the support functions here and in
481 * callers. */
482 inode->i_ino = ino_from_blkno(osb->sb, fe_blkno);
483 OCFS2_I(inode)->ip_blkno = fe_blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800484 spin_lock(&osb->osb_lock);
485 inode->i_generation = osb->s_next_generation++;
486 spin_unlock(&osb->osb_lock);
487
488 *new_fe_bh = sb_getblk(osb->sb, fe_blkno);
489 if (!*new_fe_bh) {
490 status = -EIO;
491 mlog_errno(status);
492 goto leave;
493 }
494 ocfs2_set_new_buffer_uptodate(inode, *new_fe_bh);
495
Joel Becker13723d02008-10-17 19:25:01 -0700496 status = ocfs2_journal_access_di(handle, inode, *new_fe_bh,
497 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800498 if (status < 0) {
499 mlog_errno(status);
500 goto leave;
501 }
502
503 fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data;
504 memset(fe, 0, osb->sb->s_blocksize);
505
506 fe->i_generation = cpu_to_le32(inode->i_generation);
507 fe->i_fs_generation = cpu_to_le32(osb->fs_generation);
508 fe->i_blkno = cpu_to_le64(fe_blkno);
509 fe->i_suballoc_bit = cpu_to_le16(suballoc_bit);
Tao Ma4d0ddb22008-03-05 16:11:46 +0800510 fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot);
Tiger Yangf5d36202008-11-14 11:15:44 +0800511 fe->i_uid = cpu_to_le32(inode->i_uid);
512 fe->i_gid = cpu_to_le32(inode->i_gid);
513 fe->i_mode = cpu_to_le16(inode->i_mode);
514 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
Mark Fashehccd979b2005-12-15 14:31:24 -0800515 fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev));
Mark Fashehccd979b2005-12-15 14:31:24 -0800516 fe->i_links_count = cpu_to_le16(inode->i_nlink);
517
518 fe->i_last_eb_blk = 0;
519 strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE);
520 le32_add_cpu(&fe->i_flags, OCFS2_VALID_FL);
521 fe->i_atime = fe->i_ctime = fe->i_mtime =
522 cpu_to_le64(CURRENT_TIME.tv_sec);
523 fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec =
524 cpu_to_le32(CURRENT_TIME.tv_nsec);
525 fe->i_dtime = 0;
526
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700527 /*
528 * If supported, directories start with inline data.
529 */
Tiger Yangf5d36202008-11-14 11:15:44 +0800530 if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) {
Mark Fasheh5b6a3a22007-09-13 16:33:54 -0700531 u16 feat = le16_to_cpu(fe->i_dyn_features);
532
533 fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL);
534
535 fe->id2.i_data.id_count = cpu_to_le16(ocfs2_max_inline_data(osb->sb));
536 } else {
537 fel = &fe->id2.i_list;
538 fel->l_tree_depth = 0;
539 fel->l_next_free_rec = 0;
540 fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb));
541 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800542
543 status = ocfs2_journal_dirty(handle, *new_fe_bh);
544 if (status < 0) {
545 mlog_errno(status);
546 goto leave;
547 }
548
Joel Beckerb657c952008-11-13 14:49:11 -0800549 ocfs2_populate_inode(inode, fe, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800550 ocfs2_inode_set_new(osb, inode);
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800551 if (!ocfs2_mount_local(osb)) {
552 status = ocfs2_create_new_inode_locks(inode);
553 if (status < 0)
554 mlog_errno(status);
555 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800556
557 status = 0; /* error in ocfs2_create_new_inode_locks is not
558 * critical */
559
Mark Fashehccd979b2005-12-15 14:31:24 -0800560leave:
561 if (status < 0) {
562 if (*new_fe_bh) {
563 brelse(*new_fe_bh);
564 *new_fe_bh = NULL;
565 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800566 }
567
568 mlog_exit(status);
569 return status;
570}
571
572static int ocfs2_mkdir(struct inode *dir,
573 struct dentry *dentry,
574 int mode)
575{
576 int ret;
577
578 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode,
579 dentry->d_name.len, dentry->d_name.name);
580 ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0);
581 mlog_exit(ret);
582
583 return ret;
584}
585
586static int ocfs2_create(struct inode *dir,
587 struct dentry *dentry,
588 int mode,
589 struct nameidata *nd)
590{
591 int ret;
592
593 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode,
594 dentry->d_name.len, dentry->d_name.name);
595 ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0);
596 mlog_exit(ret);
597
598 return ret;
599}
600
601static int ocfs2_link(struct dentry *old_dentry,
602 struct inode *dir,
603 struct dentry *dentry)
604{
Mark Fasheh1fabe142006-10-09 18:11:45 -0700605 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800606 struct inode *inode = old_dentry->d_inode;
607 int err;
608 struct buffer_head *fe_bh = NULL;
609 struct buffer_head *parent_fe_bh = NULL;
610 struct buffer_head *de_bh = NULL;
611 struct ocfs2_dinode *fe = NULL;
612 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
613
614 mlog_entry("(inode=%lu, old='%.*s' new='%.*s')\n", inode->i_ino,
615 old_dentry->d_name.len, old_dentry->d_name.name,
616 dentry->d_name.len, dentry->d_name.name);
617
Mark Fasheh123a9642006-10-05 16:48:23 -0700618 if (S_ISDIR(inode->i_mode))
619 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800620
Mark Fashehe63aecb62007-10-18 15:30:42 -0700621 err = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800622 if (err < 0) {
623 if (err != -ENOENT)
624 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700625 return err;
Mark Fashehccd979b2005-12-15 14:31:24 -0800626 }
627
Tiger Yang0f62de22006-08-31 20:39:47 -0700628 if (!dir->i_nlink) {
629 err = -ENOENT;
Mark Fasheh123a9642006-10-05 16:48:23 -0700630 goto out;
Tiger Yang0f62de22006-08-31 20:39:47 -0700631 }
632
Mark Fashehccd979b2005-12-15 14:31:24 -0800633 err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
634 dentry->d_name.len);
635 if (err)
Mark Fasheh123a9642006-10-05 16:48:23 -0700636 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800637
638 err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
639 dentry->d_name.name,
640 dentry->d_name.len, &de_bh);
641 if (err < 0) {
642 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700643 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800644 }
645
Mark Fashehe63aecb62007-10-18 15:30:42 -0700646 err = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800647 if (err < 0) {
648 if (err != -ENOENT)
649 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700650 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800651 }
652
653 fe = (struct ocfs2_dinode *) fe_bh->b_data;
654 if (le16_to_cpu(fe->i_links_count) >= OCFS2_LINK_MAX) {
655 err = -EMLINK;
Mark Fasheh123a9642006-10-05 16:48:23 -0700656 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800657 }
658
Jan Karaa90714c2008-10-09 19:38:40 +0200659 handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800660 if (IS_ERR(handle)) {
661 err = PTR_ERR(handle);
662 handle = NULL;
663 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700664 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800665 }
666
Joel Becker13723d02008-10-17 19:25:01 -0700667 err = ocfs2_journal_access_di(handle, inode, fe_bh,
668 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800669 if (err < 0) {
670 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700671 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800672 }
673
Dave Hansend8c76e62006-09-30 23:29:04 -0700674 inc_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800675 inode->i_ctime = CURRENT_TIME;
676 fe->i_links_count = cpu_to_le16(inode->i_nlink);
677 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
678 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
679
680 err = ocfs2_journal_dirty(handle, fe_bh);
681 if (err < 0) {
682 le16_add_cpu(&fe->i_links_count, -1);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700683 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800684 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700685 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800686 }
687
688 err = ocfs2_add_entry(handle, dentry, inode,
689 OCFS2_I(inode)->ip_blkno,
690 parent_fe_bh, de_bh);
691 if (err) {
692 le16_add_cpu(&fe->i_links_count, -1);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700693 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800694 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700695 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800696 }
697
Mark Fasheh0027dd52006-09-21 16:51:28 -0700698 err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700699 if (err) {
700 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700701 goto out_commit;
Mark Fasheh379dfe92006-09-08 14:21:03 -0700702 }
703
Mark Fashehccd979b2005-12-15 14:31:24 -0800704 atomic_inc(&inode->i_count);
705 dentry->d_op = &ocfs2_dentry_ops;
706 d_instantiate(dentry, inode);
Mark Fasheh123a9642006-10-05 16:48:23 -0700707
708out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700709 ocfs2_commit_trans(osb, handle);
Mark Fasheh123a9642006-10-05 16:48:23 -0700710out_unlock_inode:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700711 ocfs2_inode_unlock(inode, 1);
Mark Fasheh123a9642006-10-05 16:48:23 -0700712
713out:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700714 ocfs2_inode_unlock(dir, 1);
Mark Fasheh123a9642006-10-05 16:48:23 -0700715
Mark Fasheha81cb882008-10-07 14:25:16 -0700716 brelse(de_bh);
717 brelse(fe_bh);
718 brelse(parent_fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800719
720 mlog_exit(err);
721
722 return err;
723}
724
Mark Fasheh379dfe92006-09-08 14:21:03 -0700725/*
726 * Takes and drops an exclusive lock on the given dentry. This will
727 * force other nodes to drop it.
728 */
729static int ocfs2_remote_dentry_delete(struct dentry *dentry)
730{
731 int ret;
732
733 ret = ocfs2_dentry_lock(dentry, 1);
734 if (ret)
735 mlog_errno(ret);
736 else
737 ocfs2_dentry_unlock(dentry, 1);
738
739 return ret;
740}
741
Mark Fasheh17ff7852006-09-30 23:29:05 -0700742static inline int inode_is_unlinkable(struct inode *inode)
743{
744 if (S_ISDIR(inode->i_mode)) {
745 if (inode->i_nlink == 2)
746 return 1;
747 return 0;
748 }
749
750 if (inode->i_nlink == 1)
751 return 1;
752 return 0;
753}
754
Mark Fashehccd979b2005-12-15 14:31:24 -0800755static int ocfs2_unlink(struct inode *dir,
756 struct dentry *dentry)
757{
758 int status;
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700759 int child_locked = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800760 struct inode *inode = dentry->d_inode;
Mark Fasheh5098c272006-10-05 18:12:57 -0700761 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800762 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
763 u64 blkno;
764 struct ocfs2_dinode *fe = NULL;
765 struct buffer_head *fe_bh = NULL;
766 struct buffer_head *parent_node_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700767 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800768 struct ocfs2_dir_entry *dirent = NULL;
769 struct buffer_head *dirent_bh = NULL;
770 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
771 struct buffer_head *orphan_entry_bh = NULL;
772
773 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry,
774 dentry->d_name.len, dentry->d_name.name);
775
776 BUG_ON(dentry->d_parent->d_inode != dir);
777
Mark Fashehb06970532006-03-03 10:24:33 -0800778 mlog(0, "ino = %llu\n", (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800779
780 if (inode == osb->root_inode) {
781 mlog(0, "Cannot delete the root directory\n");
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700782 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800783 }
784
Mark Fashehe63aecb62007-10-18 15:30:42 -0700785 status = ocfs2_inode_lock(dir, &parent_node_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800786 if (status < 0) {
787 if (status != -ENOENT)
788 mlog_errno(status);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700789 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800790 }
791
792 status = ocfs2_find_files_on_disk(dentry->d_name.name,
793 dentry->d_name.len, &blkno,
794 dir, &dirent_bh, &dirent);
795 if (status < 0) {
796 if (status != -ENOENT)
797 mlog_errno(status);
798 goto leave;
799 }
800
801 if (OCFS2_I(inode)->ip_blkno != blkno) {
802 status = -ENOENT;
803
Mark Fashehb06970532006-03-03 10:24:33 -0800804 mlog(0, "ip_blkno %llu != dirent blkno %llu ip_flags = %x\n",
805 (unsigned long long)OCFS2_I(inode)->ip_blkno,
806 (unsigned long long)blkno, OCFS2_I(inode)->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800807 goto leave;
808 }
809
Mark Fashehe63aecb62007-10-18 15:30:42 -0700810 status = ocfs2_inode_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800811 if (status < 0) {
812 if (status != -ENOENT)
813 mlog_errno(status);
814 goto leave;
815 }
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700816 child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800817
818 if (S_ISDIR(inode->i_mode)) {
819 if (!ocfs2_empty_dir(inode)) {
820 status = -ENOTEMPTY;
821 goto leave;
822 } else if (inode->i_nlink != 2) {
823 status = -ENOTEMPTY;
824 goto leave;
825 }
826 }
827
Mark Fasheh379dfe92006-09-08 14:21:03 -0700828 status = ocfs2_remote_dentry_delete(dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -0800829 if (status < 0) {
Mark Fasheh34d024f2007-09-24 15:56:19 -0700830 /* This remote delete should succeed under all normal
Mark Fashehccd979b2005-12-15 14:31:24 -0800831 * circumstances. */
832 mlog_errno(status);
833 goto leave;
834 }
835
Mark Fasheh17ff7852006-09-30 23:29:05 -0700836 if (inode_is_unlinkable(inode)) {
Mark Fasheh5098c272006-10-05 18:12:57 -0700837 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, inode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800838 orphan_name,
839 &orphan_entry_bh);
840 if (status < 0) {
841 mlog_errno(status);
842 goto leave;
843 }
844 }
845
Jan Karaa90714c2008-10-09 19:38:40 +0200846 handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800847 if (IS_ERR(handle)) {
848 status = PTR_ERR(handle);
849 handle = NULL;
850 mlog_errno(status);
851 goto leave;
852 }
853
Joel Becker13723d02008-10-17 19:25:01 -0700854 status = ocfs2_journal_access_di(handle, inode, fe_bh,
855 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800856 if (status < 0) {
857 mlog_errno(status);
858 goto leave;
859 }
860
861 fe = (struct ocfs2_dinode *) fe_bh->b_data;
862
Mark Fasheh17ff7852006-09-30 23:29:05 -0700863 if (inode_is_unlinkable(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800864 status = ocfs2_orphan_add(osb, handle, inode, fe, orphan_name,
Mark Fasheh5098c272006-10-05 18:12:57 -0700865 orphan_entry_bh, orphan_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800866 if (status < 0) {
867 mlog_errno(status);
868 goto leave;
869 }
870 }
871
872 /* delete the name from the parent dir */
873 status = ocfs2_delete_entry(handle, dir, dirent, dirent_bh);
874 if (status < 0) {
875 mlog_errno(status);
876 goto leave;
877 }
878
Mark Fasheh17ff7852006-09-30 23:29:05 -0700879 if (S_ISDIR(inode->i_mode))
880 drop_nlink(inode);
881 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800882 fe->i_links_count = cpu_to_le16(inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800883
884 status = ocfs2_journal_dirty(handle, fe_bh);
885 if (status < 0) {
886 mlog_errno(status);
887 goto leave;
888 }
889
Mark Fasheh592282c2007-01-02 17:59:40 -0800890 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
891 if (S_ISDIR(inode->i_mode))
Mark Fasheh17ff7852006-09-30 23:29:05 -0700892 drop_nlink(dir);
Mark Fasheh592282c2007-01-02 17:59:40 -0800893
894 status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh);
895 if (status < 0) {
896 mlog_errno(status);
897 if (S_ISDIR(inode->i_mode))
Dave Hansend8c76e62006-09-30 23:29:04 -0700898 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800899 }
900
901leave:
Mark Fashehccd979b2005-12-15 14:31:24 -0800902 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700903 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800904
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700905 if (child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -0700906 ocfs2_inode_unlock(inode, 1);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700907
Mark Fashehe63aecb62007-10-18 15:30:42 -0700908 ocfs2_inode_unlock(dir, 1);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700909
Mark Fasheh5098c272006-10-05 18:12:57 -0700910 if (orphan_dir) {
911 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700912 ocfs2_inode_unlock(orphan_dir, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -0700913 mutex_unlock(&orphan_dir->i_mutex);
914 iput(orphan_dir);
915 }
916
Mark Fasheha81cb882008-10-07 14:25:16 -0700917 brelse(fe_bh);
918 brelse(dirent_bh);
919 brelse(parent_node_bh);
920 brelse(orphan_entry_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800921
922 mlog_exit(status);
923
924 return status;
925}
926
927/*
928 * The only place this should be used is rename!
929 * if they have the same id, then the 1st one is the only one locked.
930 */
931static int ocfs2_double_lock(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -0800932 struct buffer_head **bh1,
933 struct inode *inode1,
934 struct buffer_head **bh2,
935 struct inode *inode2)
936{
937 int status;
938 struct ocfs2_inode_info *oi1 = OCFS2_I(inode1);
939 struct ocfs2_inode_info *oi2 = OCFS2_I(inode2);
940 struct buffer_head **tmpbh;
941 struct inode *tmpinode;
942
Mark Fashehb06970532006-03-03 10:24:33 -0800943 mlog_entry("(inode1 = %llu, inode2 = %llu)\n",
944 (unsigned long long)oi1->ip_blkno,
945 (unsigned long long)oi2->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800946
Mark Fashehccd979b2005-12-15 14:31:24 -0800947 if (*bh1)
948 *bh1 = NULL;
949 if (*bh2)
950 *bh2 = NULL;
951
952 /* we always want to lock the one with the lower lockid first. */
953 if (oi1->ip_blkno != oi2->ip_blkno) {
954 if (oi1->ip_blkno < oi2->ip_blkno) {
955 /* switch id1 and id2 around */
956 mlog(0, "switching them around...\n");
957 tmpbh = bh2;
958 bh2 = bh1;
959 bh1 = tmpbh;
960
961 tmpinode = inode2;
962 inode2 = inode1;
963 inode1 = tmpinode;
964 }
965 /* lock id2 */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700966 status = ocfs2_inode_lock(inode2, bh2, 1);
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 */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700975 status = ocfs2_inode_lock(inode1, bh1, 1);
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 Fasheh8d5596c2006-10-06 15:04:51 -07001006 int status = 0, rename_lock = 0, parents_locked = 0;
1007 int old_child_locked = 0, new_child_locked = 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];
1013 struct buffer_head *orphan_entry_bh = NULL;
1014 struct buffer_head *newfe_bh = NULL;
Mark Fasheh592282c2007-01-02 17:59:40 -08001015 struct buffer_head *old_inode_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001016 struct buffer_head *insert_entry_bh = NULL;
1017 struct ocfs2_super *osb = NULL;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001018 u64 newfe_blkno, old_de_ino;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001019 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001020 struct buffer_head *old_dir_bh = NULL;
1021 struct buffer_head *new_dir_bh = NULL;
Mark Fasheh38760e22007-09-11 17:21:56 -07001022 struct ocfs2_dir_entry *old_inode_dot_dot_de = NULL, *old_de = NULL,
1023 *new_de = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001024 struct buffer_head *new_de_bh = NULL, *old_de_bh = NULL; // bhs for above
1025 struct buffer_head *old_inode_de_bh = NULL; // if old_dentry is a dir,
1026 // this is the 1st dirent bh
Mark Fasheh592282c2007-01-02 17:59:40 -08001027 nlink_t old_dir_nlink = old_dir->i_nlink;
Sunil Mushran480214d2007-08-06 15:11:56 -07001028 struct ocfs2_dinode *old_di;
Mark Fashehccd979b2005-12-15 14:31:24 -08001029
1030 /* At some point it might be nice to break this function up a
1031 * bit. */
1032
1033 mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p, from='%.*s' to='%.*s')\n",
1034 old_dir, old_dentry, new_dir, new_dentry,
1035 old_dentry->d_name.len, old_dentry->d_name.name,
1036 new_dentry->d_name.len, new_dentry->d_name.name);
1037
1038 osb = OCFS2_SB(old_dir->i_sb);
1039
1040 if (new_inode) {
1041 if (!igrab(new_inode))
1042 BUG();
1043 }
1044
Uwe Kleine-König1b3c3712007-02-17 19:23:03 +01001045 /* Assume a directory hierarchy thusly:
Mark Fashehccd979b2005-12-15 14:31:24 -08001046 * a/b/c
1047 * a/d
1048 * a,b,c, and d are all directories.
1049 *
1050 * from cwd of 'a' on both nodes:
1051 * node1: mv b/c d
1052 * node2: mv d b/c
1053 *
1054 * And that's why, just like the VFS, we need a file system
1055 * rename lock. */
Jan Kara5dabd692008-02-21 18:00:00 +01001056 if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001057 status = ocfs2_rename_lock(osb);
1058 if (status < 0) {
1059 mlog_errno(status);
1060 goto bail;
1061 }
1062 rename_lock = 1;
1063 }
1064
Mark Fashehccd979b2005-12-15 14:31:24 -08001065 /* if old and new are the same, this'll just do one lock. */
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001066 status = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
1067 &new_dir_bh, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001068 if (status < 0) {
1069 mlog_errno(status);
1070 goto bail;
1071 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001072 parents_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001073
1074 /* make sure both dirs have bhs
1075 * get an extra ref on old_dir_bh if old==new */
1076 if (!new_dir_bh) {
1077 if (old_dir_bh) {
1078 new_dir_bh = old_dir_bh;
1079 get_bh(new_dir_bh);
1080 } else {
1081 mlog(ML_ERROR, "no old_dir_bh!\n");
1082 status = -EIO;
1083 goto bail;
1084 }
1085 }
1086
Mark Fasheh379dfe92006-09-08 14:21:03 -07001087 /*
Mark Fasheh592282c2007-01-02 17:59:40 -08001088 * Aside from allowing a meta data update, the locking here
Mark Fasheh34d024f2007-09-24 15:56:19 -07001089 * also ensures that the downconvert thread on other nodes
1090 * won't have to concurrently downconvert the inode and the
1091 * dentry locks.
Mark Fasheh379dfe92006-09-08 14:21:03 -07001092 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001093 status = ocfs2_inode_lock(old_inode, &old_inode_bh, 1);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001094 if (status < 0) {
1095 if (status != -ENOENT)
Mark Fashehccd979b2005-12-15 14:31:24 -08001096 mlog_errno(status);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001097 goto bail;
1098 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001099 old_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001100
Mark Fasheh379dfe92006-09-08 14:21:03 -07001101 status = ocfs2_remote_dentry_delete(old_dentry);
1102 if (status < 0) {
1103 mlog_errno(status);
1104 goto bail;
1105 }
1106
1107 if (S_ISDIR(old_inode->i_mode)) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001108 u64 old_inode_parent;
Mark Fashehccd979b2005-12-15 14:31:24 -08001109
Mark Fasheh38760e22007-09-11 17:21:56 -07001110 status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent,
1111 old_inode, &old_inode_de_bh,
1112 &old_inode_dot_dot_de);
1113 if (status) {
1114 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001115 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001116 }
1117
1118 if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) {
1119 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001120 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001121 }
1122
1123 if (!new_inode && new_dir != old_dir &&
1124 new_dir->i_nlink >= OCFS2_LINK_MAX) {
1125 status = -EMLINK;
1126 goto bail;
1127 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001128 }
1129
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001130 status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
1131 old_dentry->d_name.len,
1132 &old_de_ino);
1133 if (status) {
1134 status = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -08001135 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001136 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001137
1138 /*
1139 * Check for inode number is _not_ due to possible IO errors.
1140 * We might rmdir the source, keep it as pwd of some process
1141 * and merrily kill the link to whatever was created under the
1142 * same name. Goodbye sticky bit ;-<
1143 */
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001144 if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) {
1145 status = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -08001146 goto bail;
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001147 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001148
1149 /* check if the target already exists (in which case we need
1150 * to delete it */
1151 status = ocfs2_find_files_on_disk(new_dentry->d_name.name,
1152 new_dentry->d_name.len,
1153 &newfe_blkno, new_dir, &new_de_bh,
1154 &new_de);
1155 /* The only error we allow here is -ENOENT because the new
1156 * file not existing is perfectly valid. */
1157 if ((status < 0) && (status != -ENOENT)) {
1158 /* If we cannot find the file specified we should just */
1159 /* return the error... */
1160 mlog_errno(status);
1161 goto bail;
1162 }
1163
Srinivas Eedae325a882007-10-31 16:49:43 -07001164 if (!new_de && new_inode) {
1165 /*
1166 * Target was unlinked by another node while we were
1167 * waiting to get to ocfs2_rename(). There isn't
1168 * anything we can do here to help the situation, so
1169 * bubble up the appropriate error.
1170 */
1171 status = -ENOENT;
1172 goto bail;
1173 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001174
1175 /* In case we need to overwrite an existing file, we blow it
1176 * away first */
1177 if (new_de) {
1178 /* VFS didn't think there existed an inode here, but
1179 * someone else in the cluster must have raced our
1180 * rename to create one. Today we error cleanly, in
1181 * the future we should consider calling iget to build
1182 * a new struct inode for this entry. */
1183 if (!new_inode) {
1184 status = -EACCES;
1185
1186 mlog(0, "We found an inode for name %.*s but VFS "
1187 "didn't give us one.\n", new_dentry->d_name.len,
1188 new_dentry->d_name.name);
1189 goto bail;
1190 }
1191
1192 if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) {
1193 status = -EACCES;
1194
Mark Fashehb06970532006-03-03 10:24:33 -08001195 mlog(0, "Inode %llu and dir %llu disagree. flags = %x\n",
1196 (unsigned long long)OCFS2_I(new_inode)->ip_blkno,
1197 (unsigned long long)newfe_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08001198 OCFS2_I(new_inode)->ip_flags);
1199 goto bail;
1200 }
1201
Mark Fashehe63aecb62007-10-18 15:30:42 -07001202 status = ocfs2_inode_lock(new_inode, &newfe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001203 if (status < 0) {
1204 if (status != -ENOENT)
1205 mlog_errno(status);
1206 goto bail;
1207 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001208 new_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001209
Mark Fasheh379dfe92006-09-08 14:21:03 -07001210 status = ocfs2_remote_dentry_delete(new_dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -08001211 if (status < 0) {
1212 mlog_errno(status);
1213 goto bail;
1214 }
1215
1216 newfe = (struct ocfs2_dinode *) newfe_bh->b_data;
1217
Mark Fashehb06970532006-03-03 10:24:33 -08001218 mlog(0, "aha rename over existing... new_de=%p new_blkno=%llu "
1219 "newfebh=%p bhblocknr=%llu\n", new_de,
1220 (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ?
Mark Fashehccd979b2005-12-15 14:31:24 -08001221 (unsigned long long)newfe_bh->b_blocknr : 0ULL);
1222
1223 if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) {
Mark Fasheh5098c272006-10-05 18:12:57 -07001224 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
Mark Fashehccd979b2005-12-15 14:31:24 -08001225 new_inode,
1226 orphan_name,
1227 &orphan_entry_bh);
1228 if (status < 0) {
1229 mlog_errno(status);
1230 goto bail;
1231 }
1232 }
1233 } else {
1234 BUG_ON(new_dentry->d_parent->d_inode != new_dir);
1235
1236 status = ocfs2_check_dir_for_entry(new_dir,
1237 new_dentry->d_name.name,
1238 new_dentry->d_name.len);
1239 if (status)
1240 goto bail;
1241
1242 status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh,
1243 new_dentry->d_name.name,
1244 new_dentry->d_name.len,
1245 &insert_entry_bh);
1246 if (status < 0) {
1247 mlog_errno(status);
1248 goto bail;
1249 }
1250 }
1251
Jan Karaa90714c2008-10-09 19:38:40 +02001252 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001253 if (IS_ERR(handle)) {
1254 status = PTR_ERR(handle);
1255 handle = NULL;
1256 mlog_errno(status);
1257 goto bail;
1258 }
1259
1260 if (new_de) {
1261 if (S_ISDIR(new_inode->i_mode)) {
1262 if (!ocfs2_empty_dir(new_inode) ||
1263 new_inode->i_nlink != 2) {
1264 status = -ENOTEMPTY;
1265 goto bail;
1266 }
1267 }
Joel Becker13723d02008-10-17 19:25:01 -07001268 status = ocfs2_journal_access_di(handle, new_inode, newfe_bh,
1269 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001270 if (status < 0) {
1271 mlog_errno(status);
1272 goto bail;
1273 }
1274
1275 if (S_ISDIR(new_inode->i_mode) ||
1276 (newfe->i_links_count == cpu_to_le16(1))){
1277 status = ocfs2_orphan_add(osb, handle, new_inode,
1278 newfe, orphan_name,
Mark Fasheh5098c272006-10-05 18:12:57 -07001279 orphan_entry_bh, orphan_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001280 if (status < 0) {
1281 mlog_errno(status);
1282 goto bail;
1283 }
1284 }
1285
1286 /* change the dirent to point to the correct inode */
Mark Fasheh38760e22007-09-11 17:21:56 -07001287 status = ocfs2_update_entry(new_dir, handle, new_de_bh,
1288 new_de, old_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001289 if (status < 0) {
1290 mlog_errno(status);
1291 goto bail;
1292 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001293 new_dir->i_version++;
Mark Fashehccd979b2005-12-15 14:31:24 -08001294
1295 if (S_ISDIR(new_inode->i_mode))
1296 newfe->i_links_count = 0;
1297 else
1298 le16_add_cpu(&newfe->i_links_count, -1);
1299
1300 status = ocfs2_journal_dirty(handle, newfe_bh);
1301 if (status < 0) {
1302 mlog_errno(status);
1303 goto bail;
1304 }
1305 } 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,
1309 new_dir_bh, insert_entry_bh);
1310 }
1311
1312 old_inode->i_ctime = CURRENT_TIME;
1313 mark_inode_dirty(old_inode);
Sunil Mushran480214d2007-08-06 15:11:56 -07001314
Joel Becker13723d02008-10-17 19:25:01 -07001315 status = ocfs2_journal_access_di(handle, old_inode, old_inode_bh,
1316 OCFS2_JOURNAL_ACCESS_WRITE);
Sunil Mushran480214d2007-08-06 15:11:56 -07001317 if (status >= 0) {
1318 old_di = (struct ocfs2_dinode *) old_inode_bh->b_data;
1319
1320 old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec);
1321 old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec);
1322
1323 status = ocfs2_journal_dirty(handle, old_inode_bh);
1324 if (status < 0)
1325 mlog_errno(status);
1326 } else
1327 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001328
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07001329 /*
1330 * Now that the name has been added to new_dir, remove the old name.
1331 *
1332 * We don't keep any directory entry context around until now
1333 * because the insert might have changed the type of directory
1334 * we're dealing with.
1335 */
1336 old_de_bh = ocfs2_find_entry(old_dentry->d_name.name,
1337 old_dentry->d_name.len,
1338 old_dir, &old_de);
1339 if (!old_de_bh) {
1340 status = -EIO;
1341 goto bail;
1342 }
1343
Mark Fashehccd979b2005-12-15 14:31:24 -08001344 status = ocfs2_delete_entry(handle, old_dir, old_de, old_de_bh);
1345 if (status < 0) {
1346 mlog_errno(status);
1347 goto bail;
1348 }
1349
1350 if (new_inode) {
1351 new_inode->i_nlink--;
1352 new_inode->i_ctime = CURRENT_TIME;
1353 }
1354 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME;
1355 if (old_inode_de_bh) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001356 status = ocfs2_update_entry(old_inode, handle, old_inode_de_bh,
1357 old_inode_dot_dot_de, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001358 old_dir->i_nlink--;
1359 if (new_inode) {
1360 new_inode->i_nlink--;
1361 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001362 inc_nlink(new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001363 mark_inode_dirty(new_dir);
1364 }
1365 }
1366 mark_inode_dirty(old_dir);
Mark Fasheh592282c2007-01-02 17:59:40 -08001367 ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh);
1368 if (new_inode) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001369 mark_inode_dirty(new_inode);
Mark Fasheh592282c2007-01-02 17:59:40 -08001370 ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh);
1371 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001372
Mark Fasheh592282c2007-01-02 17:59:40 -08001373 if (old_dir != new_dir) {
1374 /* Keep the same times on both directories.*/
1375 new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime;
1376
1377 /*
1378 * This will also pick up the i_nlink change from the
1379 * block above.
1380 */
1381 ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh);
1382 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001383
1384 if (old_dir_nlink != old_dir->i_nlink) {
1385 if (!old_dir_bh) {
1386 mlog(ML_ERROR, "need to change nlink for old dir "
Mark Fashehb06970532006-03-03 10:24:33 -08001387 "%llu from %d to %d but bh is NULL!\n",
1388 (unsigned long long)OCFS2_I(old_dir)->ip_blkno,
1389 (int)old_dir_nlink, old_dir->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001390 } else {
1391 struct ocfs2_dinode *fe;
Joel Becker13723d02008-10-17 19:25:01 -07001392 status = ocfs2_journal_access_di(handle, old_dir,
1393 old_dir_bh,
1394 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001395 fe = (struct ocfs2_dinode *) old_dir_bh->b_data;
1396 fe->i_links_count = cpu_to_le16(old_dir->i_nlink);
1397 status = ocfs2_journal_dirty(handle, old_dir_bh);
1398 }
1399 }
1400
Mark Fasheh379dfe92006-09-08 14:21:03 -07001401 ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001402 status = 0;
1403bail:
1404 if (rename_lock)
1405 ocfs2_rename_unlock(osb);
1406
1407 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001408 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001409
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001410 if (parents_locked)
1411 ocfs2_double_unlock(old_dir, new_dir);
1412
1413 if (old_child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001414 ocfs2_inode_unlock(old_inode, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001415
1416 if (new_child_locked)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001417 ocfs2_inode_unlock(new_inode, 1);
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001418
Mark Fasheh5098c272006-10-05 18:12:57 -07001419 if (orphan_dir) {
1420 /* This was locked for us in ocfs2_prepare_orphan_dir() */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001421 ocfs2_inode_unlock(orphan_dir, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -07001422 mutex_unlock(&orphan_dir->i_mutex);
1423 iput(orphan_dir);
1424 }
1425
Mark Fashehccd979b2005-12-15 14:31:24 -08001426 if (new_inode)
1427 sync_mapping_buffers(old_inode->i_mapping);
1428
1429 if (new_inode)
1430 iput(new_inode);
Mark Fasheha81cb882008-10-07 14:25:16 -07001431 brelse(newfe_bh);
1432 brelse(old_inode_bh);
1433 brelse(old_dir_bh);
1434 brelse(new_dir_bh);
1435 brelse(new_de_bh);
1436 brelse(old_de_bh);
1437 brelse(old_inode_de_bh);
1438 brelse(orphan_entry_bh);
1439 brelse(insert_entry_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001440
1441 mlog_exit(status);
1442
1443 return status;
1444}
1445
1446/*
1447 * we expect i_size = strlen(symname). Copy symname into the file
1448 * data, including the null terminator.
1449 */
1450static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001451 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001452 struct inode *inode,
1453 const char *symname)
1454{
1455 struct buffer_head **bhs = NULL;
1456 const char *c;
1457 struct super_block *sb = osb->sb;
Mark Fasheh4f902c32007-03-09 16:26:50 -08001458 u64 p_blkno, p_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -08001459 int virtual, blocks, status, i, bytes_left;
1460
1461 bytes_left = i_size_read(inode) + 1;
1462 /* we can't trust i_blocks because we're actually going to
1463 * write i_size + 1 bytes. */
1464 blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
1465
Andrew Morton5515eff2006-03-26 01:37:53 -08001466 mlog_entry("i_blocks = %llu, i_size = %llu, blocks = %d\n",
1467 (unsigned long long)inode->i_blocks,
1468 i_size_read(inode), blocks);
Mark Fashehccd979b2005-12-15 14:31:24 -08001469
1470 /* Sanity check -- make sure we're going to fit. */
1471 if (bytes_left >
1472 ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) {
1473 status = -EIO;
1474 mlog_errno(status);
1475 goto bail;
1476 }
1477
1478 bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL);
1479 if (!bhs) {
1480 status = -ENOMEM;
1481 mlog_errno(status);
1482 goto bail;
1483 }
1484
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001485 status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks,
1486 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001487 if (status < 0) {
1488 mlog_errno(status);
1489 goto bail;
1490 }
1491
1492 /* links can never be larger than one cluster so we know this
1493 * is all going to be contiguous, but do a sanity check
1494 * anyway. */
1495 if ((p_blocks << sb->s_blocksize_bits) < bytes_left) {
1496 status = -EIO;
1497 mlog_errno(status);
1498 goto bail;
1499 }
1500
1501 virtual = 0;
1502 while(bytes_left > 0) {
1503 c = &symname[virtual * sb->s_blocksize];
1504
1505 bhs[virtual] = sb_getblk(sb, p_blkno);
1506 if (!bhs[virtual]) {
1507 status = -ENOMEM;
1508 mlog_errno(status);
1509 goto bail;
1510 }
1511 ocfs2_set_new_buffer_uptodate(inode, bhs[virtual]);
1512
1513 status = ocfs2_journal_access(handle, inode, bhs[virtual],
1514 OCFS2_JOURNAL_ACCESS_CREATE);
1515 if (status < 0) {
1516 mlog_errno(status);
1517 goto bail;
1518 }
1519
1520 memset(bhs[virtual]->b_data, 0, sb->s_blocksize);
1521
1522 memcpy(bhs[virtual]->b_data, c,
1523 (bytes_left > sb->s_blocksize) ? sb->s_blocksize :
1524 bytes_left);
1525
1526 status = ocfs2_journal_dirty(handle, bhs[virtual]);
1527 if (status < 0) {
1528 mlog_errno(status);
1529 goto bail;
1530 }
1531
1532 virtual++;
1533 p_blkno++;
1534 bytes_left -= sb->s_blocksize;
1535 }
1536
1537 status = 0;
1538bail:
1539
1540 if (bhs) {
1541 for(i = 0; i < blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001542 brelse(bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001543 kfree(bhs);
1544 }
1545
1546 mlog_exit(status);
1547 return status;
1548}
1549
1550static int ocfs2_symlink(struct inode *dir,
1551 struct dentry *dentry,
1552 const char *symname)
1553{
1554 int status, l, credits;
1555 u64 newsize;
1556 struct ocfs2_super *osb = NULL;
1557 struct inode *inode = NULL;
1558 struct super_block *sb;
1559 struct buffer_head *new_fe_bh = NULL;
1560 struct buffer_head *de_bh = NULL;
1561 struct buffer_head *parent_fe_bh = NULL;
1562 struct ocfs2_dinode *fe = NULL;
1563 struct ocfs2_dinode *dirfe;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001564 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001565 struct ocfs2_alloc_context *inode_ac = NULL;
1566 struct ocfs2_alloc_context *data_ac = NULL;
Tiger Yang534eadd2008-11-14 11:16:41 +08001567 struct ocfs2_alloc_context *xattr_ac = NULL;
1568 int want_clusters = 0;
1569 int xattr_credits = 0;
1570 struct ocfs2_security_xattr_info si = {
1571 .enable = 1,
1572 };
Jan Karaa90714c2008-10-09 19:38:40 +02001573 int did_quota = 0, did_quota_inode = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001574
1575 mlog_entry("(0x%p, 0x%p, symname='%s' actual='%.*s')\n", dir,
1576 dentry, symname, dentry->d_name.len, dentry->d_name.name);
1577
1578 sb = dir->i_sb;
1579 osb = OCFS2_SB(sb);
1580
1581 l = strlen(symname) + 1;
1582
1583 credits = ocfs2_calc_symlink_credits(sb);
1584
Mark Fashehccd979b2005-12-15 14:31:24 -08001585 /* lock the parent directory */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001586 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001587 if (status < 0) {
1588 if (status != -ENOENT)
1589 mlog_errno(status);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001590 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001591 }
1592
1593 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
1594 if (!dirfe->i_links_count) {
1595 /* can't make a file in a deleted directory. */
1596 status = -ENOENT;
1597 goto bail;
1598 }
1599
1600 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
1601 dentry->d_name.len);
1602 if (status)
1603 goto bail;
1604
1605 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
1606 dentry->d_name.name,
1607 dentry->d_name.len, &de_bh);
1608 if (status < 0) {
1609 mlog_errno(status);
1610 goto bail;
1611 }
1612
Mark Fashehda5cbf22006-10-06 18:34:35 -07001613 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001614 if (status < 0) {
1615 if (status != -ENOSPC)
1616 mlog_errno(status);
1617 goto bail;
1618 }
1619
Tiger Yangf5d36202008-11-14 11:15:44 +08001620 inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO);
1621 if (!inode) {
1622 status = -ENOMEM;
1623 mlog_errno(status);
1624 goto bail;
1625 }
1626
Tiger Yang534eadd2008-11-14 11:16:41 +08001627 /* get security xattr */
1628 status = ocfs2_init_security_get(inode, dir, &si);
1629 if (status) {
1630 if (status == -EOPNOTSUPP)
1631 si.enable = 0;
1632 else {
1633 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001634 goto bail;
1635 }
1636 }
1637
Tiger Yang534eadd2008-11-14 11:16:41 +08001638 /* calculate meta data/clusters for setting security xattr */
1639 if (si.enable) {
1640 status = ocfs2_calc_security_init(dir, &si, &want_clusters,
1641 &xattr_credits, &xattr_ac);
1642 if (status < 0) {
1643 mlog_errno(status);
1644 goto bail;
1645 }
1646 }
1647
1648 /* don't reserve bitmap space for fast symlinks. */
1649 if (l > ocfs2_fast_symlink_chars(sb))
1650 want_clusters += 1;
1651
1652 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
1653 if (status < 0) {
1654 if (status != -ENOSPC)
1655 mlog_errno(status);
1656 goto bail;
1657 }
1658
1659 handle = ocfs2_start_trans(osb, credits + xattr_credits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001660 if (IS_ERR(handle)) {
1661 status = PTR_ERR(handle);
1662 handle = NULL;
1663 mlog_errno(status);
1664 goto bail;
1665 }
1666
Jan Karaa90714c2008-10-09 19:38:40 +02001667 /* We don't use standard VFS wrapper because we don't want vfs_dq_init
1668 * to be called. */
1669 if (sb_any_quota_active(osb->sb) &&
1670 osb->sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) {
1671 status = -EDQUOT;
1672 goto bail;
1673 }
1674 did_quota_inode = 1;
1675
Tiger Yangf5d36202008-11-14 11:15:44 +08001676 status = ocfs2_mknod_locked(osb, dir, inode, dentry,
1677 0, &new_fe_bh, parent_fe_bh, handle,
1678 inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001679 if (status < 0) {
1680 mlog_errno(status);
1681 goto bail;
1682 }
1683
1684 fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
1685 inode->i_rdev = 0;
1686 newsize = l - 1;
1687 if (l > ocfs2_fast_symlink_chars(sb)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08001688 u32 offset = 0;
1689
Mark Fashehccd979b2005-12-15 14:31:24 -08001690 inode->i_op = &ocfs2_symlink_inode_operations;
Jan Karaa90714c2008-10-09 19:38:40 +02001691 if (vfs_dq_alloc_space_nodirty(inode,
1692 ocfs2_clusters_to_bytes(osb->sb, 1))) {
1693 status = -EDQUOT;
1694 goto bail;
1695 }
1696 did_quota = 1;
Tao Ma0eb8d472008-08-18 17:38:45 +08001697 status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0,
1698 new_fe_bh,
1699 handle, data_ac, NULL,
1700 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001701 if (status < 0) {
1702 if (status != -ENOSPC && status != -EINTR) {
Mark Fashehb06970532006-03-03 10:24:33 -08001703 mlog(ML_ERROR,
1704 "Failed to extend file to %llu\n",
1705 (unsigned long long)newsize);
Mark Fashehccd979b2005-12-15 14:31:24 -08001706 mlog_errno(status);
1707 status = -ENOSPC;
1708 }
1709 goto bail;
1710 }
1711 i_size_write(inode, newsize);
Mark Fasheh8110b072007-03-22 16:53:23 -07001712 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001713 } else {
1714 inode->i_op = &ocfs2_fast_symlink_inode_operations;
1715 memcpy((char *) fe->id2.i_symlink, symname, l);
1716 i_size_write(inode, newsize);
1717 inode->i_blocks = 0;
1718 }
1719
1720 status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh);
1721 if (status < 0) {
1722 mlog_errno(status);
1723 goto bail;
1724 }
1725
1726 if (!ocfs2_inode_is_fast_symlink(inode)) {
1727 status = ocfs2_create_symlink_data(osb, handle, inode,
1728 symname);
1729 if (status < 0) {
1730 mlog_errno(status);
1731 goto bail;
1732 }
1733 }
1734
Tiger Yang534eadd2008-11-14 11:16:41 +08001735 if (si.enable) {
1736 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
1737 xattr_ac, data_ac);
1738 if (status < 0) {
1739 mlog_errno(status);
1740 goto bail;
1741 }
1742 }
1743
Mark Fashehccd979b2005-12-15 14:31:24 -08001744 status = ocfs2_add_entry(handle, dentry, inode,
1745 le64_to_cpu(fe->i_blkno), parent_fe_bh,
1746 de_bh);
1747 if (status < 0) {
1748 mlog_errno(status);
1749 goto bail;
1750 }
1751
Mark Fasheh0027dd52006-09-21 16:51:28 -07001752 status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001753 if (status) {
1754 mlog_errno(status);
1755 goto bail;
1756 }
1757
Mark Fashehccd979b2005-12-15 14:31:24 -08001758 insert_inode_hash(inode);
1759 dentry->d_op = &ocfs2_dentry_ops;
1760 d_instantiate(dentry, inode);
1761bail:
Jan Karaa90714c2008-10-09 19:38:40 +02001762 if (status < 0 && did_quota)
1763 vfs_dq_free_space_nodirty(inode,
1764 ocfs2_clusters_to_bytes(osb->sb, 1));
1765 if (status < 0 && did_quota_inode)
1766 vfs_dq_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001767 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001768 ocfs2_commit_trans(osb, handle);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001769
Mark Fashehe63aecb62007-10-18 15:30:42 -07001770 ocfs2_inode_unlock(dir, 1);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001771
Mark Fasheha81cb882008-10-07 14:25:16 -07001772 brelse(new_fe_bh);
1773 brelse(parent_fe_bh);
1774 brelse(de_bh);
Tiger Yang534eadd2008-11-14 11:16:41 +08001775 kfree(si.name);
1776 kfree(si.value);
Mark Fashehccd979b2005-12-15 14:31:24 -08001777 if (inode_ac)
1778 ocfs2_free_alloc_context(inode_ac);
1779 if (data_ac)
1780 ocfs2_free_alloc_context(data_ac);
Tiger Yang534eadd2008-11-14 11:16:41 +08001781 if (xattr_ac)
1782 ocfs2_free_alloc_context(xattr_ac);
Tiger Yangf5d36202008-11-14 11:15:44 +08001783 if ((status < 0) && inode) {
1784 clear_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001785 iput(inode);
Tiger Yangf5d36202008-11-14 11:15:44 +08001786 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001787
1788 mlog_exit(status);
1789
1790 return status;
1791}
1792
Mark Fashehccd979b2005-12-15 14:31:24 -08001793static int ocfs2_blkno_stringify(u64 blkno, char *name)
1794{
1795 int status, namelen;
1796
1797 mlog_entry_void();
1798
Mark Fashehb06970532006-03-03 10:24:33 -08001799 namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx",
1800 (long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001801 if (namelen <= 0) {
1802 if (namelen)
1803 status = namelen;
1804 else
1805 status = -EINVAL;
1806 mlog_errno(status);
1807 goto bail;
1808 }
1809 if (namelen != OCFS2_ORPHAN_NAMELEN) {
1810 status = -EINVAL;
1811 mlog_errno(status);
1812 goto bail;
1813 }
1814
1815 mlog(0, "built filename '%s' for orphan dir (len=%d)\n", name,
1816 namelen);
1817
1818 status = 0;
1819bail:
1820 mlog_exit(status);
1821 return status;
1822}
1823
1824static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -07001825 struct inode **ret_orphan_dir,
Mark Fashehccd979b2005-12-15 14:31:24 -08001826 struct inode *inode,
1827 char *name,
1828 struct buffer_head **de_bh)
1829{
Mark Fasheh5098c272006-10-05 18:12:57 -07001830 struct inode *orphan_dir_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08001831 struct buffer_head *orphan_dir_bh = NULL;
1832 int status = 0;
1833
1834 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
1835 if (status < 0) {
1836 mlog_errno(status);
Mark Fasheh5098c272006-10-05 18:12:57 -07001837 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001838 }
1839
1840 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
1841 ORPHAN_DIR_SYSTEM_INODE,
1842 osb->slot_num);
1843 if (!orphan_dir_inode) {
1844 status = -ENOENT;
1845 mlog_errno(status);
Mark Fasheh5098c272006-10-05 18:12:57 -07001846 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001847 }
1848
Mark Fasheh5098c272006-10-05 18:12:57 -07001849 mutex_lock(&orphan_dir_inode->i_mutex);
1850
Mark Fashehe63aecb62007-10-18 15:30:42 -07001851 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001852 if (status < 0) {
1853 mlog_errno(status);
1854 goto leave;
1855 }
1856
1857 status = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode,
1858 orphan_dir_bh, name,
1859 OCFS2_ORPHAN_NAMELEN, de_bh);
1860 if (status < 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001861 ocfs2_inode_unlock(orphan_dir_inode, 1);
Mark Fasheh5098c272006-10-05 18:12:57 -07001862
Mark Fashehccd979b2005-12-15 14:31:24 -08001863 mlog_errno(status);
1864 goto leave;
1865 }
1866
Mark Fasheh5098c272006-10-05 18:12:57 -07001867 *ret_orphan_dir = orphan_dir_inode;
1868
Mark Fashehccd979b2005-12-15 14:31:24 -08001869leave:
Mark Fasheh5098c272006-10-05 18:12:57 -07001870 if (status) {
1871 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001872 iput(orphan_dir_inode);
Mark Fasheh5098c272006-10-05 18:12:57 -07001873 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001874
Mark Fasheha81cb882008-10-07 14:25:16 -07001875 brelse(orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001876
1877 mlog_exit(status);
1878 return status;
1879}
1880
1881static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001882 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001883 struct inode *inode,
1884 struct ocfs2_dinode *fe,
1885 char *name,
Mark Fasheh5098c272006-10-05 18:12:57 -07001886 struct buffer_head *de_bh,
1887 struct inode *orphan_dir_inode)
Mark Fashehccd979b2005-12-15 14:31:24 -08001888{
Mark Fashehccd979b2005-12-15 14:31:24 -08001889 struct buffer_head *orphan_dir_bh = NULL;
1890 int status = 0;
1891 struct ocfs2_dinode *orphan_fe;
1892
1893 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
1894
Joel Beckerb657c952008-11-13 14:49:11 -08001895 status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001896 if (status < 0) {
1897 mlog_errno(status);
1898 goto leave;
1899 }
1900
Joel Becker13723d02008-10-17 19:25:01 -07001901 status = ocfs2_journal_access_di(handle, orphan_dir_inode, orphan_dir_bh,
1902 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))
1912 le16_add_cpu(&orphan_fe->i_links_count, 1);
1913 orphan_dir_inode->i_nlink = le16_to_cpu(orphan_fe->i_links_count);
1914
1915 status = ocfs2_journal_dirty(handle, orphan_dir_bh);
1916 if (status < 0) {
1917 mlog_errno(status);
1918 goto leave;
1919 }
1920
1921 status = __ocfs2_add_entry(handle, orphan_dir_inode, name,
1922 OCFS2_ORPHAN_NAMELEN, inode,
1923 OCFS2_I(inode)->ip_blkno,
1924 orphan_dir_bh, de_bh);
1925 if (status < 0) {
1926 mlog_errno(status);
1927 goto leave;
1928 }
1929
1930 le32_add_cpu(&fe->i_flags, OCFS2_ORPHANED_FL);
1931
1932 /* Record which orphan dir our inode now resides
1933 * in. delete_inode will use this to determine which orphan
1934 * dir to lock. */
Tiger Yang50008632007-03-20 16:01:38 -07001935 fe->i_orphaned_slot = cpu_to_le16(osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001936
Mark Fashehb06970532006-03-03 10:24:33 -08001937 mlog(0, "Inode %llu orphaned in slot %d\n",
1938 (unsigned long long)OCFS2_I(inode)->ip_blkno, osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001939
1940leave:
Mark Fasheha81cb882008-10-07 14:25:16 -07001941 brelse(orphan_dir_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001942
1943 mlog_exit(status);
1944 return status;
1945}
1946
1947/* unlike orphan_add, we expect the orphan dir to already be locked here. */
1948int ocfs2_orphan_del(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001949 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001950 struct inode *orphan_dir_inode,
1951 struct inode *inode,
1952 struct buffer_head *orphan_dir_bh)
1953{
1954 char name[OCFS2_ORPHAN_NAMELEN + 1];
1955 struct ocfs2_dinode *orphan_fe;
1956 int status = 0;
1957 struct buffer_head *target_de_bh = NULL;
1958 struct ocfs2_dir_entry *target_de = NULL;
1959
1960 mlog_entry_void();
1961
1962 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
1963 if (status < 0) {
1964 mlog_errno(status);
1965 goto leave;
1966 }
1967
Mark Fashehb06970532006-03-03 10:24:33 -08001968 mlog(0, "removing '%s' from orphan dir %llu (namelen=%d)\n",
1969 name, (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
1970 OCFS2_ORPHAN_NAMELEN);
Mark Fashehccd979b2005-12-15 14:31:24 -08001971
1972 /* find it's spot in the orphan directory */
1973 target_de_bh = ocfs2_find_entry(name, OCFS2_ORPHAN_NAMELEN,
1974 orphan_dir_inode, &target_de);
1975 if (!target_de_bh) {
1976 status = -ENOENT;
1977 mlog_errno(status);
1978 goto leave;
1979 }
1980
1981 /* remove it from the orphan directory */
1982 status = ocfs2_delete_entry(handle, orphan_dir_inode, target_de,
1983 target_de_bh);
1984 if (status < 0) {
1985 mlog_errno(status);
1986 goto leave;
1987 }
1988
Joel Becker13723d02008-10-17 19:25:01 -07001989 status = ocfs2_journal_access_di(handle,orphan_dir_inode, orphan_dir_bh,
1990 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001991 if (status < 0) {
1992 mlog_errno(status);
1993 goto leave;
1994 }
1995
1996 /* do the i_nlink dance! :) */
1997 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
1998 if (S_ISDIR(inode->i_mode))
1999 le16_add_cpu(&orphan_fe->i_links_count, -1);
2000 orphan_dir_inode->i_nlink = le16_to_cpu(orphan_fe->i_links_count);
2001
2002 status = ocfs2_journal_dirty(handle, orphan_dir_bh);
2003 if (status < 0) {
2004 mlog_errno(status);
2005 goto leave;
2006 }
2007
2008leave:
Mark Fasheha81cb882008-10-07 14:25:16 -07002009 brelse(target_de_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08002010
2011 mlog_exit(status);
2012 return status;
2013}
2014
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002015const struct inode_operations ocfs2_dir_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002016 .create = ocfs2_create,
2017 .lookup = ocfs2_lookup,
2018 .link = ocfs2_link,
2019 .unlink = ocfs2_unlink,
2020 .rmdir = ocfs2_unlink,
2021 .symlink = ocfs2_symlink,
2022 .mkdir = ocfs2_mkdir,
2023 .mknod = ocfs2_mknod,
2024 .rename = ocfs2_rename,
2025 .setattr = ocfs2_setattr,
2026 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002027 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002028 .setxattr = generic_setxattr,
2029 .getxattr = generic_getxattr,
2030 .listxattr = ocfs2_listxattr,
2031 .removexattr = generic_removexattr,
Mark Fashehccd979b2005-12-15 14:31:24 -08002032};