blob: d2f03355d127bbec91ba30138cf856293082f838 [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>
43
44#define MLOG_MASK_PREFIX ML_NAMEI
45#include <cluster/masklog.h>
46
47#include "ocfs2.h"
48
49#include "alloc.h"
50#include "dcache.h"
51#include "dir.h"
52#include "dlmglue.h"
53#include "extent_map.h"
54#include "file.h"
55#include "inode.h"
56#include "journal.h"
57#include "namei.h"
58#include "suballoc.h"
Mark Fashehaa958872006-04-21 13:49:02 -070059#include "super.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080060#include "symlink.h"
61#include "sysfile.h"
62#include "uptodate.h"
63#include "vote.h"
64
65#include "buffer_head_io.h"
66
Mark Fashehccd979b2005-12-15 14:31:24 -080067static int ocfs2_mknod_locked(struct ocfs2_super *osb,
68 struct inode *dir,
69 struct dentry *dentry, int mode,
70 dev_t dev,
71 struct buffer_head **new_fe_bh,
72 struct buffer_head *parent_fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -070073 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080074 struct inode **ret_inode,
75 struct ocfs2_alloc_context *inode_ac);
76
Mark Fashehccd979b2005-12-15 14:31:24 -080077static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -070078 struct inode **ret_orphan_dir,
Mark Fashehccd979b2005-12-15 14:31:24 -080079 struct inode *inode,
80 char *name,
81 struct buffer_head **de_bh);
82
83static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070084 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080085 struct inode *inode,
86 struct ocfs2_dinode *fe,
87 char *name,
Mark Fasheh5098c272006-10-05 18:12:57 -070088 struct buffer_head *de_bh,
89 struct inode *orphan_dir_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -080090
91static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070092 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080093 struct inode *inode,
94 const char *symname);
95
Mark Fashehccd979b2005-12-15 14:31:24 -080096/* An orphan dir name is an 8 byte value, printed as a hex string */
97#define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64)))
98
99static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry,
100 struct nameidata *nd)
101{
102 int status;
103 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -0800104 struct inode *inode = NULL;
105 struct dentry *ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800106 struct ocfs2_inode_info *oi;
107
108 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry,
109 dentry->d_name.len, dentry->d_name.name);
110
111 if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) {
112 ret = ERR_PTR(-ENAMETOOLONG);
113 goto bail;
114 }
115
Mark Fashehb06970532006-03-03 10:24:33 -0800116 mlog(0, "find name %.*s in directory %llu\n", dentry->d_name.len,
117 dentry->d_name.name, (unsigned long long)OCFS2_I(dir)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800118
Mark Fasheh4bcec182006-10-09 16:02:40 -0700119 status = ocfs2_meta_lock(dir, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800120 if (status < 0) {
121 if (status != -ENOENT)
122 mlog_errno(status);
123 ret = ERR_PTR(status);
124 goto bail;
125 }
126
Mark Fashehbe94d112007-09-11 15:22:06 -0700127 status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name,
128 dentry->d_name.len, &blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800129 if (status < 0)
130 goto bail_add;
131
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700132 inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800133 if (IS_ERR(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800134 ret = ERR_PTR(-EACCES);
135 goto bail_unlock;
136 }
137
138 oi = OCFS2_I(inode);
139 /* Clear any orphaned state... If we were able to look up the
140 * inode from a directory, it certainly can't be orphaned. We
141 * might have the bad state from a node which intended to
142 * orphan this inode but crashed before it could commit the
143 * unlink. */
144 spin_lock(&oi->ip_lock);
145 oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED;
Mark Fashehccd979b2005-12-15 14:31:24 -0800146 spin_unlock(&oi->ip_lock);
147
148bail_add:
Mark Fashehccd979b2005-12-15 14:31:24 -0800149 dentry->d_op = &ocfs2_dentry_ops;
150 ret = d_splice_alias(inode, dentry);
151
Mark Fasheh379dfe92006-09-08 14:21:03 -0700152 if (inode) {
153 /*
154 * If d_splice_alias() finds a DCACHE_DISCONNECTED
155 * dentry, it will d_move() it on top of ourse. The
156 * return value will indicate this however, so in
157 * those cases, we switch them around for the locking
158 * code.
159 *
160 * NOTE: This dentry already has ->d_op set from
161 * ocfs2_get_parent() and ocfs2_get_dentry()
162 */
163 if (ret)
164 dentry = ret;
165
166 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700167 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700168 if (status) {
169 mlog_errno(status);
170 ret = ERR_PTR(status);
171 goto bail_unlock;
172 }
173 }
174
Mark Fashehccd979b2005-12-15 14:31:24 -0800175bail_unlock:
176 /* Don't drop the cluster lock until *after* the d_add --
177 * unlink on another node will message us to remove that
178 * dentry under this lock so otherwise we can race this with
179 * the vote thread and have a stale dentry. */
180 ocfs2_meta_unlock(dir, 0);
181
182bail:
Mark Fashehccd979b2005-12-15 14:31:24 -0800183
184 mlog_exit_ptr(ret);
185
186 return ret;
187}
188
Mark Fashehccd979b2005-12-15 14:31:24 -0800189static int ocfs2_mknod(struct inode *dir,
190 struct dentry *dentry,
191 int mode,
192 dev_t dev)
193{
194 int status = 0;
195 struct buffer_head *parent_fe_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700196 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800197 struct ocfs2_super *osb;
198 struct ocfs2_dinode *dirfe;
199 struct buffer_head *new_fe_bh = NULL;
200 struct buffer_head *de_bh = NULL;
201 struct inode *inode = NULL;
202 struct ocfs2_alloc_context *inode_ac = NULL;
203 struct ocfs2_alloc_context *data_ac = NULL;
204
205 mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir, dentry, mode,
206 (unsigned long)dev, dentry->d_name.len,
207 dentry->d_name.name);
208
209 /* get our super block */
210 osb = OCFS2_SB(dir->i_sb);
211
Mark Fasheh4bcec182006-10-09 16:02:40 -0700212 status = ocfs2_meta_lock(dir, &parent_fe_bh, 1);
Mark Fashehe3a82132006-10-05 16:04:17 -0700213 if (status < 0) {
214 if (status != -ENOENT)
215 mlog_errno(status);
216 return status;
217 }
218
Mark Fasheha663e302006-08-09 11:45:07 -0700219 if (S_ISDIR(mode) && (dir->i_nlink >= OCFS2_LINK_MAX)) {
220 status = -EMLINK;
221 goto leave;
222 }
223
Mark Fashehccd979b2005-12-15 14:31:24 -0800224 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
225 if (!dirfe->i_links_count) {
226 /* can't make a file in a deleted directory. */
227 status = -ENOENT;
228 goto leave;
229 }
230
231 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
232 dentry->d_name.len);
233 if (status)
234 goto leave;
235
236 /* get a spot inside the dir. */
237 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
238 dentry->d_name.name,
239 dentry->d_name.len, &de_bh);
240 if (status < 0) {
241 mlog_errno(status);
242 goto leave;
243 }
244
245 /* reserve an inode spot */
Mark Fashehda5cbf22006-10-06 18:34:35 -0700246 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800247 if (status < 0) {
248 if (status != -ENOSPC)
249 mlog_errno(status);
250 goto leave;
251 }
252
253 /* are we making a directory? If so, reserve a cluster for his
254 * 1st extent. */
255 if (S_ISDIR(mode)) {
Mark Fashehda5cbf22006-10-06 18:34:35 -0700256 status = ocfs2_reserve_clusters(osb, 1, &data_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800257 if (status < 0) {
258 if (status != -ENOSPC)
259 mlog_errno(status);
260 goto leave;
261 }
262 }
263
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700264 handle = ocfs2_start_trans(osb, OCFS2_MKNOD_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800265 if (IS_ERR(handle)) {
266 status = PTR_ERR(handle);
267 handle = NULL;
268 mlog_errno(status);
269 goto leave;
270 }
271
272 /* do the real work now. */
273 status = ocfs2_mknod_locked(osb, dir, dentry, mode, dev,
274 &new_fe_bh, parent_fe_bh, handle,
275 &inode, inode_ac);
276 if (status < 0) {
277 mlog_errno(status);
278 goto leave;
279 }
280
281 if (S_ISDIR(mode)) {
282 status = ocfs2_fill_new_dir(osb, handle, dir, inode,
283 new_fe_bh, data_ac);
284 if (status < 0) {
285 mlog_errno(status);
286 goto leave;
287 }
288
289 status = ocfs2_journal_access(handle, dir, parent_fe_bh,
290 OCFS2_JOURNAL_ACCESS_WRITE);
291 if (status < 0) {
292 mlog_errno(status);
293 goto leave;
294 }
295 le16_add_cpu(&dirfe->i_links_count, 1);
296 status = ocfs2_journal_dirty(handle, parent_fe_bh);
297 if (status < 0) {
298 mlog_errno(status);
299 goto leave;
300 }
Dave Hansend8c76e62006-09-30 23:29:04 -0700301 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800302 }
303
304 status = ocfs2_add_entry(handle, dentry, inode,
305 OCFS2_I(inode)->ip_blkno, parent_fe_bh,
306 de_bh);
307 if (status < 0) {
308 mlog_errno(status);
309 goto leave;
310 }
311
Mark Fasheh379dfe92006-09-08 14:21:03 -0700312 status = ocfs2_dentry_attach_lock(dentry, inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700313 OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700314 if (status) {
315 mlog_errno(status);
316 goto leave;
317 }
318
Mark Fashehccd979b2005-12-15 14:31:24 -0800319 insert_inode_hash(inode);
320 dentry->d_op = &ocfs2_dentry_ops;
321 d_instantiate(dentry, inode);
322 status = 0;
323leave:
324 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700325 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800326
Mark Fashehe3a82132006-10-05 16:04:17 -0700327 ocfs2_meta_unlock(dir, 1);
328
Mark Fashehccd979b2005-12-15 14:31:24 -0800329 if (status == -ENOSPC)
330 mlog(0, "Disk is full\n");
331
332 if (new_fe_bh)
333 brelse(new_fe_bh);
334
335 if (de_bh)
336 brelse(de_bh);
337
338 if (parent_fe_bh)
339 brelse(parent_fe_bh);
340
341 if ((status < 0) && inode)
342 iput(inode);
343
344 if (inode_ac)
345 ocfs2_free_alloc_context(inode_ac);
346
347 if (data_ac)
348 ocfs2_free_alloc_context(data_ac);
349
350 mlog_exit(status);
351
352 return status;
353}
354
355static int ocfs2_mknod_locked(struct ocfs2_super *osb,
356 struct inode *dir,
357 struct dentry *dentry, int mode,
358 dev_t dev,
359 struct buffer_head **new_fe_bh,
360 struct buffer_head *parent_fe_bh,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700361 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800362 struct inode **ret_inode,
363 struct ocfs2_alloc_context *inode_ac)
364{
365 int status = 0;
366 struct ocfs2_dinode *fe = NULL;
367 struct ocfs2_extent_list *fel;
368 u64 fe_blkno = 0;
369 u16 suballoc_bit;
370 struct inode *inode = NULL;
371
372 mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir, dentry, mode,
373 (unsigned long)dev, dentry->d_name.len,
374 dentry->d_name.name);
375
376 *new_fe_bh = NULL;
377 *ret_inode = NULL;
378
379 status = ocfs2_claim_new_inode(osb, handle, inode_ac, &suballoc_bit,
380 &fe_blkno);
381 if (status < 0) {
382 mlog_errno(status);
383 goto leave;
384 }
385
386 inode = new_inode(dir->i_sb);
387 if (IS_ERR(inode)) {
388 status = PTR_ERR(inode);
389 mlog(ML_ERROR, "new_inode failed!\n");
390 goto leave;
391 }
392
393 /* populate as many fields early on as possible - many of
394 * these are used by the support functions here and in
395 * callers. */
396 inode->i_ino = ino_from_blkno(osb->sb, fe_blkno);
397 OCFS2_I(inode)->ip_blkno = fe_blkno;
398 if (S_ISDIR(mode))
399 inode->i_nlink = 2;
400 else
401 inode->i_nlink = 1;
402 inode->i_mode = mode;
403 spin_lock(&osb->osb_lock);
404 inode->i_generation = osb->s_next_generation++;
405 spin_unlock(&osb->osb_lock);
406
407 *new_fe_bh = sb_getblk(osb->sb, fe_blkno);
408 if (!*new_fe_bh) {
409 status = -EIO;
410 mlog_errno(status);
411 goto leave;
412 }
413 ocfs2_set_new_buffer_uptodate(inode, *new_fe_bh);
414
415 status = ocfs2_journal_access(handle, inode, *new_fe_bh,
416 OCFS2_JOURNAL_ACCESS_CREATE);
417 if (status < 0) {
418 mlog_errno(status);
419 goto leave;
420 }
421
422 fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data;
423 memset(fe, 0, osb->sb->s_blocksize);
424
425 fe->i_generation = cpu_to_le32(inode->i_generation);
426 fe->i_fs_generation = cpu_to_le32(osb->fs_generation);
427 fe->i_blkno = cpu_to_le64(fe_blkno);
428 fe->i_suballoc_bit = cpu_to_le16(suballoc_bit);
429 fe->i_suballoc_slot = cpu_to_le16(osb->slot_num);
430 fe->i_uid = cpu_to_le32(current->fsuid);
431 if (dir->i_mode & S_ISGID) {
432 fe->i_gid = cpu_to_le32(dir->i_gid);
433 if (S_ISDIR(mode))
434 mode |= S_ISGID;
435 } else
436 fe->i_gid = cpu_to_le32(current->fsgid);
437 fe->i_mode = cpu_to_le16(mode);
438 if (S_ISCHR(mode) || S_ISBLK(mode))
439 fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev));
440
441 fe->i_links_count = cpu_to_le16(inode->i_nlink);
442
443 fe->i_last_eb_blk = 0;
444 strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE);
445 le32_add_cpu(&fe->i_flags, OCFS2_VALID_FL);
446 fe->i_atime = fe->i_ctime = fe->i_mtime =
447 cpu_to_le64(CURRENT_TIME.tv_sec);
448 fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec =
449 cpu_to_le32(CURRENT_TIME.tv_nsec);
450 fe->i_dtime = 0;
451
452 fel = &fe->id2.i_list;
453 fel->l_tree_depth = 0;
454 fel->l_next_free_rec = 0;
455 fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb));
456
457 status = ocfs2_journal_dirty(handle, *new_fe_bh);
458 if (status < 0) {
459 mlog_errno(status);
460 goto leave;
461 }
462
463 if (ocfs2_populate_inode(inode, fe, 1) < 0) {
464 mlog(ML_ERROR, "populate inode failed! bh->b_blocknr=%llu, "
Mark Fashehb06970532006-03-03 10:24:33 -0800465 "i_blkno=%llu, i_ino=%lu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700466 (unsigned long long)(*new_fe_bh)->b_blocknr,
467 (unsigned long long)le64_to_cpu(fe->i_blkno),
468 inode->i_ino);
Mark Fashehccd979b2005-12-15 14:31:24 -0800469 BUG();
470 }
471
472 ocfs2_inode_set_new(osb, inode);
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800473 if (!ocfs2_mount_local(osb)) {
474 status = ocfs2_create_new_inode_locks(inode);
475 if (status < 0)
476 mlog_errno(status);
477 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800478
479 status = 0; /* error in ocfs2_create_new_inode_locks is not
480 * critical */
481
482 *ret_inode = inode;
483leave:
484 if (status < 0) {
485 if (*new_fe_bh) {
486 brelse(*new_fe_bh);
487 *new_fe_bh = NULL;
488 }
489 if (inode)
490 iput(inode);
491 }
492
493 mlog_exit(status);
494 return status;
495}
496
497static int ocfs2_mkdir(struct inode *dir,
498 struct dentry *dentry,
499 int mode)
500{
501 int ret;
502
503 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode,
504 dentry->d_name.len, dentry->d_name.name);
505 ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0);
506 mlog_exit(ret);
507
508 return ret;
509}
510
511static int ocfs2_create(struct inode *dir,
512 struct dentry *dentry,
513 int mode,
514 struct nameidata *nd)
515{
516 int ret;
517
518 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir, dentry, mode,
519 dentry->d_name.len, dentry->d_name.name);
520 ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0);
521 mlog_exit(ret);
522
523 return ret;
524}
525
526static int ocfs2_link(struct dentry *old_dentry,
527 struct inode *dir,
528 struct dentry *dentry)
529{
Mark Fasheh1fabe142006-10-09 18:11:45 -0700530 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800531 struct inode *inode = old_dentry->d_inode;
532 int err;
533 struct buffer_head *fe_bh = NULL;
534 struct buffer_head *parent_fe_bh = NULL;
535 struct buffer_head *de_bh = NULL;
536 struct ocfs2_dinode *fe = NULL;
537 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
538
539 mlog_entry("(inode=%lu, old='%.*s' new='%.*s')\n", inode->i_ino,
540 old_dentry->d_name.len, old_dentry->d_name.name,
541 dentry->d_name.len, dentry->d_name.name);
542
Mark Fasheh123a9642006-10-05 16:48:23 -0700543 if (S_ISDIR(inode->i_mode))
544 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800545
Mark Fasheh4bcec182006-10-09 16:02:40 -0700546 err = ocfs2_meta_lock(dir, &parent_fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800547 if (err < 0) {
548 if (err != -ENOENT)
549 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700550 return err;
Mark Fashehccd979b2005-12-15 14:31:24 -0800551 }
552
Tiger Yang0f62de22006-08-31 20:39:47 -0700553 if (!dir->i_nlink) {
554 err = -ENOENT;
Mark Fasheh123a9642006-10-05 16:48:23 -0700555 goto out;
Tiger Yang0f62de22006-08-31 20:39:47 -0700556 }
557
Mark Fashehccd979b2005-12-15 14:31:24 -0800558 err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
559 dentry->d_name.len);
560 if (err)
Mark Fasheh123a9642006-10-05 16:48:23 -0700561 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800562
563 err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
564 dentry->d_name.name,
565 dentry->d_name.len, &de_bh);
566 if (err < 0) {
567 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700568 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800569 }
570
Mark Fasheh4bcec182006-10-09 16:02:40 -0700571 err = ocfs2_meta_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800572 if (err < 0) {
573 if (err != -ENOENT)
574 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700575 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800576 }
577
578 fe = (struct ocfs2_dinode *) fe_bh->b_data;
579 if (le16_to_cpu(fe->i_links_count) >= OCFS2_LINK_MAX) {
580 err = -EMLINK;
Mark Fasheh123a9642006-10-05 16:48:23 -0700581 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800582 }
583
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700584 handle = ocfs2_start_trans(osb, OCFS2_LINK_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800585 if (IS_ERR(handle)) {
586 err = PTR_ERR(handle);
587 handle = NULL;
588 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700589 goto out_unlock_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800590 }
591
592 err = ocfs2_journal_access(handle, inode, fe_bh,
593 OCFS2_JOURNAL_ACCESS_WRITE);
594 if (err < 0) {
595 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700596 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800597 }
598
Dave Hansend8c76e62006-09-30 23:29:04 -0700599 inc_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800600 inode->i_ctime = CURRENT_TIME;
601 fe->i_links_count = cpu_to_le16(inode->i_nlink);
602 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
603 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
604
605 err = ocfs2_journal_dirty(handle, fe_bh);
606 if (err < 0) {
607 le16_add_cpu(&fe->i_links_count, -1);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700608 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800609 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700610 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800611 }
612
613 err = ocfs2_add_entry(handle, dentry, inode,
614 OCFS2_I(inode)->ip_blkno,
615 parent_fe_bh, de_bh);
616 if (err) {
617 le16_add_cpu(&fe->i_links_count, -1);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700618 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800619 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700620 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800621 }
622
Mark Fasheh0027dd52006-09-21 16:51:28 -0700623 err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -0700624 if (err) {
625 mlog_errno(err);
Mark Fasheh123a9642006-10-05 16:48:23 -0700626 goto out_commit;
Mark Fasheh379dfe92006-09-08 14:21:03 -0700627 }
628
Mark Fashehccd979b2005-12-15 14:31:24 -0800629 atomic_inc(&inode->i_count);
630 dentry->d_op = &ocfs2_dentry_ops;
631 d_instantiate(dentry, inode);
Mark Fasheh123a9642006-10-05 16:48:23 -0700632
633out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700634 ocfs2_commit_trans(osb, handle);
Mark Fasheh123a9642006-10-05 16:48:23 -0700635out_unlock_inode:
636 ocfs2_meta_unlock(inode, 1);
637
638out:
639 ocfs2_meta_unlock(dir, 1);
640
Mark Fashehccd979b2005-12-15 14:31:24 -0800641 if (de_bh)
642 brelse(de_bh);
643 if (fe_bh)
644 brelse(fe_bh);
645 if (parent_fe_bh)
646 brelse(parent_fe_bh);
647
648 mlog_exit(err);
649
650 return err;
651}
652
Mark Fasheh379dfe92006-09-08 14:21:03 -0700653/*
654 * Takes and drops an exclusive lock on the given dentry. This will
655 * force other nodes to drop it.
656 */
657static int ocfs2_remote_dentry_delete(struct dentry *dentry)
658{
659 int ret;
660
661 ret = ocfs2_dentry_lock(dentry, 1);
662 if (ret)
663 mlog_errno(ret);
664 else
665 ocfs2_dentry_unlock(dentry, 1);
666
667 return ret;
668}
669
Mark Fasheh17ff7852006-09-30 23:29:05 -0700670static inline int inode_is_unlinkable(struct inode *inode)
671{
672 if (S_ISDIR(inode->i_mode)) {
673 if (inode->i_nlink == 2)
674 return 1;
675 return 0;
676 }
677
678 if (inode->i_nlink == 1)
679 return 1;
680 return 0;
681}
682
Mark Fashehccd979b2005-12-15 14:31:24 -0800683static int ocfs2_unlink(struct inode *dir,
684 struct dentry *dentry)
685{
686 int status;
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700687 int child_locked = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800688 struct inode *inode = dentry->d_inode;
Mark Fasheh5098c272006-10-05 18:12:57 -0700689 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800690 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
691 u64 blkno;
692 struct ocfs2_dinode *fe = NULL;
693 struct buffer_head *fe_bh = NULL;
694 struct buffer_head *parent_node_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700695 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800696 struct ocfs2_dir_entry *dirent = NULL;
697 struct buffer_head *dirent_bh = NULL;
698 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
699 struct buffer_head *orphan_entry_bh = NULL;
700
701 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir, dentry,
702 dentry->d_name.len, dentry->d_name.name);
703
704 BUG_ON(dentry->d_parent->d_inode != dir);
705
Mark Fashehb06970532006-03-03 10:24:33 -0800706 mlog(0, "ino = %llu\n", (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800707
708 if (inode == osb->root_inode) {
709 mlog(0, "Cannot delete the root directory\n");
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700710 return -EPERM;
Mark Fashehccd979b2005-12-15 14:31:24 -0800711 }
712
Mark Fasheh4bcec182006-10-09 16:02:40 -0700713 status = ocfs2_meta_lock(dir, &parent_node_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800714 if (status < 0) {
715 if (status != -ENOENT)
716 mlog_errno(status);
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700717 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800718 }
719
720 status = ocfs2_find_files_on_disk(dentry->d_name.name,
721 dentry->d_name.len, &blkno,
722 dir, &dirent_bh, &dirent);
723 if (status < 0) {
724 if (status != -ENOENT)
725 mlog_errno(status);
726 goto leave;
727 }
728
729 if (OCFS2_I(inode)->ip_blkno != blkno) {
730 status = -ENOENT;
731
Mark Fashehb06970532006-03-03 10:24:33 -0800732 mlog(0, "ip_blkno %llu != dirent blkno %llu ip_flags = %x\n",
733 (unsigned long long)OCFS2_I(inode)->ip_blkno,
734 (unsigned long long)blkno, OCFS2_I(inode)->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800735 goto leave;
736 }
737
Mark Fasheh4bcec182006-10-09 16:02:40 -0700738 status = ocfs2_meta_lock(inode, &fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800739 if (status < 0) {
740 if (status != -ENOENT)
741 mlog_errno(status);
742 goto leave;
743 }
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700744 child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800745
746 if (S_ISDIR(inode->i_mode)) {
747 if (!ocfs2_empty_dir(inode)) {
748 status = -ENOTEMPTY;
749 goto leave;
750 } else if (inode->i_nlink != 2) {
751 status = -ENOTEMPTY;
752 goto leave;
753 }
754 }
755
Mark Fasheh379dfe92006-09-08 14:21:03 -0700756 status = ocfs2_remote_dentry_delete(dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -0800757 if (status < 0) {
758 /* This vote should succeed under all normal
759 * circumstances. */
760 mlog_errno(status);
761 goto leave;
762 }
763
Mark Fasheh17ff7852006-09-30 23:29:05 -0700764 if (inode_is_unlinkable(inode)) {
Mark Fasheh5098c272006-10-05 18:12:57 -0700765 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, inode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800766 orphan_name,
767 &orphan_entry_bh);
768 if (status < 0) {
769 mlog_errno(status);
770 goto leave;
771 }
772 }
773
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700774 handle = ocfs2_start_trans(osb, OCFS2_UNLINK_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800775 if (IS_ERR(handle)) {
776 status = PTR_ERR(handle);
777 handle = NULL;
778 mlog_errno(status);
779 goto leave;
780 }
781
782 status = ocfs2_journal_access(handle, inode, fe_bh,
783 OCFS2_JOURNAL_ACCESS_WRITE);
784 if (status < 0) {
785 mlog_errno(status);
786 goto leave;
787 }
788
789 fe = (struct ocfs2_dinode *) fe_bh->b_data;
790
Mark Fasheh17ff7852006-09-30 23:29:05 -0700791 if (inode_is_unlinkable(inode)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800792 status = ocfs2_orphan_add(osb, handle, inode, fe, orphan_name,
Mark Fasheh5098c272006-10-05 18:12:57 -0700793 orphan_entry_bh, orphan_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800794 if (status < 0) {
795 mlog_errno(status);
796 goto leave;
797 }
798 }
799
800 /* delete the name from the parent dir */
801 status = ocfs2_delete_entry(handle, dir, dirent, dirent_bh);
802 if (status < 0) {
803 mlog_errno(status);
804 goto leave;
805 }
806
Mark Fasheh17ff7852006-09-30 23:29:05 -0700807 if (S_ISDIR(inode->i_mode))
808 drop_nlink(inode);
809 drop_nlink(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800810 fe->i_links_count = cpu_to_le16(inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800811
812 status = ocfs2_journal_dirty(handle, fe_bh);
813 if (status < 0) {
814 mlog_errno(status);
815 goto leave;
816 }
817
Mark Fasheh592282c2007-01-02 17:59:40 -0800818 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
819 if (S_ISDIR(inode->i_mode))
Mark Fasheh17ff7852006-09-30 23:29:05 -0700820 drop_nlink(dir);
Mark Fasheh592282c2007-01-02 17:59:40 -0800821
822 status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh);
823 if (status < 0) {
824 mlog_errno(status);
825 if (S_ISDIR(inode->i_mode))
Dave Hansend8c76e62006-09-30 23:29:04 -0700826 inc_nlink(dir);
Mark Fashehccd979b2005-12-15 14:31:24 -0800827 }
828
829leave:
Mark Fashehccd979b2005-12-15 14:31:24 -0800830 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700831 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800832
Mark Fasheh30a4f5e2006-10-06 11:49:45 -0700833 if (child_locked)
834 ocfs2_meta_unlock(inode, 1);
835
836 ocfs2_meta_unlock(dir, 1);
837
Mark Fasheh5098c272006-10-05 18:12:57 -0700838 if (orphan_dir) {
839 /* This was locked for us in ocfs2_prepare_orphan_dir() */
840 ocfs2_meta_unlock(orphan_dir, 1);
841 mutex_unlock(&orphan_dir->i_mutex);
842 iput(orphan_dir);
843 }
844
Mark Fashehccd979b2005-12-15 14:31:24 -0800845 if (fe_bh)
846 brelse(fe_bh);
847
848 if (dirent_bh)
849 brelse(dirent_bh);
850
851 if (parent_node_bh)
852 brelse(parent_node_bh);
853
854 if (orphan_entry_bh)
855 brelse(orphan_entry_bh);
856
857 mlog_exit(status);
858
859 return status;
860}
861
862/*
863 * The only place this should be used is rename!
864 * if they have the same id, then the 1st one is the only one locked.
865 */
866static int ocfs2_double_lock(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -0800867 struct buffer_head **bh1,
868 struct inode *inode1,
869 struct buffer_head **bh2,
870 struct inode *inode2)
871{
872 int status;
873 struct ocfs2_inode_info *oi1 = OCFS2_I(inode1);
874 struct ocfs2_inode_info *oi2 = OCFS2_I(inode2);
875 struct buffer_head **tmpbh;
876 struct inode *tmpinode;
877
Mark Fashehb06970532006-03-03 10:24:33 -0800878 mlog_entry("(inode1 = %llu, inode2 = %llu)\n",
879 (unsigned long long)oi1->ip_blkno,
880 (unsigned long long)oi2->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800881
Mark Fashehccd979b2005-12-15 14:31:24 -0800882 if (*bh1)
883 *bh1 = NULL;
884 if (*bh2)
885 *bh2 = NULL;
886
887 /* we always want to lock the one with the lower lockid first. */
888 if (oi1->ip_blkno != oi2->ip_blkno) {
889 if (oi1->ip_blkno < oi2->ip_blkno) {
890 /* switch id1 and id2 around */
891 mlog(0, "switching them around...\n");
892 tmpbh = bh2;
893 bh2 = bh1;
894 bh1 = tmpbh;
895
896 tmpinode = inode2;
897 inode2 = inode1;
898 inode1 = tmpinode;
899 }
900 /* lock id2 */
Mark Fasheh4bcec182006-10-09 16:02:40 -0700901 status = ocfs2_meta_lock(inode2, bh2, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800902 if (status < 0) {
903 if (status != -ENOENT)
904 mlog_errno(status);
905 goto bail;
906 }
907 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700908
Mark Fashehccd979b2005-12-15 14:31:24 -0800909 /* lock id1 */
Mark Fasheh4bcec182006-10-09 16:02:40 -0700910 status = ocfs2_meta_lock(inode1, bh1, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800911 if (status < 0) {
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700912 /*
913 * An error return must mean that no cluster locks
914 * were held on function exit.
915 */
916 if (oi1->ip_blkno != oi2->ip_blkno)
917 ocfs2_meta_unlock(inode2, 1);
918
Mark Fashehccd979b2005-12-15 14:31:24 -0800919 if (status != -ENOENT)
920 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800921 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700922
Mark Fashehccd979b2005-12-15 14:31:24 -0800923bail:
924 mlog_exit(status);
925 return status;
926}
927
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700928static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2)
929{
930 ocfs2_meta_unlock(inode1, 1);
931
932 if (inode1 != inode2)
933 ocfs2_meta_unlock(inode2, 1);
934}
935
Mark Fashehccd979b2005-12-15 14:31:24 -0800936static int ocfs2_rename(struct inode *old_dir,
937 struct dentry *old_dentry,
938 struct inode *new_dir,
939 struct dentry *new_dentry)
940{
Mark Fasheh8d5596c2006-10-06 15:04:51 -0700941 int status = 0, rename_lock = 0, parents_locked = 0;
942 int old_child_locked = 0, new_child_locked = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800943 struct inode *old_inode = old_dentry->d_inode;
944 struct inode *new_inode = new_dentry->d_inode;
Mark Fasheh5098c272006-10-05 18:12:57 -0700945 struct inode *orphan_dir = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800946 struct ocfs2_dinode *newfe = NULL;
947 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
948 struct buffer_head *orphan_entry_bh = NULL;
949 struct buffer_head *newfe_bh = NULL;
Mark Fasheh592282c2007-01-02 17:59:40 -0800950 struct buffer_head *old_inode_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800951 struct buffer_head *insert_entry_bh = NULL;
952 struct ocfs2_super *osb = NULL;
953 u64 newfe_blkno;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700954 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800955 struct buffer_head *old_dir_bh = NULL;
956 struct buffer_head *new_dir_bh = NULL;
Mark Fasheh38760e22007-09-11 17:21:56 -0700957 struct ocfs2_dir_entry *old_inode_dot_dot_de = NULL, *old_de = NULL,
958 *new_de = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800959 struct buffer_head *new_de_bh = NULL, *old_de_bh = NULL; // bhs for above
960 struct buffer_head *old_inode_de_bh = NULL; // if old_dentry is a dir,
961 // this is the 1st dirent bh
Mark Fasheh592282c2007-01-02 17:59:40 -0800962 nlink_t old_dir_nlink = old_dir->i_nlink;
Sunil Mushran480214d2007-08-06 15:11:56 -0700963 struct ocfs2_dinode *old_di;
Mark Fashehccd979b2005-12-15 14:31:24 -0800964
965 /* At some point it might be nice to break this function up a
966 * bit. */
967
968 mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p, from='%.*s' to='%.*s')\n",
969 old_dir, old_dentry, new_dir, new_dentry,
970 old_dentry->d_name.len, old_dentry->d_name.name,
971 new_dentry->d_name.len, new_dentry->d_name.name);
972
973 osb = OCFS2_SB(old_dir->i_sb);
974
975 if (new_inode) {
976 if (!igrab(new_inode))
977 BUG();
978 }
979
Uwe Kleine-König1b3c3712007-02-17 19:23:03 +0100980 /* Assume a directory hierarchy thusly:
Mark Fashehccd979b2005-12-15 14:31:24 -0800981 * a/b/c
982 * a/d
983 * a,b,c, and d are all directories.
984 *
985 * from cwd of 'a' on both nodes:
986 * node1: mv b/c d
987 * node2: mv d b/c
988 *
989 * And that's why, just like the VFS, we need a file system
990 * rename lock. */
991 if (old_dentry != new_dentry) {
992 status = ocfs2_rename_lock(osb);
993 if (status < 0) {
994 mlog_errno(status);
995 goto bail;
996 }
997 rename_lock = 1;
998 }
999
Mark Fashehccd979b2005-12-15 14:31:24 -08001000 /* if old and new are the same, this'll just do one lock. */
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001001 status = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
1002 &new_dir_bh, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001003 if (status < 0) {
1004 mlog_errno(status);
1005 goto bail;
1006 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001007 parents_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001008
1009 /* make sure both dirs have bhs
1010 * get an extra ref on old_dir_bh if old==new */
1011 if (!new_dir_bh) {
1012 if (old_dir_bh) {
1013 new_dir_bh = old_dir_bh;
1014 get_bh(new_dir_bh);
1015 } else {
1016 mlog(ML_ERROR, "no old_dir_bh!\n");
1017 status = -EIO;
1018 goto bail;
1019 }
1020 }
1021
Mark Fasheh379dfe92006-09-08 14:21:03 -07001022 /*
Mark Fasheh592282c2007-01-02 17:59:40 -08001023 * Aside from allowing a meta data update, the locking here
1024 * also ensures that the vote thread on other nodes won't have
1025 * to concurrently downconvert the inode and the dentry locks.
Mark Fasheh379dfe92006-09-08 14:21:03 -07001026 */
Mark Fasheh592282c2007-01-02 17:59:40 -08001027 status = ocfs2_meta_lock(old_inode, &old_inode_bh, 1);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001028 if (status < 0) {
1029 if (status != -ENOENT)
Mark Fashehccd979b2005-12-15 14:31:24 -08001030 mlog_errno(status);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001031 goto bail;
1032 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001033 old_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001034
Mark Fasheh379dfe92006-09-08 14:21:03 -07001035 status = ocfs2_remote_dentry_delete(old_dentry);
1036 if (status < 0) {
1037 mlog_errno(status);
1038 goto bail;
1039 }
1040
1041 if (S_ISDIR(old_inode->i_mode)) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001042 u64 old_inode_parent;
Mark Fashehccd979b2005-12-15 14:31:24 -08001043
Mark Fasheh38760e22007-09-11 17:21:56 -07001044 status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent,
1045 old_inode, &old_inode_de_bh,
1046 &old_inode_dot_dot_de);
1047 if (status) {
1048 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001049 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001050 }
1051
1052 if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) {
1053 status = -EIO;
Mark Fashehccd979b2005-12-15 14:31:24 -08001054 goto bail;
Mark Fasheh38760e22007-09-11 17:21:56 -07001055 }
1056
1057 if (!new_inode && new_dir != old_dir &&
1058 new_dir->i_nlink >= OCFS2_LINK_MAX) {
1059 status = -EMLINK;
1060 goto bail;
1061 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001062 }
1063
1064 status = -ENOENT;
1065 old_de_bh = ocfs2_find_entry(old_dentry->d_name.name,
1066 old_dentry->d_name.len,
1067 old_dir, &old_de);
1068 if (!old_de_bh)
1069 goto bail;
1070
1071 /*
1072 * Check for inode number is _not_ due to possible IO errors.
1073 * We might rmdir the source, keep it as pwd of some process
1074 * and merrily kill the link to whatever was created under the
1075 * same name. Goodbye sticky bit ;-<
1076 */
1077 if (le64_to_cpu(old_de->inode) != OCFS2_I(old_inode)->ip_blkno)
1078 goto bail;
1079
1080 /* check if the target already exists (in which case we need
1081 * to delete it */
1082 status = ocfs2_find_files_on_disk(new_dentry->d_name.name,
1083 new_dentry->d_name.len,
1084 &newfe_blkno, new_dir, &new_de_bh,
1085 &new_de);
1086 /* The only error we allow here is -ENOENT because the new
1087 * file not existing is perfectly valid. */
1088 if ((status < 0) && (status != -ENOENT)) {
1089 /* If we cannot find the file specified we should just */
1090 /* return the error... */
1091 mlog_errno(status);
1092 goto bail;
1093 }
1094
1095 if (!new_de && new_inode)
1096 mlog(ML_ERROR, "inode %lu does not exist in it's parent "
1097 "directory!", new_inode->i_ino);
1098
1099 /* In case we need to overwrite an existing file, we blow it
1100 * away first */
1101 if (new_de) {
1102 /* VFS didn't think there existed an inode here, but
1103 * someone else in the cluster must have raced our
1104 * rename to create one. Today we error cleanly, in
1105 * the future we should consider calling iget to build
1106 * a new struct inode for this entry. */
1107 if (!new_inode) {
1108 status = -EACCES;
1109
1110 mlog(0, "We found an inode for name %.*s but VFS "
1111 "didn't give us one.\n", new_dentry->d_name.len,
1112 new_dentry->d_name.name);
1113 goto bail;
1114 }
1115
1116 if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) {
1117 status = -EACCES;
1118
Mark Fashehb06970532006-03-03 10:24:33 -08001119 mlog(0, "Inode %llu and dir %llu disagree. flags = %x\n",
1120 (unsigned long long)OCFS2_I(new_inode)->ip_blkno,
1121 (unsigned long long)newfe_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08001122 OCFS2_I(new_inode)->ip_flags);
1123 goto bail;
1124 }
1125
Mark Fasheh4bcec182006-10-09 16:02:40 -07001126 status = ocfs2_meta_lock(new_inode, &newfe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001127 if (status < 0) {
1128 if (status != -ENOENT)
1129 mlog_errno(status);
1130 goto bail;
1131 }
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001132 new_child_locked = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001133
Mark Fasheh379dfe92006-09-08 14:21:03 -07001134 status = ocfs2_remote_dentry_delete(new_dentry);
Mark Fashehccd979b2005-12-15 14:31:24 -08001135 if (status < 0) {
1136 mlog_errno(status);
1137 goto bail;
1138 }
1139
1140 newfe = (struct ocfs2_dinode *) newfe_bh->b_data;
1141
Mark Fashehb06970532006-03-03 10:24:33 -08001142 mlog(0, "aha rename over existing... new_de=%p new_blkno=%llu "
1143 "newfebh=%p bhblocknr=%llu\n", new_de,
1144 (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ?
Mark Fashehccd979b2005-12-15 14:31:24 -08001145 (unsigned long long)newfe_bh->b_blocknr : 0ULL);
1146
1147 if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) {
Mark Fasheh5098c272006-10-05 18:12:57 -07001148 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
Mark Fashehccd979b2005-12-15 14:31:24 -08001149 new_inode,
1150 orphan_name,
1151 &orphan_entry_bh);
1152 if (status < 0) {
1153 mlog_errno(status);
1154 goto bail;
1155 }
1156 }
1157 } else {
1158 BUG_ON(new_dentry->d_parent->d_inode != new_dir);
1159
1160 status = ocfs2_check_dir_for_entry(new_dir,
1161 new_dentry->d_name.name,
1162 new_dentry->d_name.len);
1163 if (status)
1164 goto bail;
1165
1166 status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh,
1167 new_dentry->d_name.name,
1168 new_dentry->d_name.len,
1169 &insert_entry_bh);
1170 if (status < 0) {
1171 mlog_errno(status);
1172 goto bail;
1173 }
1174 }
1175
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001176 handle = ocfs2_start_trans(osb, OCFS2_RENAME_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -08001177 if (IS_ERR(handle)) {
1178 status = PTR_ERR(handle);
1179 handle = NULL;
1180 mlog_errno(status);
1181 goto bail;
1182 }
1183
1184 if (new_de) {
1185 if (S_ISDIR(new_inode->i_mode)) {
1186 if (!ocfs2_empty_dir(new_inode) ||
1187 new_inode->i_nlink != 2) {
1188 status = -ENOTEMPTY;
1189 goto bail;
1190 }
1191 }
1192 status = ocfs2_journal_access(handle, new_inode, newfe_bh,
1193 OCFS2_JOURNAL_ACCESS_WRITE);
1194 if (status < 0) {
1195 mlog_errno(status);
1196 goto bail;
1197 }
1198
1199 if (S_ISDIR(new_inode->i_mode) ||
1200 (newfe->i_links_count == cpu_to_le16(1))){
1201 status = ocfs2_orphan_add(osb, handle, new_inode,
1202 newfe, orphan_name,
Mark Fasheh5098c272006-10-05 18:12:57 -07001203 orphan_entry_bh, orphan_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001204 if (status < 0) {
1205 mlog_errno(status);
1206 goto bail;
1207 }
1208 }
1209
1210 /* change the dirent to point to the correct inode */
Mark Fasheh38760e22007-09-11 17:21:56 -07001211 status = ocfs2_update_entry(new_dir, handle, new_de_bh,
1212 new_de, old_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001213 if (status < 0) {
1214 mlog_errno(status);
1215 goto bail;
1216 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001217 new_dir->i_version++;
Mark Fashehccd979b2005-12-15 14:31:24 -08001218
1219 if (S_ISDIR(new_inode->i_mode))
1220 newfe->i_links_count = 0;
1221 else
1222 le16_add_cpu(&newfe->i_links_count, -1);
1223
1224 status = ocfs2_journal_dirty(handle, newfe_bh);
1225 if (status < 0) {
1226 mlog_errno(status);
1227 goto bail;
1228 }
1229 } else {
1230 /* if the name was not found in new_dir, add it now */
1231 status = ocfs2_add_entry(handle, new_dentry, old_inode,
1232 OCFS2_I(old_inode)->ip_blkno,
1233 new_dir_bh, insert_entry_bh);
1234 }
1235
1236 old_inode->i_ctime = CURRENT_TIME;
1237 mark_inode_dirty(old_inode);
Sunil Mushran480214d2007-08-06 15:11:56 -07001238
1239 status = ocfs2_journal_access(handle, old_inode, old_inode_bh,
1240 OCFS2_JOURNAL_ACCESS_WRITE);
1241 if (status >= 0) {
1242 old_di = (struct ocfs2_dinode *) old_inode_bh->b_data;
1243
1244 old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec);
1245 old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec);
1246
1247 status = ocfs2_journal_dirty(handle, old_inode_bh);
1248 if (status < 0)
1249 mlog_errno(status);
1250 } else
1251 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001252
1253 /* now that the name has been added to new_dir, remove the old name */
1254 status = ocfs2_delete_entry(handle, old_dir, old_de, old_de_bh);
1255 if (status < 0) {
1256 mlog_errno(status);
1257 goto bail;
1258 }
1259
1260 if (new_inode) {
1261 new_inode->i_nlink--;
1262 new_inode->i_ctime = CURRENT_TIME;
1263 }
1264 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME;
1265 if (old_inode_de_bh) {
Mark Fasheh38760e22007-09-11 17:21:56 -07001266 status = ocfs2_update_entry(old_inode, handle, old_inode_de_bh,
1267 old_inode_dot_dot_de, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001268 old_dir->i_nlink--;
1269 if (new_inode) {
1270 new_inode->i_nlink--;
1271 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001272 inc_nlink(new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001273 mark_inode_dirty(new_dir);
1274 }
1275 }
1276 mark_inode_dirty(old_dir);
Mark Fasheh592282c2007-01-02 17:59:40 -08001277 ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh);
1278 if (new_inode) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001279 mark_inode_dirty(new_inode);
Mark Fasheh592282c2007-01-02 17:59:40 -08001280 ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh);
1281 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001282
Mark Fasheh592282c2007-01-02 17:59:40 -08001283 if (old_dir != new_dir) {
1284 /* Keep the same times on both directories.*/
1285 new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime;
1286
1287 /*
1288 * This will also pick up the i_nlink change from the
1289 * block above.
1290 */
1291 ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh);
1292 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001293
1294 if (old_dir_nlink != old_dir->i_nlink) {
1295 if (!old_dir_bh) {
1296 mlog(ML_ERROR, "need to change nlink for old dir "
Mark Fashehb06970532006-03-03 10:24:33 -08001297 "%llu from %d to %d but bh is NULL!\n",
1298 (unsigned long long)OCFS2_I(old_dir)->ip_blkno,
1299 (int)old_dir_nlink, old_dir->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001300 } else {
1301 struct ocfs2_dinode *fe;
1302 status = ocfs2_journal_access(handle, old_dir,
1303 old_dir_bh,
1304 OCFS2_JOURNAL_ACCESS_WRITE);
1305 fe = (struct ocfs2_dinode *) old_dir_bh->b_data;
1306 fe->i_links_count = cpu_to_le16(old_dir->i_nlink);
1307 status = ocfs2_journal_dirty(handle, old_dir_bh);
1308 }
1309 }
1310
Mark Fasheh379dfe92006-09-08 14:21:03 -07001311 ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir);
Mark Fashehccd979b2005-12-15 14:31:24 -08001312 status = 0;
1313bail:
1314 if (rename_lock)
1315 ocfs2_rename_unlock(osb);
1316
1317 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001318 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001319
Mark Fasheh8d5596c2006-10-06 15:04:51 -07001320 if (parents_locked)
1321 ocfs2_double_unlock(old_dir, new_dir);
1322
1323 if (old_child_locked)
1324 ocfs2_meta_unlock(old_inode, 1);
1325
1326 if (new_child_locked)
1327 ocfs2_meta_unlock(new_inode, 1);
1328
Mark Fasheh5098c272006-10-05 18:12:57 -07001329 if (orphan_dir) {
1330 /* This was locked for us in ocfs2_prepare_orphan_dir() */
1331 ocfs2_meta_unlock(orphan_dir, 1);
1332 mutex_unlock(&orphan_dir->i_mutex);
1333 iput(orphan_dir);
1334 }
1335
Mark Fashehccd979b2005-12-15 14:31:24 -08001336 if (new_inode)
1337 sync_mapping_buffers(old_inode->i_mapping);
1338
1339 if (new_inode)
1340 iput(new_inode);
1341 if (newfe_bh)
1342 brelse(newfe_bh);
Mark Fasheh592282c2007-01-02 17:59:40 -08001343 if (old_inode_bh)
1344 brelse(old_inode_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001345 if (old_dir_bh)
1346 brelse(old_dir_bh);
1347 if (new_dir_bh)
1348 brelse(new_dir_bh);
1349 if (new_de_bh)
1350 brelse(new_de_bh);
1351 if (old_de_bh)
1352 brelse(old_de_bh);
1353 if (old_inode_de_bh)
1354 brelse(old_inode_de_bh);
1355 if (orphan_entry_bh)
1356 brelse(orphan_entry_bh);
1357 if (insert_entry_bh)
1358 brelse(insert_entry_bh);
1359
1360 mlog_exit(status);
1361
1362 return status;
1363}
1364
1365/*
1366 * we expect i_size = strlen(symname). Copy symname into the file
1367 * data, including the null terminator.
1368 */
1369static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001370 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001371 struct inode *inode,
1372 const char *symname)
1373{
1374 struct buffer_head **bhs = NULL;
1375 const char *c;
1376 struct super_block *sb = osb->sb;
Mark Fasheh4f902c32007-03-09 16:26:50 -08001377 u64 p_blkno, p_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -08001378 int virtual, blocks, status, i, bytes_left;
1379
1380 bytes_left = i_size_read(inode) + 1;
1381 /* we can't trust i_blocks because we're actually going to
1382 * write i_size + 1 bytes. */
1383 blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
1384
Andrew Morton5515eff2006-03-26 01:37:53 -08001385 mlog_entry("i_blocks = %llu, i_size = %llu, blocks = %d\n",
1386 (unsigned long long)inode->i_blocks,
1387 i_size_read(inode), blocks);
Mark Fashehccd979b2005-12-15 14:31:24 -08001388
1389 /* Sanity check -- make sure we're going to fit. */
1390 if (bytes_left >
1391 ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) {
1392 status = -EIO;
1393 mlog_errno(status);
1394 goto bail;
1395 }
1396
1397 bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL);
1398 if (!bhs) {
1399 status = -ENOMEM;
1400 mlog_errno(status);
1401 goto bail;
1402 }
1403
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001404 status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks,
1405 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001406 if (status < 0) {
1407 mlog_errno(status);
1408 goto bail;
1409 }
1410
1411 /* links can never be larger than one cluster so we know this
1412 * is all going to be contiguous, but do a sanity check
1413 * anyway. */
1414 if ((p_blocks << sb->s_blocksize_bits) < bytes_left) {
1415 status = -EIO;
1416 mlog_errno(status);
1417 goto bail;
1418 }
1419
1420 virtual = 0;
1421 while(bytes_left > 0) {
1422 c = &symname[virtual * sb->s_blocksize];
1423
1424 bhs[virtual] = sb_getblk(sb, p_blkno);
1425 if (!bhs[virtual]) {
1426 status = -ENOMEM;
1427 mlog_errno(status);
1428 goto bail;
1429 }
1430 ocfs2_set_new_buffer_uptodate(inode, bhs[virtual]);
1431
1432 status = ocfs2_journal_access(handle, inode, bhs[virtual],
1433 OCFS2_JOURNAL_ACCESS_CREATE);
1434 if (status < 0) {
1435 mlog_errno(status);
1436 goto bail;
1437 }
1438
1439 memset(bhs[virtual]->b_data, 0, sb->s_blocksize);
1440
1441 memcpy(bhs[virtual]->b_data, c,
1442 (bytes_left > sb->s_blocksize) ? sb->s_blocksize :
1443 bytes_left);
1444
1445 status = ocfs2_journal_dirty(handle, bhs[virtual]);
1446 if (status < 0) {
1447 mlog_errno(status);
1448 goto bail;
1449 }
1450
1451 virtual++;
1452 p_blkno++;
1453 bytes_left -= sb->s_blocksize;
1454 }
1455
1456 status = 0;
1457bail:
1458
1459 if (bhs) {
1460 for(i = 0; i < blocks; i++)
1461 if (bhs[i])
1462 brelse(bhs[i]);
1463 kfree(bhs);
1464 }
1465
1466 mlog_exit(status);
1467 return status;
1468}
1469
1470static int ocfs2_symlink(struct inode *dir,
1471 struct dentry *dentry,
1472 const char *symname)
1473{
1474 int status, l, credits;
1475 u64 newsize;
1476 struct ocfs2_super *osb = NULL;
1477 struct inode *inode = NULL;
1478 struct super_block *sb;
1479 struct buffer_head *new_fe_bh = NULL;
1480 struct buffer_head *de_bh = NULL;
1481 struct buffer_head *parent_fe_bh = NULL;
1482 struct ocfs2_dinode *fe = NULL;
1483 struct ocfs2_dinode *dirfe;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001484 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001485 struct ocfs2_alloc_context *inode_ac = NULL;
1486 struct ocfs2_alloc_context *data_ac = NULL;
1487
1488 mlog_entry("(0x%p, 0x%p, symname='%s' actual='%.*s')\n", dir,
1489 dentry, symname, dentry->d_name.len, dentry->d_name.name);
1490
1491 sb = dir->i_sb;
1492 osb = OCFS2_SB(sb);
1493
1494 l = strlen(symname) + 1;
1495
1496 credits = ocfs2_calc_symlink_credits(sb);
1497
Mark Fashehccd979b2005-12-15 14:31:24 -08001498 /* lock the parent directory */
Mark Fasheh4bcec182006-10-09 16:02:40 -07001499 status = ocfs2_meta_lock(dir, &parent_fe_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001500 if (status < 0) {
1501 if (status != -ENOENT)
1502 mlog_errno(status);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001503 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001504 }
1505
1506 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
1507 if (!dirfe->i_links_count) {
1508 /* can't make a file in a deleted directory. */
1509 status = -ENOENT;
1510 goto bail;
1511 }
1512
1513 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
1514 dentry->d_name.len);
1515 if (status)
1516 goto bail;
1517
1518 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
1519 dentry->d_name.name,
1520 dentry->d_name.len, &de_bh);
1521 if (status < 0) {
1522 mlog_errno(status);
1523 goto bail;
1524 }
1525
Mark Fashehda5cbf22006-10-06 18:34:35 -07001526 status = ocfs2_reserve_new_inode(osb, &inode_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001527 if (status < 0) {
1528 if (status != -ENOSPC)
1529 mlog_errno(status);
1530 goto bail;
1531 }
1532
1533 /* don't reserve bitmap space for fast symlinks. */
1534 if (l > ocfs2_fast_symlink_chars(sb)) {
Mark Fashehda5cbf22006-10-06 18:34:35 -07001535 status = ocfs2_reserve_clusters(osb, 1, &data_ac);
Mark Fashehccd979b2005-12-15 14:31:24 -08001536 if (status < 0) {
1537 if (status != -ENOSPC)
1538 mlog_errno(status);
1539 goto bail;
1540 }
1541 }
1542
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001543 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001544 if (IS_ERR(handle)) {
1545 status = PTR_ERR(handle);
1546 handle = NULL;
1547 mlog_errno(status);
1548 goto bail;
1549 }
1550
1551 status = ocfs2_mknod_locked(osb, dir, dentry,
1552 S_IFLNK | S_IRWXUGO, 0,
1553 &new_fe_bh, parent_fe_bh, handle,
1554 &inode, inode_ac);
1555 if (status < 0) {
1556 mlog_errno(status);
1557 goto bail;
1558 }
1559
1560 fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
1561 inode->i_rdev = 0;
1562 newsize = l - 1;
1563 if (l > ocfs2_fast_symlink_chars(sb)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08001564 u32 offset = 0;
1565
Mark Fashehccd979b2005-12-15 14:31:24 -08001566 inode->i_op = &ocfs2_symlink_inode_operations;
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001567 status = ocfs2_do_extend_allocation(osb, inode, &offset, 1, 0,
Mark Fashehdcd05382007-01-16 11:32:23 -08001568 new_fe_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -08001569 handle, data_ac, NULL,
1570 NULL);
1571 if (status < 0) {
1572 if (status != -ENOSPC && status != -EINTR) {
Mark Fashehb06970532006-03-03 10:24:33 -08001573 mlog(ML_ERROR,
1574 "Failed to extend file to %llu\n",
1575 (unsigned long long)newsize);
Mark Fashehccd979b2005-12-15 14:31:24 -08001576 mlog_errno(status);
1577 status = -ENOSPC;
1578 }
1579 goto bail;
1580 }
1581 i_size_write(inode, newsize);
Mark Fasheh8110b072007-03-22 16:53:23 -07001582 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001583 } else {
1584 inode->i_op = &ocfs2_fast_symlink_inode_operations;
1585 memcpy((char *) fe->id2.i_symlink, symname, l);
1586 i_size_write(inode, newsize);
1587 inode->i_blocks = 0;
1588 }
1589
1590 status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh);
1591 if (status < 0) {
1592 mlog_errno(status);
1593 goto bail;
1594 }
1595
1596 if (!ocfs2_inode_is_fast_symlink(inode)) {
1597 status = ocfs2_create_symlink_data(osb, handle, inode,
1598 symname);
1599 if (status < 0) {
1600 mlog_errno(status);
1601 goto bail;
1602 }
1603 }
1604
1605 status = ocfs2_add_entry(handle, dentry, inode,
1606 le64_to_cpu(fe->i_blkno), parent_fe_bh,
1607 de_bh);
1608 if (status < 0) {
1609 mlog_errno(status);
1610 goto bail;
1611 }
1612
Mark Fasheh0027dd52006-09-21 16:51:28 -07001613 status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
Mark Fasheh379dfe92006-09-08 14:21:03 -07001614 if (status) {
1615 mlog_errno(status);
1616 goto bail;
1617 }
1618
Mark Fashehccd979b2005-12-15 14:31:24 -08001619 insert_inode_hash(inode);
1620 dentry->d_op = &ocfs2_dentry_ops;
1621 d_instantiate(dentry, inode);
1622bail:
1623 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001624 ocfs2_commit_trans(osb, handle);
Mark Fasheh6d8fc402006-10-06 11:54:33 -07001625
1626 ocfs2_meta_unlock(dir, 1);
1627
Mark Fashehccd979b2005-12-15 14:31:24 -08001628 if (new_fe_bh)
1629 brelse(new_fe_bh);
1630 if (parent_fe_bh)
1631 brelse(parent_fe_bh);
1632 if (de_bh)
1633 brelse(de_bh);
1634 if (inode_ac)
1635 ocfs2_free_alloc_context(inode_ac);
1636 if (data_ac)
1637 ocfs2_free_alloc_context(data_ac);
1638 if ((status < 0) && inode)
1639 iput(inode);
1640
1641 mlog_exit(status);
1642
1643 return status;
1644}
1645
Mark Fashehccd979b2005-12-15 14:31:24 -08001646static int ocfs2_blkno_stringify(u64 blkno, char *name)
1647{
1648 int status, namelen;
1649
1650 mlog_entry_void();
1651
Mark Fashehb06970532006-03-03 10:24:33 -08001652 namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx",
1653 (long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001654 if (namelen <= 0) {
1655 if (namelen)
1656 status = namelen;
1657 else
1658 status = -EINVAL;
1659 mlog_errno(status);
1660 goto bail;
1661 }
1662 if (namelen != OCFS2_ORPHAN_NAMELEN) {
1663 status = -EINVAL;
1664 mlog_errno(status);
1665 goto bail;
1666 }
1667
1668 mlog(0, "built filename '%s' for orphan dir (len=%d)\n", name,
1669 namelen);
1670
1671 status = 0;
1672bail:
1673 mlog_exit(status);
1674 return status;
1675}
1676
1677static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
Mark Fasheh5098c272006-10-05 18:12:57 -07001678 struct inode **ret_orphan_dir,
Mark Fashehccd979b2005-12-15 14:31:24 -08001679 struct inode *inode,
1680 char *name,
1681 struct buffer_head **de_bh)
1682{
Mark Fasheh5098c272006-10-05 18:12:57 -07001683 struct inode *orphan_dir_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08001684 struct buffer_head *orphan_dir_bh = NULL;
1685 int status = 0;
1686
1687 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
1688 if (status < 0) {
1689 mlog_errno(status);
Mark Fasheh5098c272006-10-05 18:12:57 -07001690 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001691 }
1692
1693 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
1694 ORPHAN_DIR_SYSTEM_INODE,
1695 osb->slot_num);
1696 if (!orphan_dir_inode) {
1697 status = -ENOENT;
1698 mlog_errno(status);
Mark Fasheh5098c272006-10-05 18:12:57 -07001699 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001700 }
1701
Mark Fasheh5098c272006-10-05 18:12:57 -07001702 mutex_lock(&orphan_dir_inode->i_mutex);
1703
Mark Fasheh4bcec182006-10-09 16:02:40 -07001704 status = ocfs2_meta_lock(orphan_dir_inode, &orphan_dir_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001705 if (status < 0) {
1706 mlog_errno(status);
1707 goto leave;
1708 }
1709
1710 status = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode,
1711 orphan_dir_bh, name,
1712 OCFS2_ORPHAN_NAMELEN, de_bh);
1713 if (status < 0) {
Mark Fasheh5098c272006-10-05 18:12:57 -07001714 ocfs2_meta_unlock(orphan_dir_inode, 1);
1715
Mark Fashehccd979b2005-12-15 14:31:24 -08001716 mlog_errno(status);
1717 goto leave;
1718 }
1719
Mark Fasheh5098c272006-10-05 18:12:57 -07001720 *ret_orphan_dir = orphan_dir_inode;
1721
Mark Fashehccd979b2005-12-15 14:31:24 -08001722leave:
Mark Fasheh5098c272006-10-05 18:12:57 -07001723 if (status) {
1724 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001725 iput(orphan_dir_inode);
Mark Fasheh5098c272006-10-05 18:12:57 -07001726 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001727
1728 if (orphan_dir_bh)
1729 brelse(orphan_dir_bh);
1730
1731 mlog_exit(status);
1732 return status;
1733}
1734
1735static int ocfs2_orphan_add(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001736 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001737 struct inode *inode,
1738 struct ocfs2_dinode *fe,
1739 char *name,
Mark Fasheh5098c272006-10-05 18:12:57 -07001740 struct buffer_head *de_bh,
1741 struct inode *orphan_dir_inode)
Mark Fashehccd979b2005-12-15 14:31:24 -08001742{
Mark Fashehccd979b2005-12-15 14:31:24 -08001743 struct buffer_head *orphan_dir_bh = NULL;
1744 int status = 0;
1745 struct ocfs2_dinode *orphan_fe;
1746
1747 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
1748
Mark Fashehccd979b2005-12-15 14:31:24 -08001749 status = ocfs2_read_block(osb,
1750 OCFS2_I(orphan_dir_inode)->ip_blkno,
1751 &orphan_dir_bh, OCFS2_BH_CACHED,
1752 orphan_dir_inode);
1753 if (status < 0) {
1754 mlog_errno(status);
1755 goto leave;
1756 }
1757
1758 status = ocfs2_journal_access(handle, orphan_dir_inode, orphan_dir_bh,
1759 OCFS2_JOURNAL_ACCESS_WRITE);
1760 if (status < 0) {
1761 mlog_errno(status);
1762 goto leave;
1763 }
1764
1765 /* we're a cluster, and nlink can change on disk from
1766 * underneath us... */
1767 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
1768 if (S_ISDIR(inode->i_mode))
1769 le16_add_cpu(&orphan_fe->i_links_count, 1);
1770 orphan_dir_inode->i_nlink = le16_to_cpu(orphan_fe->i_links_count);
1771
1772 status = ocfs2_journal_dirty(handle, orphan_dir_bh);
1773 if (status < 0) {
1774 mlog_errno(status);
1775 goto leave;
1776 }
1777
1778 status = __ocfs2_add_entry(handle, orphan_dir_inode, name,
1779 OCFS2_ORPHAN_NAMELEN, inode,
1780 OCFS2_I(inode)->ip_blkno,
1781 orphan_dir_bh, de_bh);
1782 if (status < 0) {
1783 mlog_errno(status);
1784 goto leave;
1785 }
1786
1787 le32_add_cpu(&fe->i_flags, OCFS2_ORPHANED_FL);
1788
1789 /* Record which orphan dir our inode now resides
1790 * in. delete_inode will use this to determine which orphan
1791 * dir to lock. */
Tiger Yang50008632007-03-20 16:01:38 -07001792 fe->i_orphaned_slot = cpu_to_le16(osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001793
Mark Fashehb06970532006-03-03 10:24:33 -08001794 mlog(0, "Inode %llu orphaned in slot %d\n",
1795 (unsigned long long)OCFS2_I(inode)->ip_blkno, osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001796
1797leave:
Mark Fashehccd979b2005-12-15 14:31:24 -08001798 if (orphan_dir_bh)
1799 brelse(orphan_dir_bh);
1800
1801 mlog_exit(status);
1802 return status;
1803}
1804
1805/* unlike orphan_add, we expect the orphan dir to already be locked here. */
1806int ocfs2_orphan_del(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001807 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001808 struct inode *orphan_dir_inode,
1809 struct inode *inode,
1810 struct buffer_head *orphan_dir_bh)
1811{
1812 char name[OCFS2_ORPHAN_NAMELEN + 1];
1813 struct ocfs2_dinode *orphan_fe;
1814 int status = 0;
1815 struct buffer_head *target_de_bh = NULL;
1816 struct ocfs2_dir_entry *target_de = NULL;
1817
1818 mlog_entry_void();
1819
1820 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
1821 if (status < 0) {
1822 mlog_errno(status);
1823 goto leave;
1824 }
1825
Mark Fashehb06970532006-03-03 10:24:33 -08001826 mlog(0, "removing '%s' from orphan dir %llu (namelen=%d)\n",
1827 name, (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
1828 OCFS2_ORPHAN_NAMELEN);
Mark Fashehccd979b2005-12-15 14:31:24 -08001829
1830 /* find it's spot in the orphan directory */
1831 target_de_bh = ocfs2_find_entry(name, OCFS2_ORPHAN_NAMELEN,
1832 orphan_dir_inode, &target_de);
1833 if (!target_de_bh) {
1834 status = -ENOENT;
1835 mlog_errno(status);
1836 goto leave;
1837 }
1838
1839 /* remove it from the orphan directory */
1840 status = ocfs2_delete_entry(handle, orphan_dir_inode, target_de,
1841 target_de_bh);
1842 if (status < 0) {
1843 mlog_errno(status);
1844 goto leave;
1845 }
1846
1847 status = ocfs2_journal_access(handle,orphan_dir_inode, orphan_dir_bh,
1848 OCFS2_JOURNAL_ACCESS_WRITE);
1849 if (status < 0) {
1850 mlog_errno(status);
1851 goto leave;
1852 }
1853
1854 /* do the i_nlink dance! :) */
1855 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
1856 if (S_ISDIR(inode->i_mode))
1857 le16_add_cpu(&orphan_fe->i_links_count, -1);
1858 orphan_dir_inode->i_nlink = le16_to_cpu(orphan_fe->i_links_count);
1859
1860 status = ocfs2_journal_dirty(handle, orphan_dir_bh);
1861 if (status < 0) {
1862 mlog_errno(status);
1863 goto leave;
1864 }
1865
1866leave:
1867 if (target_de_bh)
1868 brelse(target_de_bh);
1869
1870 mlog_exit(status);
1871 return status;
1872}
1873
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001874const struct inode_operations ocfs2_dir_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08001875 .create = ocfs2_create,
1876 .lookup = ocfs2_lookup,
1877 .link = ocfs2_link,
1878 .unlink = ocfs2_unlink,
1879 .rmdir = ocfs2_unlink,
1880 .symlink = ocfs2_symlink,
1881 .mkdir = ocfs2_mkdir,
1882 .mknod = ocfs2_mknod,
1883 .rename = ocfs2_rename,
1884 .setattr = ocfs2_setattr,
1885 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001886 .permission = ocfs2_permission,
Mark Fashehccd979b2005-12-15 14:31:24 -08001887};