1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Create and rename file, directory, symlinks
7 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 * Portions of this code from linux/fs/ext3/dir.c
11 * Copyright (C) 1992, 1993, 1994, 1995
13 * Laboratoire MASI - Institut Blaise pascal
14 * Universite Pierre et Marie Curie (Paris VI)
18 * linux/fs/minix/dir.c
20 * Copyright (C) 1991, 1992 Linux Torvalds
24 #include <linux/types.h>
25 #include <linux/slab.h>
26 #include <linux/highmem.h>
27 #include <linux/quotaops.h>
28 #include <linux/iversion.h>
30 #include <cluster/masklog.h>
38 #include "extent_map.h"
50 #include "ocfs2_trace.h"
53 #include "buffer_head_io.h"
55 static int ocfs2_mknod_locked(struct ocfs2_super *osb,
59 struct buffer_head **new_fe_bh,
60 struct buffer_head *parent_fe_bh,
62 struct ocfs2_alloc_context *inode_ac);
64 static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
65 struct inode **ret_orphan_dir,
68 struct ocfs2_dir_lookup_result *lookup,
71 static int ocfs2_orphan_add(struct ocfs2_super *osb,
74 struct buffer_head *fe_bh,
76 struct ocfs2_dir_lookup_result *lookup,
77 struct inode *orphan_dir_inode,
80 static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
85 static int ocfs2_double_lock(struct ocfs2_super *osb,
86 struct buffer_head **bh1,
88 struct buffer_head **bh2,
92 static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2);
93 /* An orphan dir name is an 8 byte value, printed as a hex string */
94 #define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64)))
96 static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry,
101 struct inode *inode = NULL;
103 struct ocfs2_inode_info *oi;
105 trace_ocfs2_lookup(dir, dentry, dentry->d_name.len,
107 (unsigned long long)OCFS2_I(dir)->ip_blkno, 0);
109 if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) {
110 ret = ERR_PTR(-ENAMETOOLONG);
114 status = ocfs2_inode_lock_nested(dir, NULL, 0, OI_LS_PARENT);
116 if (status != -ENOENT)
118 ret = ERR_PTR(status);
122 status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name,
123 dentry->d_name.len, &blkno);
127 inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0);
129 ret = ERR_PTR(-EACCES);
134 /* Clear any orphaned state... If we were able to look up the
135 * inode from a directory, it certainly can't be orphaned. We
136 * might have the bad state from a node which intended to
137 * orphan this inode but crashed before it could commit the
139 spin_lock(&oi->ip_lock);
140 oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED;
141 spin_unlock(&oi->ip_lock);
144 ret = d_splice_alias(inode, dentry);
148 * If d_splice_alias() finds a DCACHE_DISCONNECTED
149 * dentry, it will d_move() it on top of ourse. The
150 * return value will indicate this however, so in
151 * those cases, we switch them around for the locking
154 * NOTE: This dentry already has ->d_op set from
155 * ocfs2_get_parent() and ocfs2_get_dentry()
157 if (!IS_ERR_OR_NULL(ret))
160 status = ocfs2_dentry_attach_lock(dentry, inode,
161 OCFS2_I(dir)->ip_blkno);
164 ret = ERR_PTR(status);
168 ocfs2_dentry_attach_gen(dentry);
171 /* Don't drop the cluster lock until *after* the d_add --
172 * unlink on another node will message us to remove that
173 * dentry under this lock so otherwise we can race this with
174 * the downconvert thread and have a stale dentry. */
175 ocfs2_inode_unlock(dir, 0);
179 trace_ocfs2_lookup_ret(ret);
184 static struct inode *ocfs2_get_init_inode(struct inode *dir, umode_t mode)
189 inode = new_inode(dir->i_sb);
191 mlog(ML_ERROR, "new_inode failed!\n");
192 return ERR_PTR(-ENOMEM);
195 /* populate as many fields early on as possible - many of
196 * these are used by the support functions here and in
200 mode = mode_strip_sgid(&nop_mnt_idmap, dir, mode);
201 inode_init_owner(&nop_mnt_idmap, inode, dir, mode);
202 status = dquot_initialize(inode);
205 return ERR_PTR(status);
211 static void ocfs2_cleanup_add_entry_failure(struct ocfs2_super *osb,
212 struct dentry *dentry, struct inode *inode)
214 struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
216 ocfs2_simple_drop_lockres(osb, &dl->dl_lockres);
217 ocfs2_lock_res_free(&dl->dl_lockres);
218 BUG_ON(dl->dl_count != 1);
219 spin_lock(&dentry_attach_lock);
220 dentry->d_fsdata = NULL;
221 spin_unlock(&dentry_attach_lock);
226 static int ocfs2_mknod(struct mnt_idmap *idmap,
228 struct dentry *dentry,
233 struct buffer_head *parent_fe_bh = NULL;
234 handle_t *handle = NULL;
235 struct ocfs2_super *osb;
236 struct ocfs2_dinode *dirfe;
237 struct ocfs2_dinode *fe = NULL;
238 struct buffer_head *new_fe_bh = NULL;
239 struct inode *inode = NULL;
240 struct ocfs2_alloc_context *inode_ac = NULL;
241 struct ocfs2_alloc_context *data_ac = NULL;
242 struct ocfs2_alloc_context *meta_ac = NULL;
243 int want_clusters = 0;
245 int xattr_credits = 0;
246 struct ocfs2_security_xattr_info si = {
250 int did_quota_inode = 0;
251 struct ocfs2_dir_lookup_result lookup = { NULL, };
253 int did_block_signals = 0;
254 struct ocfs2_dentry_lock *dl = NULL;
256 trace_ocfs2_mknod(dir, dentry, dentry->d_name.len, dentry->d_name.name,
257 (unsigned long long)OCFS2_I(dir)->ip_blkno,
258 (unsigned long)dev, mode);
260 status = dquot_initialize(dir);
266 /* get our super block */
267 osb = OCFS2_SB(dir->i_sb);
269 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
271 if (status != -ENOENT)
276 if (S_ISDIR(mode) && (dir->i_nlink >= ocfs2_link_max(osb))) {
281 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
282 if (!ocfs2_read_links_count(dirfe)) {
283 /* can't make a file in a deleted directory. */
288 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
293 /* get a spot inside the dir. */
294 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
296 dentry->d_name.len, &lookup);
302 /* reserve an inode spot */
303 status = ocfs2_reserve_new_inode(osb, &inode_ac);
305 if (status != -ENOSPC)
310 inode = ocfs2_get_init_inode(dir, mode);
312 status = PTR_ERR(inode);
318 /* get security xattr */
319 status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
321 if (status == -EOPNOTSUPP)
329 /* calculate meta data/clusters for setting security and acl xattr */
330 status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode,
332 &xattr_credits, &want_meta);
338 /* Reserve a cluster if creating an extent based directory. */
339 if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) {
342 /* Dir indexing requires extra space as well */
343 if (ocfs2_supports_indexed_dirs(osb))
347 status = ocfs2_reserve_new_metadata_blocks(osb, want_meta, &meta_ac);
349 if (status != -ENOSPC)
354 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
356 if (status != -ENOSPC)
361 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb,
364 if (IS_ERR(handle)) {
365 status = PTR_ERR(handle);
371 /* Starting to change things, restart is no longer possible. */
372 ocfs2_block_signals(&oldset);
373 did_block_signals = 1;
375 status = dquot_alloc_inode(inode);
380 /* do the real work now. */
381 status = ocfs2_mknod_locked(osb, dir, inode, dev,
382 &new_fe_bh, parent_fe_bh, handle,
389 fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
391 status = ocfs2_fill_new_dir(osb, handle, dir, inode,
392 new_fe_bh, data_ac, meta_ac);
398 status = ocfs2_journal_access_di(handle, INODE_CACHE(dir),
400 OCFS2_JOURNAL_ACCESS_WRITE);
405 ocfs2_add_links_count(dirfe, 1);
406 ocfs2_journal_dirty(handle, parent_fe_bh);
410 status = ocfs2_init_acl(handle, inode, dir, new_fe_bh, parent_fe_bh,
419 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
428 * Do this before adding the entry to the directory. We add
429 * also set d_op after success so that ->d_iput() will cleanup
430 * the dentry lock even if ocfs2_add_entry() fails below.
432 status = ocfs2_dentry_attach_lock(dentry, inode,
433 OCFS2_I(dir)->ip_blkno);
439 dl = dentry->d_fsdata;
441 status = ocfs2_add_entry(handle, dentry, inode,
442 OCFS2_I(inode)->ip_blkno, parent_fe_bh,
449 insert_inode_hash(inode);
450 d_instantiate(dentry, inode);
454 if (status < 0 && S_ISDIR(mode)) {
455 ocfs2_add_links_count(dirfe, -1);
460 if (status < 0 && did_quota_inode)
461 dquot_free_inode(inode);
463 if (status < 0 && fe)
464 ocfs2_set_links_count(fe, 0);
465 ocfs2_commit_trans(osb, handle);
468 ocfs2_inode_unlock(dir, 1);
469 if (did_block_signals)
470 ocfs2_unblock_signals(&oldset);
473 brelse(parent_fe_bh);
476 ocfs2_free_dir_lookup_result(&lookup);
479 ocfs2_free_alloc_context(inode_ac);
482 ocfs2_free_alloc_context(data_ac);
485 ocfs2_free_alloc_context(meta_ac);
488 * We should call iput after the i_rwsem of the bitmap been
489 * unlocked in ocfs2_free_alloc_context, or the
490 * ocfs2_delete_inode will mutex_lock again.
492 if ((status < 0) && inode) {
494 ocfs2_cleanup_add_entry_failure(osb, dentry, inode);
496 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
507 static int __ocfs2_mknod_locked(struct inode *dir,
510 struct buffer_head **new_fe_bh,
511 struct buffer_head *parent_fe_bh,
513 struct ocfs2_alloc_context *inode_ac,
514 u64 fe_blkno, u64 suballoc_loc, u16 suballoc_bit)
517 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
518 struct ocfs2_dinode *fe = NULL;
519 struct ocfs2_extent_list *fel;
521 struct ocfs2_inode_info *oi = OCFS2_I(inode);
522 struct timespec64 ts;
526 /* populate as many fields early on as possible - many of
527 * these are used by the support functions here and in
529 inode->i_ino = ino_from_blkno(osb->sb, fe_blkno);
530 oi->ip_blkno = fe_blkno;
531 spin_lock(&osb->osb_lock);
532 inode->i_generation = osb->s_next_generation++;
533 spin_unlock(&osb->osb_lock);
535 *new_fe_bh = sb_getblk(osb->sb, fe_blkno);
541 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), *new_fe_bh);
543 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
545 OCFS2_JOURNAL_ACCESS_CREATE);
551 fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data;
552 memset(fe, 0, osb->sb->s_blocksize);
554 fe->i_generation = cpu_to_le32(inode->i_generation);
555 fe->i_fs_generation = cpu_to_le32(osb->fs_generation);
556 fe->i_blkno = cpu_to_le64(fe_blkno);
557 fe->i_suballoc_loc = cpu_to_le64(suballoc_loc);
558 fe->i_suballoc_bit = cpu_to_le16(suballoc_bit);
559 fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot);
560 fe->i_uid = cpu_to_le32(i_uid_read(inode));
561 fe->i_gid = cpu_to_le32(i_gid_read(inode));
562 fe->i_mode = cpu_to_le16(inode->i_mode);
563 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
564 fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev));
566 ocfs2_set_links_count(fe, inode->i_nlink);
568 fe->i_last_eb_blk = 0;
569 strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE);
570 fe->i_flags |= cpu_to_le32(OCFS2_VALID_FL);
571 ktime_get_coarse_real_ts64(&ts);
572 fe->i_atime = fe->i_ctime = fe->i_mtime =
573 cpu_to_le64(ts.tv_sec);
574 fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec =
575 cpu_to_le32(ts.tv_nsec);
579 * If supported, directories start with inline data. If inline
580 * isn't supported, but indexing is, we start them as indexed.
582 feat = le16_to_cpu(fe->i_dyn_features);
583 if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) {
584 fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL);
586 fe->id2.i_data.id_count = cpu_to_le16(
587 ocfs2_max_inline_data_with_xattr(osb->sb, fe));
589 fel = &fe->id2.i_list;
590 fel->l_tree_depth = 0;
591 fel->l_next_free_rec = 0;
592 fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb));
595 ocfs2_journal_dirty(handle, *new_fe_bh);
597 ocfs2_populate_inode(inode, fe, 1);
598 ocfs2_ci_set_new(osb, INODE_CACHE(inode));
599 if (!ocfs2_mount_local(osb)) {
600 status = ocfs2_create_new_inode_locks(inode);
605 ocfs2_update_inode_fsync_trans(handle, inode, 1);
620 static int ocfs2_mknod_locked(struct ocfs2_super *osb,
624 struct buffer_head **new_fe_bh,
625 struct buffer_head *parent_fe_bh,
627 struct ocfs2_alloc_context *inode_ac)
630 u64 suballoc_loc, fe_blkno = 0;
635 status = ocfs2_claim_new_inode(handle, dir, parent_fe_bh,
636 inode_ac, &suballoc_loc,
637 &suballoc_bit, &fe_blkno);
643 return __ocfs2_mknod_locked(dir, inode, dev, new_fe_bh,
644 parent_fe_bh, handle, inode_ac,
645 fe_blkno, suballoc_loc, suballoc_bit);
648 static int ocfs2_mkdir(struct mnt_idmap *idmap,
650 struct dentry *dentry,
655 trace_ocfs2_mkdir(dir, dentry, dentry->d_name.len, dentry->d_name.name,
656 OCFS2_I(dir)->ip_blkno, mode);
657 ret = ocfs2_mknod(&nop_mnt_idmap, dir, dentry, mode | S_IFDIR, 0);
664 static int ocfs2_create(struct mnt_idmap *idmap,
666 struct dentry *dentry,
672 trace_ocfs2_create(dir, dentry, dentry->d_name.len, dentry->d_name.name,
673 (unsigned long long)OCFS2_I(dir)->ip_blkno, mode);
674 ret = ocfs2_mknod(&nop_mnt_idmap, dir, dentry, mode | S_IFREG, 0);
681 static int ocfs2_link(struct dentry *old_dentry,
683 struct dentry *dentry)
686 struct inode *inode = d_inode(old_dentry);
687 struct inode *old_dir = d_inode(old_dentry->d_parent);
689 struct buffer_head *fe_bh = NULL;
690 struct buffer_head *old_dir_bh = NULL;
691 struct buffer_head *parent_fe_bh = NULL;
692 struct ocfs2_dinode *fe = NULL;
693 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
694 struct ocfs2_dir_lookup_result lookup = { NULL, };
698 trace_ocfs2_link((unsigned long long)OCFS2_I(inode)->ip_blkno,
699 old_dentry->d_name.len, old_dentry->d_name.name,
700 dentry->d_name.len, dentry->d_name.name);
702 if (S_ISDIR(inode->i_mode))
705 err = dquot_initialize(dir);
711 err = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
712 &parent_fe_bh, dir, 0);
719 /* make sure both dirs have bhs
720 * get an extra ref on old_dir_bh if old==new */
723 parent_fe_bh = old_dir_bh;
724 get_bh(parent_fe_bh);
726 mlog(ML_ERROR, "%s: no old_dir_bh!\n", osb->uuid_str);
737 err = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
738 old_dentry->d_name.len, &old_de_ino);
745 * Check whether another node removed the source inode while we
748 if (old_de_ino != OCFS2_I(inode)->ip_blkno) {
753 err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
758 err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
760 dentry->d_name.len, &lookup);
766 err = ocfs2_inode_lock(inode, &fe_bh, 1);
773 fe = (struct ocfs2_dinode *) fe_bh->b_data;
774 if (ocfs2_read_links_count(fe) >= ocfs2_link_max(osb)) {
776 goto out_unlock_inode;
779 handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb));
780 if (IS_ERR(handle)) {
781 err = PTR_ERR(handle);
784 goto out_unlock_inode;
787 /* Starting to change things, restart is no longer possible. */
788 ocfs2_block_signals(&oldset);
790 err = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
791 OCFS2_JOURNAL_ACCESS_WRITE);
798 inode_set_ctime_current(inode);
799 ocfs2_set_links_count(fe, inode->i_nlink);
800 fe->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
801 fe->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
802 ocfs2_update_inode_fsync_trans(handle, inode, 0);
803 ocfs2_journal_dirty(handle, fe_bh);
805 err = ocfs2_add_entry(handle, dentry, inode,
806 OCFS2_I(inode)->ip_blkno,
807 parent_fe_bh, &lookup);
809 ocfs2_add_links_count(fe, -1);
815 err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
822 d_instantiate(dentry, inode);
825 ocfs2_commit_trans(osb, handle);
826 ocfs2_unblock_signals(&oldset);
828 ocfs2_inode_unlock(inode, 1);
831 ocfs2_double_unlock(old_dir, dir);
834 brelse(parent_fe_bh);
837 ocfs2_free_dir_lookup_result(&lookup);
846 * Takes and drops an exclusive lock on the given dentry. This will
847 * force other nodes to drop it.
849 static int ocfs2_remote_dentry_delete(struct dentry *dentry)
853 ret = ocfs2_dentry_lock(dentry, 1);
857 ocfs2_dentry_unlock(dentry, 1);
862 static inline int ocfs2_inode_is_unlinkable(struct inode *inode)
864 if (S_ISDIR(inode->i_mode)) {
865 if (inode->i_nlink == 2)
870 if (inode->i_nlink == 1)
875 static int ocfs2_unlink(struct inode *dir,
876 struct dentry *dentry)
879 int child_locked = 0;
880 bool is_unlinkable = false;
881 struct inode *inode = d_inode(dentry);
882 struct inode *orphan_dir = NULL;
883 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
885 struct ocfs2_dinode *fe = NULL;
886 struct buffer_head *fe_bh = NULL;
887 struct buffer_head *parent_node_bh = NULL;
888 handle_t *handle = NULL;
889 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
890 struct ocfs2_dir_lookup_result lookup = { NULL, };
891 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
893 trace_ocfs2_unlink(dir, dentry, dentry->d_name.len,
895 (unsigned long long)OCFS2_I(dir)->ip_blkno,
896 (unsigned long long)OCFS2_I(inode)->ip_blkno);
898 status = dquot_initialize(dir);
904 BUG_ON(d_inode(dentry->d_parent) != dir);
906 if (inode == osb->root_inode)
909 status = ocfs2_inode_lock_nested(dir, &parent_node_bh, 1,
912 if (status != -ENOENT)
917 status = ocfs2_find_files_on_disk(dentry->d_name.name,
918 dentry->d_name.len, &blkno, dir,
921 if (status != -ENOENT)
926 if (OCFS2_I(inode)->ip_blkno != blkno) {
929 trace_ocfs2_unlink_noent(
930 (unsigned long long)OCFS2_I(inode)->ip_blkno,
931 (unsigned long long)blkno,
932 OCFS2_I(inode)->ip_flags);
936 status = ocfs2_inode_lock(inode, &fe_bh, 1);
938 if (status != -ENOENT)
944 if (S_ISDIR(inode->i_mode)) {
945 if (inode->i_nlink != 2 || !ocfs2_empty_dir(inode)) {
951 status = ocfs2_remote_dentry_delete(dentry);
953 /* This remote delete should succeed under all normal
959 if (ocfs2_inode_is_unlinkable(inode)) {
960 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
961 OCFS2_I(inode)->ip_blkno,
962 orphan_name, &orphan_insert,
968 is_unlinkable = true;
971 handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb));
972 if (IS_ERR(handle)) {
973 status = PTR_ERR(handle);
979 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
980 OCFS2_JOURNAL_ACCESS_WRITE);
986 fe = (struct ocfs2_dinode *) fe_bh->b_data;
988 /* delete the name from the parent dir */
989 status = ocfs2_delete_entry(handle, dir, &lookup);
995 if (S_ISDIR(inode->i_mode))
998 ocfs2_set_links_count(fe, inode->i_nlink);
999 ocfs2_update_inode_fsync_trans(handle, inode, 0);
1000 ocfs2_journal_dirty(handle, fe_bh);
1002 inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
1003 if (S_ISDIR(inode->i_mode))
1006 status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh);
1009 if (S_ISDIR(inode->i_mode))
1014 if (is_unlinkable) {
1015 status = ocfs2_orphan_add(osb, handle, inode, fe_bh,
1016 orphan_name, &orphan_insert, orphan_dir, false);
1023 ocfs2_commit_trans(osb, handle);
1026 /* This was locked for us in ocfs2_prepare_orphan_dir() */
1027 ocfs2_inode_unlock(orphan_dir, 1);
1028 inode_unlock(orphan_dir);
1033 ocfs2_inode_unlock(inode, 1);
1035 ocfs2_inode_unlock(dir, 1);
1038 brelse(parent_node_bh);
1040 ocfs2_free_dir_lookup_result(&orphan_insert);
1041 ocfs2_free_dir_lookup_result(&lookup);
1043 if (status && (status != -ENOTEMPTY) && (status != -ENOENT))
1049 static int ocfs2_check_if_ancestor(struct ocfs2_super *osb,
1050 u64 src_inode_no, u64 dest_inode_no)
1053 u64 parent_inode_no = 0;
1054 u64 child_inode_no = src_inode_no;
1055 struct inode *child_inode;
1057 #define MAX_LOOKUP_TIMES 32
1059 child_inode = ocfs2_iget(osb, child_inode_no, 0, 0);
1060 if (IS_ERR(child_inode)) {
1061 ret = PTR_ERR(child_inode);
1065 ret = ocfs2_inode_lock(child_inode, NULL, 0);
1073 ret = ocfs2_lookup_ino_from_name(child_inode, "..", 2,
1075 ocfs2_inode_unlock(child_inode, 0);
1082 if (parent_inode_no == dest_inode_no) {
1087 if (parent_inode_no == osb->root_inode->i_ino) {
1092 child_inode_no = parent_inode_no;
1094 if (++i >= MAX_LOOKUP_TIMES) {
1095 mlog_ratelimited(ML_NOTICE, "max lookup times reached, "
1096 "filesystem may have nested directories, "
1097 "src inode: %llu, dest inode: %llu.\n",
1098 (unsigned long long)src_inode_no,
1099 (unsigned long long)dest_inode_no);
1109 * The only place this should be used is rename and link!
1110 * if they have the same id, then the 1st one is the only one locked.
1112 static int ocfs2_double_lock(struct ocfs2_super *osb,
1113 struct buffer_head **bh1,
1114 struct inode *inode1,
1115 struct buffer_head **bh2,
1116 struct inode *inode2,
1120 int inode1_is_ancestor, inode2_is_ancestor;
1121 struct ocfs2_inode_info *oi1 = OCFS2_I(inode1);
1122 struct ocfs2_inode_info *oi2 = OCFS2_I(inode2);
1124 trace_ocfs2_double_lock((unsigned long long)oi1->ip_blkno,
1125 (unsigned long long)oi2->ip_blkno);
1132 /* we always want to lock the one with the lower lockid first.
1133 * and if they are nested, we lock ancestor first */
1134 if (oi1->ip_blkno != oi2->ip_blkno) {
1135 inode1_is_ancestor = ocfs2_check_if_ancestor(osb, oi2->ip_blkno,
1137 if (inode1_is_ancestor < 0) {
1138 status = inode1_is_ancestor;
1142 inode2_is_ancestor = ocfs2_check_if_ancestor(osb, oi1->ip_blkno,
1144 if (inode2_is_ancestor < 0) {
1145 status = inode2_is_ancestor;
1149 if ((inode1_is_ancestor == 1) ||
1150 (oi1->ip_blkno < oi2->ip_blkno &&
1151 inode2_is_ancestor == 0)) {
1152 /* switch id1 and id2 around */
1154 swap(inode2, inode1);
1157 status = ocfs2_inode_lock_nested(inode2, bh2, 1,
1158 rename == 1 ? OI_LS_RENAME1 : OI_LS_PARENT);
1160 if (status != -ENOENT)
1167 status = ocfs2_inode_lock_nested(inode1, bh1, 1,
1168 rename == 1 ? OI_LS_RENAME2 : OI_LS_PARENT);
1171 * An error return must mean that no cluster locks
1172 * were held on function exit.
1174 if (oi1->ip_blkno != oi2->ip_blkno) {
1175 ocfs2_inode_unlock(inode2, 1);
1180 if (status != -ENOENT)
1184 trace_ocfs2_double_lock_end(
1185 (unsigned long long)oi1->ip_blkno,
1186 (unsigned long long)oi2->ip_blkno);
1194 static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2)
1196 ocfs2_inode_unlock(inode1, 1);
1198 if (inode1 != inode2)
1199 ocfs2_inode_unlock(inode2, 1);
1202 static int ocfs2_rename(struct mnt_idmap *idmap,
1203 struct inode *old_dir,
1204 struct dentry *old_dentry,
1205 struct inode *new_dir,
1206 struct dentry *new_dentry,
1209 int status = 0, rename_lock = 0, parents_locked = 0, target_exists = 0;
1210 int old_child_locked = 0, new_child_locked = 0, update_dot_dot = 0;
1211 struct inode *old_inode = d_inode(old_dentry);
1212 struct inode *new_inode = d_inode(new_dentry);
1213 struct inode *orphan_dir = NULL;
1214 struct ocfs2_dinode *newfe = NULL;
1215 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
1216 struct buffer_head *newfe_bh = NULL;
1217 struct buffer_head *old_inode_bh = NULL;
1218 struct ocfs2_super *osb = NULL;
1219 u64 newfe_blkno, old_de_ino;
1220 handle_t *handle = NULL;
1221 struct buffer_head *old_dir_bh = NULL;
1222 struct buffer_head *new_dir_bh = NULL;
1223 u32 old_dir_nlink = old_dir->i_nlink;
1224 struct ocfs2_dinode *old_di;
1225 struct ocfs2_dir_lookup_result old_inode_dot_dot_res = { NULL, };
1226 struct ocfs2_dir_lookup_result target_lookup_res = { NULL, };
1227 struct ocfs2_dir_lookup_result old_entry_lookup = { NULL, };
1228 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
1229 struct ocfs2_dir_lookup_result target_insert = { NULL, };
1230 bool should_add_orphan = false;
1235 /* At some point it might be nice to break this function up a
1238 trace_ocfs2_rename(old_dir, old_dentry, new_dir, new_dentry,
1239 old_dentry->d_name.len, old_dentry->d_name.name,
1240 new_dentry->d_name.len, new_dentry->d_name.name);
1242 status = dquot_initialize(old_dir);
1247 status = dquot_initialize(new_dir);
1253 osb = OCFS2_SB(old_dir->i_sb);
1256 if (!igrab(new_inode))
1260 /* Assume a directory hierarchy thusly:
1263 * a,b,c, and d are all directories.
1265 * from cwd of 'a' on both nodes:
1269 * And that's why, just like the VFS, we need a file system
1271 if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) {
1272 status = ocfs2_rename_lock(osb);
1279 /* here we cannot guarantee the inodes haven't just been
1280 * changed, so check if they are nested again */
1281 status = ocfs2_check_if_ancestor(osb, new_dir->i_ino,
1286 } else if (status == 1) {
1288 trace_ocfs2_rename_not_permitted(
1289 (unsigned long long)old_inode->i_ino,
1290 (unsigned long long)new_dir->i_ino);
1295 /* if old and new are the same, this'll just do one lock. */
1296 status = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
1297 &new_dir_bh, new_dir, 1);
1304 if (!new_dir->i_nlink) {
1309 /* make sure both dirs have bhs
1310 * get an extra ref on old_dir_bh if old==new */
1313 new_dir_bh = old_dir_bh;
1316 mlog(ML_ERROR, "no old_dir_bh!\n");
1323 * Aside from allowing a meta data update, the locking here
1324 * also ensures that the downconvert thread on other nodes
1325 * won't have to concurrently downconvert the inode and the
1328 status = ocfs2_inode_lock_nested(old_inode, &old_inode_bh, 1,
1331 if (status != -ENOENT)
1335 old_child_locked = 1;
1337 status = ocfs2_remote_dentry_delete(old_dentry);
1343 if (S_ISDIR(old_inode->i_mode) && new_dir != old_dir) {
1344 u64 old_inode_parent;
1347 status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent,
1349 &old_inode_dot_dot_res);
1355 if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) {
1360 if (!new_inode && new_dir->i_nlink >= ocfs2_link_max(osb)) {
1366 status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
1367 old_dentry->d_name.len,
1375 * Check for inode number is _not_ due to possible IO errors.
1376 * We might rmdir the source, keep it as pwd of some process
1377 * and merrily kill the link to whatever was created under the
1378 * same name. Goodbye sticky bit ;-<
1380 if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) {
1385 /* check if the target already exists (in which case we need
1387 status = ocfs2_find_files_on_disk(new_dentry->d_name.name,
1388 new_dentry->d_name.len,
1389 &newfe_blkno, new_dir,
1390 &target_lookup_res);
1391 /* The only error we allow here is -ENOENT because the new
1392 * file not existing is perfectly valid. */
1393 if ((status < 0) && (status != -ENOENT)) {
1394 /* If we cannot find the file specified we should just */
1395 /* return the error... */
1402 if (!target_exists && new_inode) {
1404 * Target was unlinked by another node while we were
1405 * waiting to get to ocfs2_rename(). There isn't
1406 * anything we can do here to help the situation, so
1407 * bubble up the appropriate error.
1413 /* In case we need to overwrite an existing file, we blow it
1415 if (target_exists) {
1416 /* VFS didn't think there existed an inode here, but
1417 * someone else in the cluster must have raced our
1418 * rename to create one. Today we error cleanly, in
1419 * the future we should consider calling iget to build
1420 * a new struct inode for this entry. */
1424 trace_ocfs2_rename_target_exists(new_dentry->d_name.len,
1425 new_dentry->d_name.name);
1429 if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) {
1432 trace_ocfs2_rename_disagree(
1433 (unsigned long long)OCFS2_I(new_inode)->ip_blkno,
1434 (unsigned long long)newfe_blkno,
1435 OCFS2_I(new_inode)->ip_flags);
1439 status = ocfs2_inode_lock(new_inode, &newfe_bh, 1);
1441 if (status != -ENOENT)
1445 new_child_locked = 1;
1447 status = ocfs2_remote_dentry_delete(new_dentry);
1453 newfe = (struct ocfs2_dinode *) newfe_bh->b_data;
1455 trace_ocfs2_rename_over_existing(
1456 (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ?
1457 (unsigned long long)newfe_bh->b_blocknr : 0ULL);
1459 if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) {
1460 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
1461 OCFS2_I(new_inode)->ip_blkno,
1462 orphan_name, &orphan_insert,
1468 should_add_orphan = true;
1471 BUG_ON(d_inode(new_dentry->d_parent) != new_dir);
1473 status = ocfs2_check_dir_for_entry(new_dir,
1474 new_dentry->d_name.name,
1475 new_dentry->d_name.len);
1479 status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh,
1480 new_dentry->d_name.name,
1481 new_dentry->d_name.len,
1489 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
1490 if (IS_ERR(handle)) {
1491 status = PTR_ERR(handle);
1497 if (target_exists) {
1498 if (S_ISDIR(new_inode->i_mode)) {
1499 if (new_inode->i_nlink != 2 ||
1500 !ocfs2_empty_dir(new_inode)) {
1501 status = -ENOTEMPTY;
1505 status = ocfs2_journal_access_di(handle, INODE_CACHE(new_inode),
1507 OCFS2_JOURNAL_ACCESS_WRITE);
1513 /* change the dirent to point to the correct inode */
1514 status = ocfs2_update_entry(new_dir, handle, &target_lookup_res,
1520 inode_inc_iversion(new_dir);
1522 if (S_ISDIR(new_inode->i_mode))
1523 ocfs2_set_links_count(newfe, 0);
1525 ocfs2_add_links_count(newfe, -1);
1526 ocfs2_journal_dirty(handle, newfe_bh);
1527 if (should_add_orphan) {
1528 status = ocfs2_orphan_add(osb, handle, new_inode,
1529 newfe_bh, orphan_name,
1530 &orphan_insert, orphan_dir, false);
1537 /* if the name was not found in new_dir, add it now */
1538 status = ocfs2_add_entry(handle, new_dentry, old_inode,
1539 OCFS2_I(old_inode)->ip_blkno,
1540 new_dir_bh, &target_insert);
1547 inode_set_ctime_current(old_inode);
1548 mark_inode_dirty(old_inode);
1550 status = ocfs2_journal_access_di(handle, INODE_CACHE(old_inode),
1552 OCFS2_JOURNAL_ACCESS_WRITE);
1554 old_di = (struct ocfs2_dinode *) old_inode_bh->b_data;
1556 old_di->i_ctime = cpu_to_le64(inode_get_ctime_sec(old_inode));
1557 old_di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(old_inode));
1558 ocfs2_journal_dirty(handle, old_inode_bh);
1563 * Now that the name has been added to new_dir, remove the old name.
1565 * We don't keep any directory entry context around until now
1566 * because the insert might have changed the type of directory
1567 * we're dealing with.
1569 status = ocfs2_find_entry(old_dentry->d_name.name,
1570 old_dentry->d_name.len, old_dir,
1573 if (!is_journal_aborted(osb->journal->j_journal)) {
1574 ocfs2_error(osb->sb, "new entry %.*s is added, but old entry %.*s "
1576 new_dentry->d_name.len, new_dentry->d_name.name,
1577 old_dentry->d_name.len, old_dentry->d_name.name);
1582 status = ocfs2_delete_entry(handle, old_dir, &old_entry_lookup);
1585 if (!is_journal_aborted(osb->journal->j_journal)) {
1586 ocfs2_error(osb->sb, "new entry %.*s is added, but old entry %.*s "
1588 new_dentry->d_name.len, new_dentry->d_name.name,
1589 old_dentry->d_name.len, old_dentry->d_name.name);
1595 drop_nlink(new_inode);
1596 inode_set_ctime_current(new_inode);
1598 inode_set_mtime_to_ts(old_dir, inode_set_ctime_current(old_dir));
1600 if (update_dot_dot) {
1601 status = ocfs2_update_entry(old_inode, handle,
1602 &old_inode_dot_dot_res, new_dir);
1609 if (S_ISDIR(old_inode->i_mode)) {
1610 drop_nlink(old_dir);
1612 drop_nlink(new_inode);
1615 mark_inode_dirty(new_dir);
1618 mark_inode_dirty(old_dir);
1619 ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh);
1621 mark_inode_dirty(new_inode);
1622 ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh);
1625 if (old_dir != new_dir) {
1626 /* Keep the same times on both directories.*/
1627 inode_set_mtime_to_ts(new_dir,
1628 inode_set_ctime_to_ts(new_dir, inode_get_ctime(old_dir)));
1631 * This will also pick up the i_nlink change from the
1634 ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh);
1637 if (old_dir_nlink != old_dir->i_nlink) {
1639 mlog(ML_ERROR, "need to change nlink for old dir "
1640 "%llu from %d to %d but bh is NULL!\n",
1641 (unsigned long long)OCFS2_I(old_dir)->ip_blkno,
1642 (int)old_dir_nlink, old_dir->i_nlink);
1644 struct ocfs2_dinode *fe;
1645 status = ocfs2_journal_access_di(handle,
1646 INODE_CACHE(old_dir),
1648 OCFS2_JOURNAL_ACCESS_WRITE);
1653 fe = (struct ocfs2_dinode *) old_dir_bh->b_data;
1654 ocfs2_set_links_count(fe, old_dir->i_nlink);
1655 ocfs2_journal_dirty(handle, old_dir_bh);
1658 ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir);
1662 ocfs2_commit_trans(osb, handle);
1665 /* This was locked for us in ocfs2_prepare_orphan_dir() */
1666 ocfs2_inode_unlock(orphan_dir, 1);
1667 inode_unlock(orphan_dir);
1671 if (new_child_locked)
1672 ocfs2_inode_unlock(new_inode, 1);
1674 if (old_child_locked)
1675 ocfs2_inode_unlock(old_inode, 1);
1678 ocfs2_double_unlock(old_dir, new_dir);
1681 ocfs2_rename_unlock(osb);
1684 sync_mapping_buffers(old_inode->i_mapping);
1688 ocfs2_free_dir_lookup_result(&target_lookup_res);
1689 ocfs2_free_dir_lookup_result(&old_entry_lookup);
1690 ocfs2_free_dir_lookup_result(&old_inode_dot_dot_res);
1691 ocfs2_free_dir_lookup_result(&orphan_insert);
1692 ocfs2_free_dir_lookup_result(&target_insert);
1695 brelse(old_inode_bh);
1706 * we expect i_size = strlen(symname). Copy symname into the file
1707 * data, including the null terminator.
1709 static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
1711 struct inode *inode,
1712 const char *symname)
1714 struct buffer_head **bhs = NULL;
1716 struct super_block *sb = osb->sb;
1717 u64 p_blkno, p_blocks;
1718 int virtual, blocks, status, i, bytes_left;
1720 bytes_left = i_size_read(inode) + 1;
1721 /* we can't trust i_blocks because we're actually going to
1722 * write i_size + 1 bytes. */
1723 blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
1725 trace_ocfs2_create_symlink_data((unsigned long long)inode->i_blocks,
1726 i_size_read(inode), blocks);
1728 /* Sanity check -- make sure we're going to fit. */
1730 ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) {
1736 bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL);
1743 status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks,
1750 /* links can never be larger than one cluster so we know this
1751 * is all going to be contiguous, but do a sanity check
1753 if ((p_blocks << sb->s_blocksize_bits) < bytes_left) {
1760 while(bytes_left > 0) {
1761 c = &symname[virtual * sb->s_blocksize];
1763 bhs[virtual] = sb_getblk(sb, p_blkno);
1764 if (!bhs[virtual]) {
1769 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode),
1772 status = ocfs2_journal_access(handle, INODE_CACHE(inode),
1774 OCFS2_JOURNAL_ACCESS_CREATE);
1780 memset(bhs[virtual]->b_data, 0, sb->s_blocksize);
1782 memcpy(bhs[virtual]->b_data, c,
1783 (bytes_left > sb->s_blocksize) ? sb->s_blocksize :
1786 ocfs2_journal_dirty(handle, bhs[virtual]);
1790 bytes_left -= sb->s_blocksize;
1797 for(i = 0; i < blocks; i++)
1807 static int ocfs2_symlink(struct mnt_idmap *idmap,
1809 struct dentry *dentry,
1810 const char *symname)
1812 int status, l, credits;
1814 struct ocfs2_super *osb = NULL;
1815 struct inode *inode = NULL;
1816 struct super_block *sb;
1817 struct buffer_head *new_fe_bh = NULL;
1818 struct buffer_head *parent_fe_bh = NULL;
1819 struct ocfs2_dinode *fe = NULL;
1820 struct ocfs2_dinode *dirfe;
1821 handle_t *handle = NULL;
1822 struct ocfs2_alloc_context *inode_ac = NULL;
1823 struct ocfs2_alloc_context *data_ac = NULL;
1824 struct ocfs2_alloc_context *xattr_ac = NULL;
1825 int want_clusters = 0;
1826 int xattr_credits = 0;
1827 struct ocfs2_security_xattr_info si = {
1831 int did_quota = 0, did_quota_inode = 0;
1832 struct ocfs2_dir_lookup_result lookup = { NULL, };
1834 int did_block_signals = 0;
1835 struct ocfs2_dentry_lock *dl = NULL;
1837 trace_ocfs2_symlink_begin(dir, dentry, symname,
1838 dentry->d_name.len, dentry->d_name.name);
1840 status = dquot_initialize(dir);
1849 l = strlen(symname) + 1;
1851 credits = ocfs2_calc_symlink_credits(sb);
1853 /* lock the parent directory */
1854 status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
1856 if (status != -ENOENT)
1861 dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
1862 if (!ocfs2_read_links_count(dirfe)) {
1863 /* can't make a file in a deleted directory. */
1868 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
1869 dentry->d_name.len);
1873 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
1874 dentry->d_name.name,
1875 dentry->d_name.len, &lookup);
1881 status = ocfs2_reserve_new_inode(osb, &inode_ac);
1883 if (status != -ENOSPC)
1888 inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO);
1889 if (IS_ERR(inode)) {
1890 status = PTR_ERR(inode);
1896 /* get security xattr */
1897 status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
1899 if (status == -EOPNOTSUPP)
1907 /* calculate meta data/clusters for setting security xattr */
1909 status = ocfs2_calc_security_init(dir, &si, &want_clusters,
1910 &xattr_credits, &xattr_ac);
1917 /* don't reserve bitmap space for fast symlinks. */
1918 if (l > ocfs2_fast_symlink_chars(sb))
1921 status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
1923 if (status != -ENOSPC)
1928 handle = ocfs2_start_trans(osb, credits + xattr_credits);
1929 if (IS_ERR(handle)) {
1930 status = PTR_ERR(handle);
1936 /* Starting to change things, restart is no longer possible. */
1937 ocfs2_block_signals(&oldset);
1938 did_block_signals = 1;
1940 status = dquot_alloc_inode(inode);
1943 did_quota_inode = 1;
1945 trace_ocfs2_symlink_create(dir, dentry, dentry->d_name.len,
1946 dentry->d_name.name,
1947 (unsigned long long)OCFS2_I(dir)->ip_blkno,
1950 status = ocfs2_mknod_locked(osb, dir, inode,
1951 0, &new_fe_bh, parent_fe_bh, handle,
1958 fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
1961 inode->i_op = &ocfs2_symlink_inode_operations;
1962 inode_nohighmem(inode);
1963 if (l > ocfs2_fast_symlink_chars(sb)) {
1966 status = dquot_alloc_space_nodirty(inode,
1967 ocfs2_clusters_to_bytes(osb->sb, 1));
1971 inode->i_mapping->a_ops = &ocfs2_aops;
1972 status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0,
1974 handle, data_ac, NULL,
1977 if (status != -ENOSPC && status != -EINTR) {
1979 "Failed to extend file to %llu\n",
1980 (unsigned long long)newsize);
1986 i_size_write(inode, newsize);
1987 inode->i_blocks = ocfs2_inode_sector_count(inode);
1989 inode->i_mapping->a_ops = &ocfs2_fast_symlink_aops;
1990 memcpy((char *) fe->id2.i_symlink, symname, l);
1991 i_size_write(inode, newsize);
1992 inode->i_blocks = 0;
1995 status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh);
2001 if (!ocfs2_inode_is_fast_symlink(inode)) {
2002 status = ocfs2_create_symlink_data(osb, handle, inode,
2011 status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
2020 * Do this before adding the entry to the directory. We add
2021 * also set d_op after success so that ->d_iput() will cleanup
2022 * the dentry lock even if ocfs2_add_entry() fails below.
2024 status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
2030 dl = dentry->d_fsdata;
2032 status = ocfs2_add_entry(handle, dentry, inode,
2033 le64_to_cpu(fe->i_blkno), parent_fe_bh,
2040 insert_inode_hash(inode);
2041 d_instantiate(dentry, inode);
2043 if (status < 0 && did_quota)
2044 dquot_free_space_nodirty(inode,
2045 ocfs2_clusters_to_bytes(osb->sb, 1));
2046 if (status < 0 && did_quota_inode)
2047 dquot_free_inode(inode);
2049 if (status < 0 && fe)
2050 ocfs2_set_links_count(fe, 0);
2051 ocfs2_commit_trans(osb, handle);
2054 ocfs2_inode_unlock(dir, 1);
2055 if (did_block_signals)
2056 ocfs2_unblock_signals(&oldset);
2059 brelse(parent_fe_bh);
2061 ocfs2_free_dir_lookup_result(&lookup);
2063 ocfs2_free_alloc_context(inode_ac);
2065 ocfs2_free_alloc_context(data_ac);
2067 ocfs2_free_alloc_context(xattr_ac);
2068 if ((status < 0) && inode) {
2070 ocfs2_cleanup_add_entry_failure(osb, dentry, inode);
2072 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
2083 static int ocfs2_blkno_stringify(u64 blkno, char *name)
2085 int status, namelen;
2087 namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx",
2097 if (namelen != OCFS2_ORPHAN_NAMELEN) {
2103 trace_ocfs2_blkno_stringify(blkno, name, namelen);
2112 static int ocfs2_lookup_lock_orphan_dir(struct ocfs2_super *osb,
2113 struct inode **ret_orphan_dir,
2114 struct buffer_head **ret_orphan_dir_bh)
2116 struct inode *orphan_dir_inode;
2117 struct buffer_head *orphan_dir_bh = NULL;
2120 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2121 ORPHAN_DIR_SYSTEM_INODE,
2123 if (!orphan_dir_inode) {
2129 inode_lock(orphan_dir_inode);
2131 ret = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2133 inode_unlock(orphan_dir_inode);
2134 iput(orphan_dir_inode);
2140 *ret_orphan_dir = orphan_dir_inode;
2141 *ret_orphan_dir_bh = orphan_dir_bh;
2146 static int __ocfs2_prepare_orphan_dir(struct inode *orphan_dir_inode,
2147 struct buffer_head *orphan_dir_bh,
2150 struct ocfs2_dir_lookup_result *lookup,
2154 struct ocfs2_super *osb = OCFS2_SB(orphan_dir_inode->i_sb);
2156 (OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN) :
2157 OCFS2_ORPHAN_NAMELEN;
2160 ret = snprintf(name, OCFS2_DIO_ORPHAN_PREFIX_LEN + 1, "%s",
2161 OCFS2_DIO_ORPHAN_PREFIX);
2162 if (ret != OCFS2_DIO_ORPHAN_PREFIX_LEN) {
2168 ret = ocfs2_blkno_stringify(blkno,
2169 name + OCFS2_DIO_ORPHAN_PREFIX_LEN);
2171 ret = ocfs2_blkno_stringify(blkno, name);
2177 ret = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode,
2178 orphan_dir_bh, name,
2189 * ocfs2_prepare_orphan_dir() - Prepare an orphan directory for
2190 * insertion of an orphan.
2191 * @osb: ocfs2 file system
2192 * @ret_orphan_dir: Orphan dir inode - returned locked!
2193 * @blkno: Actual block number of the inode to be inserted into orphan dir.
2194 * @name: Buffer to store the name of the orphan.
2195 * @lookup: dir lookup result, to be passed back into functions like
2197 * @dio: Flag indicating if direct IO is being used or not.
2199 * Returns zero on success and the ret_orphan_dir, name and lookup
2200 * fields will be populated.
2202 * Returns non-zero on failure.
2204 static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
2205 struct inode **ret_orphan_dir,
2208 struct ocfs2_dir_lookup_result *lookup,
2211 struct inode *orphan_dir_inode = NULL;
2212 struct buffer_head *orphan_dir_bh = NULL;
2215 ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir_inode,
2222 ret = __ocfs2_prepare_orphan_dir(orphan_dir_inode, orphan_dir_bh,
2223 blkno, name, lookup, dio);
2229 *ret_orphan_dir = orphan_dir_inode;
2232 brelse(orphan_dir_bh);
2235 ocfs2_inode_unlock(orphan_dir_inode, 1);
2236 inode_unlock(orphan_dir_inode);
2237 iput(orphan_dir_inode);
2245 static int ocfs2_orphan_add(struct ocfs2_super *osb,
2247 struct inode *inode,
2248 struct buffer_head *fe_bh,
2250 struct ocfs2_dir_lookup_result *lookup,
2251 struct inode *orphan_dir_inode,
2254 struct buffer_head *orphan_dir_bh = NULL;
2256 struct ocfs2_dinode *orphan_fe;
2257 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data;
2259 (OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN) :
2260 OCFS2_ORPHAN_NAMELEN;
2262 trace_ocfs2_orphan_add_begin(
2263 (unsigned long long)OCFS2_I(inode)->ip_blkno);
2265 status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh);
2271 status = ocfs2_journal_access_di(handle,
2272 INODE_CACHE(orphan_dir_inode),
2274 OCFS2_JOURNAL_ACCESS_WRITE);
2281 * We're going to journal the change of i_flags and i_orphaned_slot.
2282 * It's safe anyway, though some callers may duplicate the journaling.
2283 * Journaling within the func just make the logic look more
2286 status = ocfs2_journal_access_di(handle,
2289 OCFS2_JOURNAL_ACCESS_WRITE);
2295 /* we're a cluster, and nlink can change on disk from
2296 * underneath us... */
2297 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
2298 if (S_ISDIR(inode->i_mode))
2299 ocfs2_add_links_count(orphan_fe, 1);
2300 set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2301 ocfs2_journal_dirty(handle, orphan_dir_bh);
2303 status = __ocfs2_add_entry(handle, orphan_dir_inode, name,
2305 OCFS2_I(inode)->ip_blkno,
2306 orphan_dir_bh, lookup);
2313 /* Update flag OCFS2_DIO_ORPHANED_FL and record the orphan
2316 fe->i_flags |= cpu_to_le32(OCFS2_DIO_ORPHANED_FL);
2317 fe->i_dio_orphaned_slot = cpu_to_le16(osb->slot_num);
2319 fe->i_flags |= cpu_to_le32(OCFS2_ORPHANED_FL);
2320 OCFS2_I(inode)->ip_flags &= ~OCFS2_INODE_SKIP_ORPHAN_DIR;
2322 /* Record which orphan dir our inode now resides
2323 * in. delete_inode will use this to determine which orphan
2325 fe->i_orphaned_slot = cpu_to_le16(osb->slot_num);
2328 ocfs2_journal_dirty(handle, fe_bh);
2330 trace_ocfs2_orphan_add_end((unsigned long long)OCFS2_I(inode)->ip_blkno,
2335 if (S_ISDIR(inode->i_mode))
2336 ocfs2_add_links_count(orphan_fe, -1);
2337 set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2341 brelse(orphan_dir_bh);
2346 /* unlike orphan_add, we expect the orphan dir to already be locked here. */
2347 int ocfs2_orphan_del(struct ocfs2_super *osb,
2349 struct inode *orphan_dir_inode,
2350 struct inode *inode,
2351 struct buffer_head *orphan_dir_bh,
2354 char name[OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN + 1];
2355 struct ocfs2_dinode *orphan_fe;
2357 struct ocfs2_dir_lookup_result lookup = { NULL, };
2360 status = snprintf(name, OCFS2_DIO_ORPHAN_PREFIX_LEN + 1, "%s",
2361 OCFS2_DIO_ORPHAN_PREFIX);
2362 if (status != OCFS2_DIO_ORPHAN_PREFIX_LEN) {
2368 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno,
2369 name + OCFS2_DIO_ORPHAN_PREFIX_LEN);
2371 status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
2377 trace_ocfs2_orphan_del(
2378 (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
2379 name, strlen(name));
2381 status = ocfs2_journal_access_di(handle,
2382 INODE_CACHE(orphan_dir_inode),
2384 OCFS2_JOURNAL_ACCESS_WRITE);
2390 /* find it's spot in the orphan directory */
2391 status = ocfs2_find_entry(name, strlen(name), orphan_dir_inode,
2398 /* remove it from the orphan directory */
2399 status = ocfs2_delete_entry(handle, orphan_dir_inode, &lookup);
2405 /* do the i_nlink dance! :) */
2406 orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
2407 if (S_ISDIR(inode->i_mode))
2408 ocfs2_add_links_count(orphan_fe, -1);
2409 set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2410 ocfs2_journal_dirty(handle, orphan_dir_bh);
2413 ocfs2_free_dir_lookup_result(&lookup);
2421 * ocfs2_prep_new_orphaned_file() - Prepare the orphan dir to receive a newly
2422 * allocated file. This is different from the typical 'add to orphan dir'
2423 * operation in that the inode does not yet exist. This is a problem because
2424 * the orphan dir stringifies the inode block number to come up with it's
2425 * dirent. Obviously if the inode does not yet exist we have a chicken and egg
2426 * problem. This function works around it by calling deeper into the orphan
2427 * and suballoc code than other callers. Use this only by necessity.
2428 * @dir: The directory which this inode will ultimately wind up under - not the
2430 * @dir_bh: buffer_head the @dir inode block
2431 * @orphan_name: string of length (CFS2_ORPHAN_NAMELEN + 1). Will be filled
2432 * with the string to be used for orphan dirent. Pass back to the orphan dir
2434 * @ret_orphan_dir: orphan dir inode returned to be passed back into orphan
2436 * @ret_di_blkno: block number where the new inode will be allocated.
2437 * @orphan_insert: Dir insert context to be passed back into orphan dir code.
2438 * @ret_inode_ac: Inode alloc context to be passed back to the allocator.
2440 * Returns zero on success and the ret_orphan_dir, name and lookup
2441 * fields will be populated.
2443 * Returns non-zero on failure.
2445 static int ocfs2_prep_new_orphaned_file(struct inode *dir,
2446 struct buffer_head *dir_bh,
2448 struct inode **ret_orphan_dir,
2450 struct ocfs2_dir_lookup_result *orphan_insert,
2451 struct ocfs2_alloc_context **ret_inode_ac)
2455 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2456 struct inode *orphan_dir = NULL;
2457 struct buffer_head *orphan_dir_bh = NULL;
2458 struct ocfs2_alloc_context *inode_ac = NULL;
2460 ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir, &orphan_dir_bh);
2466 /* reserve an inode spot */
2467 ret = ocfs2_reserve_new_inode(osb, &inode_ac);
2474 ret = ocfs2_find_new_inode_loc(dir, dir_bh, inode_ac,
2481 ret = __ocfs2_prepare_orphan_dir(orphan_dir, orphan_dir_bh,
2482 di_blkno, orphan_name, orphan_insert,
2491 *ret_orphan_dir = orphan_dir;
2492 *ret_di_blkno = di_blkno;
2493 *ret_inode_ac = inode_ac;
2495 * orphan_name and orphan_insert are already up to
2496 * date via prepare_orphan_dir
2499 /* Unroll reserve_new_inode* */
2501 ocfs2_free_alloc_context(inode_ac);
2503 /* Unroll orphan dir locking */
2504 inode_unlock(orphan_dir);
2505 ocfs2_inode_unlock(orphan_dir, 1);
2509 brelse(orphan_dir_bh);
2514 int ocfs2_create_inode_in_orphan(struct inode *dir,
2516 struct inode **new_inode)
2518 int status, did_quota_inode = 0;
2519 struct inode *inode = NULL;
2520 struct inode *orphan_dir = NULL;
2521 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2522 handle_t *handle = NULL;
2523 char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
2524 struct buffer_head *parent_di_bh = NULL;
2525 struct buffer_head *new_di_bh = NULL;
2526 struct ocfs2_alloc_context *inode_ac = NULL;
2527 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
2528 u64 di_blkno, suballoc_loc;
2531 status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2533 if (status != -ENOENT)
2538 status = ocfs2_prep_new_orphaned_file(dir, parent_di_bh,
2539 orphan_name, &orphan_dir,
2540 &di_blkno, &orphan_insert, &inode_ac);
2542 if (status != -ENOSPC)
2547 inode = ocfs2_get_init_inode(dir, mode);
2548 if (IS_ERR(inode)) {
2549 status = PTR_ERR(inode);
2555 handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, 0, 0));
2556 if (IS_ERR(handle)) {
2557 status = PTR_ERR(handle);
2563 status = dquot_alloc_inode(inode);
2566 did_quota_inode = 1;
2568 status = ocfs2_claim_new_inode_at_loc(handle, dir, inode_ac,
2570 &suballoc_bit, di_blkno);
2577 /* do the real work now. */
2578 status = __ocfs2_mknod_locked(dir, inode,
2579 0, &new_di_bh, parent_di_bh, handle,
2580 inode_ac, di_blkno, suballoc_loc,
2587 status = ocfs2_orphan_add(osb, handle, inode, new_di_bh, orphan_name,
2588 &orphan_insert, orphan_dir, false);
2594 /* get open lock so that only nodes can't remove it from orphan dir. */
2595 status = ocfs2_open_lock(inode);
2599 insert_inode_hash(inode);
2601 if (status < 0 && did_quota_inode)
2602 dquot_free_inode(inode);
2604 ocfs2_commit_trans(osb, handle);
2607 /* This was locked for us in ocfs2_prepare_orphan_dir() */
2608 ocfs2_inode_unlock(orphan_dir, 1);
2609 inode_unlock(orphan_dir);
2613 if ((status < 0) && inode) {
2619 ocfs2_free_alloc_context(inode_ac);
2626 ocfs2_free_dir_lookup_result(&orphan_insert);
2628 ocfs2_inode_unlock(dir, 1);
2629 brelse(parent_di_bh);
2633 int ocfs2_add_inode_to_orphan(struct ocfs2_super *osb,
2634 struct inode *inode)
2636 char orphan_name[OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN + 1];
2637 struct inode *orphan_dir_inode = NULL;
2638 struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
2639 struct buffer_head *di_bh = NULL;
2641 handle_t *handle = NULL;
2642 struct ocfs2_dinode *di = NULL;
2644 status = ocfs2_inode_lock(inode, &di_bh, 1);
2650 di = (struct ocfs2_dinode *) di_bh->b_data;
2652 * Another append dio crashed?
2653 * If so, manually recover it first.
2655 if (unlikely(di->i_flags & cpu_to_le32(OCFS2_DIO_ORPHANED_FL))) {
2656 status = ocfs2_truncate_file(inode, di_bh, i_size_read(inode));
2658 if (status != -ENOSPC)
2660 goto bail_unlock_inode;
2663 status = ocfs2_del_inode_from_orphan(osb, inode, di_bh, 0, 0);
2666 goto bail_unlock_inode;
2670 status = ocfs2_prepare_orphan_dir(osb, &orphan_dir_inode,
2671 OCFS2_I(inode)->ip_blkno,
2677 goto bail_unlock_inode;
2680 handle = ocfs2_start_trans(osb,
2681 OCFS2_INODE_ADD_TO_ORPHAN_CREDITS);
2682 if (IS_ERR(handle)) {
2683 status = PTR_ERR(handle);
2684 goto bail_unlock_orphan;
2687 status = ocfs2_orphan_add(osb, handle, inode, di_bh, orphan_name,
2688 &orphan_insert, orphan_dir_inode, true);
2692 ocfs2_commit_trans(osb, handle);
2695 ocfs2_inode_unlock(orphan_dir_inode, 1);
2696 inode_unlock(orphan_dir_inode);
2697 iput(orphan_dir_inode);
2699 ocfs2_free_dir_lookup_result(&orphan_insert);
2702 ocfs2_inode_unlock(inode, 1);
2709 int ocfs2_del_inode_from_orphan(struct ocfs2_super *osb,
2710 struct inode *inode, struct buffer_head *di_bh,
2711 int update_isize, loff_t end)
2713 struct inode *orphan_dir_inode = NULL;
2714 struct buffer_head *orphan_dir_bh = NULL;
2715 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2716 handle_t *handle = NULL;
2719 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2720 ORPHAN_DIR_SYSTEM_INODE,
2721 le16_to_cpu(di->i_dio_orphaned_slot));
2722 if (!orphan_dir_inode) {
2728 inode_lock(orphan_dir_inode);
2729 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2731 inode_unlock(orphan_dir_inode);
2732 iput(orphan_dir_inode);
2737 handle = ocfs2_start_trans(osb,
2738 OCFS2_INODE_DEL_FROM_ORPHAN_CREDITS);
2739 if (IS_ERR(handle)) {
2740 status = PTR_ERR(handle);
2741 goto bail_unlock_orphan;
2744 BUG_ON(!(di->i_flags & cpu_to_le32(OCFS2_DIO_ORPHANED_FL)));
2746 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode,
2747 inode, orphan_dir_bh, true);
2753 status = ocfs2_journal_access_di(handle,
2756 OCFS2_JOURNAL_ACCESS_WRITE);
2762 di->i_flags &= ~cpu_to_le32(OCFS2_DIO_ORPHANED_FL);
2763 di->i_dio_orphaned_slot = 0;
2766 status = ocfs2_set_inode_size(handle, inode, di_bh, end);
2770 ocfs2_journal_dirty(handle, di_bh);
2773 ocfs2_commit_trans(osb, handle);
2776 ocfs2_inode_unlock(orphan_dir_inode, 1);
2777 inode_unlock(orphan_dir_inode);
2778 brelse(orphan_dir_bh);
2779 iput(orphan_dir_inode);
2785 int ocfs2_mv_orphaned_inode_to_new(struct inode *dir,
2786 struct inode *inode,
2787 struct dentry *dentry)
2790 struct buffer_head *parent_di_bh = NULL;
2791 handle_t *handle = NULL;
2792 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2793 struct ocfs2_dinode *dir_di, *di;
2794 struct inode *orphan_dir_inode = NULL;
2795 struct buffer_head *orphan_dir_bh = NULL;
2796 struct buffer_head *di_bh = NULL;
2797 struct ocfs2_dir_lookup_result lookup = { NULL, };
2799 trace_ocfs2_mv_orphaned_inode_to_new(dir, dentry,
2800 dentry->d_name.len, dentry->d_name.name,
2801 (unsigned long long)OCFS2_I(dir)->ip_blkno,
2802 (unsigned long long)OCFS2_I(inode)->ip_blkno);
2804 status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2806 if (status != -ENOENT)
2811 dir_di = (struct ocfs2_dinode *) parent_di_bh->b_data;
2812 if (!dir_di->i_links_count) {
2813 /* can't make a file in a deleted directory. */
2818 status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
2819 dentry->d_name.len);
2823 /* get a spot inside the dir. */
2824 status = ocfs2_prepare_dir_for_insert(osb, dir, parent_di_bh,
2825 dentry->d_name.name,
2826 dentry->d_name.len, &lookup);
2832 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2833 ORPHAN_DIR_SYSTEM_INODE,
2835 if (!orphan_dir_inode) {
2841 inode_lock(orphan_dir_inode);
2843 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2846 inode_unlock(orphan_dir_inode);
2847 iput(orphan_dir_inode);
2851 status = ocfs2_read_inode_block(inode, &di_bh);
2857 handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
2858 if (IS_ERR(handle)) {
2859 status = PTR_ERR(handle);
2865 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
2866 di_bh, OCFS2_JOURNAL_ACCESS_WRITE);
2872 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
2873 orphan_dir_bh, false);
2879 di = (struct ocfs2_dinode *)di_bh->b_data;
2880 di->i_flags &= ~cpu_to_le32(OCFS2_ORPHANED_FL);
2881 di->i_orphaned_slot = 0;
2882 set_nlink(inode, 1);
2883 ocfs2_set_links_count(di, inode->i_nlink);
2884 ocfs2_update_inode_fsync_trans(handle, inode, 1);
2885 ocfs2_journal_dirty(handle, di_bh);
2887 status = ocfs2_add_entry(handle, dentry, inode,
2888 OCFS2_I(inode)->ip_blkno, parent_di_bh,
2895 status = ocfs2_dentry_attach_lock(dentry, inode,
2896 OCFS2_I(dir)->ip_blkno);
2902 d_instantiate(dentry, inode);
2905 ocfs2_commit_trans(osb, handle);
2907 ocfs2_inode_unlock(orphan_dir_inode, 1);
2908 inode_unlock(orphan_dir_inode);
2909 iput(orphan_dir_inode);
2912 ocfs2_inode_unlock(dir, 1);
2915 brelse(parent_di_bh);
2916 brelse(orphan_dir_bh);
2918 ocfs2_free_dir_lookup_result(&lookup);
2926 const struct inode_operations ocfs2_dir_iops = {
2927 .create = ocfs2_create,
2928 .lookup = ocfs2_lookup,
2930 .unlink = ocfs2_unlink,
2931 .rmdir = ocfs2_unlink,
2932 .symlink = ocfs2_symlink,
2933 .mkdir = ocfs2_mkdir,
2934 .mknod = ocfs2_mknod,
2935 .rename = ocfs2_rename,
2936 .setattr = ocfs2_setattr,
2937 .getattr = ocfs2_getattr,
2938 .permission = ocfs2_permission,
2939 .listxattr = ocfs2_listxattr,
2940 .fiemap = ocfs2_fiemap,
2941 .get_inode_acl = ocfs2_iop_get_acl,
2942 .set_acl = ocfs2_iop_set_acl,
2943 .fileattr_get = ocfs2_fileattr_get,
2944 .fileattr_set = ocfs2_fileattr_set,