1 /* -*- 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 #include <linux/quotaops.h>
44 #include <linux/iversion.h>
45 
46 #include <cluster/masklog.h>
47 
48 #include "ocfs2.h"
49 
50 #include "alloc.h"
51 #include "dcache.h"
52 #include "dir.h"
53 #include "dlmglue.h"
54 #include "extent_map.h"
55 #include "file.h"
56 #include "inode.h"
57 #include "journal.h"
58 #include "namei.h"
59 #include "suballoc.h"
60 #include "super.h"
61 #include "symlink.h"
62 #include "sysfile.h"
63 #include "uptodate.h"
64 #include "xattr.h"
65 #include "acl.h"
66 #include "ocfs2_trace.h"
67 
68 #include "buffer_head_io.h"
69 
70 static int ocfs2_mknod_locked(struct ocfs2_super *osb,
71 			      struct inode *dir,
72 			      struct inode *inode,
73 			      dev_t dev,
74 			      struct buffer_head **new_fe_bh,
75 			      struct buffer_head *parent_fe_bh,
76 			      handle_t *handle,
77 			      struct ocfs2_alloc_context *inode_ac);
78 
79 static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
80 				    struct inode **ret_orphan_dir,
81 				    u64 blkno,
82 				    char *name,
83 				    struct ocfs2_dir_lookup_result *lookup,
84 				    bool dio);
85 
86 static int ocfs2_orphan_add(struct ocfs2_super *osb,
87 			    handle_t *handle,
88 			    struct inode *inode,
89 			    struct buffer_head *fe_bh,
90 			    char *name,
91 			    struct ocfs2_dir_lookup_result *lookup,
92 			    struct inode *orphan_dir_inode,
93 			    bool dio);
94 
95 static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
96 				     handle_t *handle,
97 				     struct inode *inode,
98 				     const char *symname);
99 
100 static int ocfs2_double_lock(struct ocfs2_super *osb,
101 			     struct buffer_head **bh1,
102 			     struct inode *inode1,
103 			     struct buffer_head **bh2,
104 			     struct inode *inode2,
105 			     int rename);
106 
107 static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2);
108 /* An orphan dir name is an 8 byte value, printed as a hex string */
109 #define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64)))
110 
ocfs2_lookup(struct inode * dir,struct dentry * dentry,unsigned int flags)111 static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry,
112 				   unsigned int flags)
113 {
114 	int status;
115 	u64 blkno;
116 	struct inode *inode = NULL;
117 	struct dentry *ret;
118 	struct ocfs2_inode_info *oi;
119 
120 	trace_ocfs2_lookup(dir, dentry, dentry->d_name.len,
121 			   dentry->d_name.name,
122 			   (unsigned long long)OCFS2_I(dir)->ip_blkno, 0);
123 
124 	if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) {
125 		ret = ERR_PTR(-ENAMETOOLONG);
126 		goto bail;
127 	}
128 
129 	status = ocfs2_inode_lock_nested(dir, NULL, 0, OI_LS_PARENT);
130 	if (status < 0) {
131 		if (status != -ENOENT)
132 			mlog_errno(status);
133 		ret = ERR_PTR(status);
134 		goto bail;
135 	}
136 
137 	status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name,
138 					    dentry->d_name.len, &blkno);
139 	if (status < 0)
140 		goto bail_add;
141 
142 	inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0);
143 	if (IS_ERR(inode)) {
144 		ret = ERR_PTR(-EACCES);
145 		goto bail_unlock;
146 	}
147 
148 	oi = OCFS2_I(inode);
149 	/* Clear any orphaned state... If we were able to look up the
150 	 * inode from a directory, it certainly can't be orphaned. We
151 	 * might have the bad state from a node which intended to
152 	 * orphan this inode but crashed before it could commit the
153 	 * unlink. */
154 	spin_lock(&oi->ip_lock);
155 	oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED;
156 	spin_unlock(&oi->ip_lock);
157 
158 bail_add:
159 	ret = d_splice_alias(inode, dentry);
160 
161 	if (inode) {
162 		/*
163 		 * If d_splice_alias() finds a DCACHE_DISCONNECTED
164 		 * dentry, it will d_move() it on top of ourse. The
165 		 * return value will indicate this however, so in
166 		 * those cases, we switch them around for the locking
167 		 * code.
168 		 *
169 		 * NOTE: This dentry already has ->d_op set from
170 		 * ocfs2_get_parent() and ocfs2_get_dentry()
171 		 */
172 		if (!IS_ERR_OR_NULL(ret))
173 			dentry = ret;
174 
175 		status = ocfs2_dentry_attach_lock(dentry, inode,
176 						  OCFS2_I(dir)->ip_blkno);
177 		if (status) {
178 			mlog_errno(status);
179 			ret = ERR_PTR(status);
180 			goto bail_unlock;
181 		}
182 	} else
183 		ocfs2_dentry_attach_gen(dentry);
184 
185 bail_unlock:
186 	/* Don't drop the cluster lock until *after* the d_add --
187 	 * unlink on another node will message us to remove that
188 	 * dentry under this lock so otherwise we can race this with
189 	 * the downconvert thread and have a stale dentry. */
190 	ocfs2_inode_unlock(dir, 0);
191 
192 bail:
193 
194 	trace_ocfs2_lookup_ret(ret);
195 
196 	return ret;
197 }
198 
ocfs2_get_init_inode(struct inode * dir,umode_t mode)199 static struct inode *ocfs2_get_init_inode(struct inode *dir, umode_t mode)
200 {
201 	struct inode *inode;
202 	int status;
203 
204 	inode = new_inode(dir->i_sb);
205 	if (!inode) {
206 		mlog(ML_ERROR, "new_inode failed!\n");
207 		return ERR_PTR(-ENOMEM);
208 	}
209 
210 	/* populate as many fields early on as possible - many of
211 	 * these are used by the support functions here and in
212 	 * callers. */
213 	if (S_ISDIR(mode))
214 		set_nlink(inode, 2);
215 	inode_init_owner(inode, dir, mode);
216 	status = dquot_initialize(inode);
217 	if (status)
218 		return ERR_PTR(status);
219 
220 	return inode;
221 }
222 
ocfs2_cleanup_add_entry_failure(struct ocfs2_super * osb,struct dentry * dentry,struct inode * inode)223 static void ocfs2_cleanup_add_entry_failure(struct ocfs2_super *osb,
224 		struct dentry *dentry, struct inode *inode)
225 {
226 	struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
227 
228 	ocfs2_simple_drop_lockres(osb, &dl->dl_lockres);
229 	ocfs2_lock_res_free(&dl->dl_lockres);
230 	BUG_ON(dl->dl_count != 1);
231 	spin_lock(&dentry_attach_lock);
232 	dentry->d_fsdata = NULL;
233 	spin_unlock(&dentry_attach_lock);
234 	kfree(dl);
235 	iput(inode);
236 }
237 
ocfs2_mknod(struct inode * dir,struct dentry * dentry,umode_t mode,dev_t dev)238 static int ocfs2_mknod(struct inode *dir,
239 		       struct dentry *dentry,
240 		       umode_t mode,
241 		       dev_t dev)
242 {
243 	int status = 0;
244 	struct buffer_head *parent_fe_bh = NULL;
245 	handle_t *handle = NULL;
246 	struct ocfs2_super *osb;
247 	struct ocfs2_dinode *dirfe;
248 	struct ocfs2_dinode *fe = NULL;
249 	struct buffer_head *new_fe_bh = NULL;
250 	struct inode *inode = NULL;
251 	struct ocfs2_alloc_context *inode_ac = NULL;
252 	struct ocfs2_alloc_context *data_ac = NULL;
253 	struct ocfs2_alloc_context *meta_ac = NULL;
254 	int want_clusters = 0;
255 	int want_meta = 0;
256 	int xattr_credits = 0;
257 	struct ocfs2_security_xattr_info si = {
258 		.enable = 1,
259 	};
260 	int did_quota_inode = 0;
261 	struct ocfs2_dir_lookup_result lookup = { NULL, };
262 	sigset_t oldset;
263 	int did_block_signals = 0;
264 	struct ocfs2_dentry_lock *dl = NULL;
265 
266 	trace_ocfs2_mknod(dir, dentry, dentry->d_name.len, dentry->d_name.name,
267 			  (unsigned long long)OCFS2_I(dir)->ip_blkno,
268 			  (unsigned long)dev, mode);
269 
270 	status = dquot_initialize(dir);
271 	if (status) {
272 		mlog_errno(status);
273 		return status;
274 	}
275 
276 	/* get our super block */
277 	osb = OCFS2_SB(dir->i_sb);
278 
279 	status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
280 	if (status < 0) {
281 		if (status != -ENOENT)
282 			mlog_errno(status);
283 		return status;
284 	}
285 
286 	if (S_ISDIR(mode) && (dir->i_nlink >= ocfs2_link_max(osb))) {
287 		status = -EMLINK;
288 		goto leave;
289 	}
290 
291 	dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
292 	if (!ocfs2_read_links_count(dirfe)) {
293 		/* can't make a file in a deleted directory. */
294 		status = -ENOENT;
295 		goto leave;
296 	}
297 
298 	status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
299 					   dentry->d_name.len);
300 	if (status)
301 		goto leave;
302 
303 	/* get a spot inside the dir. */
304 	status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
305 					      dentry->d_name.name,
306 					      dentry->d_name.len, &lookup);
307 	if (status < 0) {
308 		mlog_errno(status);
309 		goto leave;
310 	}
311 
312 	/* reserve an inode spot */
313 	status = ocfs2_reserve_new_inode(osb, &inode_ac);
314 	if (status < 0) {
315 		if (status != -ENOSPC)
316 			mlog_errno(status);
317 		goto leave;
318 	}
319 
320 	inode = ocfs2_get_init_inode(dir, mode);
321 	if (IS_ERR(inode)) {
322 		status = PTR_ERR(inode);
323 		inode = NULL;
324 		mlog_errno(status);
325 		goto leave;
326 	}
327 
328 	/* get security xattr */
329 	status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
330 	if (status) {
331 		if (status == -EOPNOTSUPP)
332 			si.enable = 0;
333 		else {
334 			mlog_errno(status);
335 			goto leave;
336 		}
337 	}
338 
339 	/* calculate meta data/clusters for setting security and acl xattr */
340 	status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode,
341 				       &si, &want_clusters,
342 				       &xattr_credits, &want_meta);
343 	if (status < 0) {
344 		mlog_errno(status);
345 		goto leave;
346 	}
347 
348 	/* Reserve a cluster if creating an extent based directory. */
349 	if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) {
350 		want_clusters += 1;
351 
352 		/* Dir indexing requires extra space as well */
353 		if (ocfs2_supports_indexed_dirs(osb))
354 			want_meta++;
355 	}
356 
357 	status = ocfs2_reserve_new_metadata_blocks(osb, want_meta, &meta_ac);
358 	if (status < 0) {
359 		if (status != -ENOSPC)
360 			mlog_errno(status);
361 		goto leave;
362 	}
363 
364 	status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
365 	if (status < 0) {
366 		if (status != -ENOSPC)
367 			mlog_errno(status);
368 		goto leave;
369 	}
370 
371 	handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb,
372 							    S_ISDIR(mode),
373 							    xattr_credits));
374 	if (IS_ERR(handle)) {
375 		status = PTR_ERR(handle);
376 		handle = NULL;
377 		mlog_errno(status);
378 		goto leave;
379 	}
380 
381 	/* Starting to change things, restart is no longer possible. */
382 	ocfs2_block_signals(&oldset);
383 	did_block_signals = 1;
384 
385 	status = dquot_alloc_inode(inode);
386 	if (status)
387 		goto leave;
388 	did_quota_inode = 1;
389 
390 	/* do the real work now. */
391 	status = ocfs2_mknod_locked(osb, dir, inode, dev,
392 				    &new_fe_bh, parent_fe_bh, handle,
393 				    inode_ac);
394 	if (status < 0) {
395 		mlog_errno(status);
396 		goto leave;
397 	}
398 
399 	fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
400 	if (S_ISDIR(mode)) {
401 		status = ocfs2_fill_new_dir(osb, handle, dir, inode,
402 					    new_fe_bh, data_ac, meta_ac);
403 		if (status < 0) {
404 			mlog_errno(status);
405 			goto leave;
406 		}
407 
408 		status = ocfs2_journal_access_di(handle, INODE_CACHE(dir),
409 						 parent_fe_bh,
410 						 OCFS2_JOURNAL_ACCESS_WRITE);
411 		if (status < 0) {
412 			mlog_errno(status);
413 			goto leave;
414 		}
415 		ocfs2_add_links_count(dirfe, 1);
416 		ocfs2_journal_dirty(handle, parent_fe_bh);
417 		inc_nlink(dir);
418 	}
419 
420 	status = ocfs2_init_acl(handle, inode, dir, new_fe_bh, parent_fe_bh,
421 			 meta_ac, data_ac);
422 
423 	if (status < 0) {
424 		mlog_errno(status);
425 		goto leave;
426 	}
427 
428 	if (si.enable) {
429 		status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
430 						 meta_ac, data_ac);
431 		if (status < 0) {
432 			mlog_errno(status);
433 			goto leave;
434 		}
435 	}
436 
437 	/*
438 	 * Do this before adding the entry to the directory. We add
439 	 * also set d_op after success so that ->d_iput() will cleanup
440 	 * the dentry lock even if ocfs2_add_entry() fails below.
441 	 */
442 	status = ocfs2_dentry_attach_lock(dentry, inode,
443 					  OCFS2_I(dir)->ip_blkno);
444 	if (status) {
445 		mlog_errno(status);
446 		goto leave;
447 	}
448 
449 	dl = dentry->d_fsdata;
450 
451 	status = ocfs2_add_entry(handle, dentry, inode,
452 				 OCFS2_I(inode)->ip_blkno, parent_fe_bh,
453 				 &lookup);
454 	if (status < 0) {
455 		mlog_errno(status);
456 		goto leave;
457 	}
458 
459 	insert_inode_hash(inode);
460 	d_instantiate(dentry, inode);
461 	status = 0;
462 leave:
463 	if (status < 0 && did_quota_inode)
464 		dquot_free_inode(inode);
465 	if (handle) {
466 		if (status < 0 && fe)
467 			ocfs2_set_links_count(fe, 0);
468 		ocfs2_commit_trans(osb, handle);
469 	}
470 
471 	ocfs2_inode_unlock(dir, 1);
472 	if (did_block_signals)
473 		ocfs2_unblock_signals(&oldset);
474 
475 	brelse(new_fe_bh);
476 	brelse(parent_fe_bh);
477 	kfree(si.value);
478 
479 	ocfs2_free_dir_lookup_result(&lookup);
480 
481 	if (inode_ac)
482 		ocfs2_free_alloc_context(inode_ac);
483 
484 	if (data_ac)
485 		ocfs2_free_alloc_context(data_ac);
486 
487 	if (meta_ac)
488 		ocfs2_free_alloc_context(meta_ac);
489 
490 	/*
491 	 * We should call iput after the i_mutex of the bitmap been
492 	 * unlocked in ocfs2_free_alloc_context, or the
493 	 * ocfs2_delete_inode will mutex_lock again.
494 	 */
495 	if ((status < 0) && inode) {
496 		if (dl)
497 			ocfs2_cleanup_add_entry_failure(osb, dentry, inode);
498 
499 		OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
500 		clear_nlink(inode);
501 		iput(inode);
502 	}
503 
504 	if (status)
505 		mlog_errno(status);
506 
507 	return status;
508 }
509 
__ocfs2_mknod_locked(struct inode * dir,struct inode * inode,dev_t dev,struct buffer_head ** new_fe_bh,struct buffer_head * parent_fe_bh,handle_t * handle,struct ocfs2_alloc_context * inode_ac,u64 fe_blkno,u64 suballoc_loc,u16 suballoc_bit)510 static int __ocfs2_mknod_locked(struct inode *dir,
511 				struct inode *inode,
512 				dev_t dev,
513 				struct buffer_head **new_fe_bh,
514 				struct buffer_head *parent_fe_bh,
515 				handle_t *handle,
516 				struct ocfs2_alloc_context *inode_ac,
517 				u64 fe_blkno, u64 suballoc_loc, u16 suballoc_bit)
518 {
519 	int status = 0;
520 	struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
521 	struct ocfs2_dinode *fe = NULL;
522 	struct ocfs2_extent_list *fel;
523 	u16 feat;
524 	struct ocfs2_inode_info *oi = OCFS2_I(inode);
525 	struct timespec64 ts;
526 
527 	*new_fe_bh = NULL;
528 
529 	/* populate as many fields early on as possible - many of
530 	 * these are used by the support functions here and in
531 	 * callers. */
532 	inode->i_ino = ino_from_blkno(osb->sb, fe_blkno);
533 	oi->ip_blkno = fe_blkno;
534 	spin_lock(&osb->osb_lock);
535 	inode->i_generation = osb->s_next_generation++;
536 	spin_unlock(&osb->osb_lock);
537 
538 	*new_fe_bh = sb_getblk(osb->sb, fe_blkno);
539 	if (!*new_fe_bh) {
540 		status = -ENOMEM;
541 		mlog_errno(status);
542 		goto leave;
543 	}
544 	ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), *new_fe_bh);
545 
546 	status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
547 					 *new_fe_bh,
548 					 OCFS2_JOURNAL_ACCESS_CREATE);
549 	if (status < 0) {
550 		mlog_errno(status);
551 		goto leave;
552 	}
553 
554 	fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data;
555 	memset(fe, 0, osb->sb->s_blocksize);
556 
557 	fe->i_generation = cpu_to_le32(inode->i_generation);
558 	fe->i_fs_generation = cpu_to_le32(osb->fs_generation);
559 	fe->i_blkno = cpu_to_le64(fe_blkno);
560 	fe->i_suballoc_loc = cpu_to_le64(suballoc_loc);
561 	fe->i_suballoc_bit = cpu_to_le16(suballoc_bit);
562 	fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot);
563 	fe->i_uid = cpu_to_le32(i_uid_read(inode));
564 	fe->i_gid = cpu_to_le32(i_gid_read(inode));
565 	fe->i_mode = cpu_to_le16(inode->i_mode);
566 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
567 		fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev));
568 
569 	ocfs2_set_links_count(fe, inode->i_nlink);
570 
571 	fe->i_last_eb_blk = 0;
572 	strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE);
573 	fe->i_flags |= cpu_to_le32(OCFS2_VALID_FL);
574 	ktime_get_real_ts64(&ts);
575 	fe->i_atime = fe->i_ctime = fe->i_mtime =
576 		cpu_to_le64(ts.tv_sec);
577 	fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec =
578 		cpu_to_le32(ts.tv_nsec);
579 	fe->i_dtime = 0;
580 
581 	/*
582 	 * If supported, directories start with inline data. If inline
583 	 * isn't supported, but indexing is, we start them as indexed.
584 	 */
585 	feat = le16_to_cpu(fe->i_dyn_features);
586 	if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) {
587 		fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL);
588 
589 		fe->id2.i_data.id_count = cpu_to_le16(
590 				ocfs2_max_inline_data_with_xattr(osb->sb, fe));
591 	} else {
592 		fel = &fe->id2.i_list;
593 		fel->l_tree_depth = 0;
594 		fel->l_next_free_rec = 0;
595 		fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb));
596 	}
597 
598 	ocfs2_journal_dirty(handle, *new_fe_bh);
599 
600 	ocfs2_populate_inode(inode, fe, 1);
601 	ocfs2_ci_set_new(osb, INODE_CACHE(inode));
602 	if (!ocfs2_mount_local(osb)) {
603 		status = ocfs2_create_new_inode_locks(inode);
604 		if (status < 0)
605 			mlog_errno(status);
606 	}
607 
608 	oi->i_sync_tid = handle->h_transaction->t_tid;
609 	oi->i_datasync_tid = handle->h_transaction->t_tid;
610 
611 leave:
612 	if (status < 0) {
613 		if (*new_fe_bh) {
614 			brelse(*new_fe_bh);
615 			*new_fe_bh = NULL;
616 		}
617 	}
618 
619 	if (status)
620 		mlog_errno(status);
621 	return status;
622 }
623 
ocfs2_mknod_locked(struct ocfs2_super * osb,struct inode * dir,struct inode * inode,dev_t dev,struct buffer_head ** new_fe_bh,struct buffer_head * parent_fe_bh,handle_t * handle,struct ocfs2_alloc_context * inode_ac)624 static int ocfs2_mknod_locked(struct ocfs2_super *osb,
625 			      struct inode *dir,
626 			      struct inode *inode,
627 			      dev_t dev,
628 			      struct buffer_head **new_fe_bh,
629 			      struct buffer_head *parent_fe_bh,
630 			      handle_t *handle,
631 			      struct ocfs2_alloc_context *inode_ac)
632 {
633 	int status = 0;
634 	u64 suballoc_loc, fe_blkno = 0;
635 	u16 suballoc_bit;
636 
637 	*new_fe_bh = NULL;
638 
639 	status = ocfs2_claim_new_inode(handle, dir, parent_fe_bh,
640 				       inode_ac, &suballoc_loc,
641 				       &suballoc_bit, &fe_blkno);
642 	if (status < 0) {
643 		mlog_errno(status);
644 		return status;
645 	}
646 
647 	return __ocfs2_mknod_locked(dir, inode, dev, new_fe_bh,
648 				    parent_fe_bh, handle, inode_ac,
649 				    fe_blkno, suballoc_loc, suballoc_bit);
650 }
651 
ocfs2_mkdir(struct inode * dir,struct dentry * dentry,umode_t mode)652 static int ocfs2_mkdir(struct inode *dir,
653 		       struct dentry *dentry,
654 		       umode_t mode)
655 {
656 	int ret;
657 
658 	trace_ocfs2_mkdir(dir, dentry, dentry->d_name.len, dentry->d_name.name,
659 			  OCFS2_I(dir)->ip_blkno, mode);
660 	ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0);
661 	if (ret)
662 		mlog_errno(ret);
663 
664 	return ret;
665 }
666 
ocfs2_create(struct inode * dir,struct dentry * dentry,umode_t mode,bool excl)667 static int ocfs2_create(struct inode *dir,
668 			struct dentry *dentry,
669 			umode_t mode,
670 			bool excl)
671 {
672 	int ret;
673 
674 	trace_ocfs2_create(dir, dentry, dentry->d_name.len, dentry->d_name.name,
675 			   (unsigned long long)OCFS2_I(dir)->ip_blkno, mode);
676 	ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0);
677 	if (ret)
678 		mlog_errno(ret);
679 
680 	return ret;
681 }
682 
ocfs2_link(struct dentry * old_dentry,struct inode * dir,struct dentry * dentry)683 static int ocfs2_link(struct dentry *old_dentry,
684 		      struct inode *dir,
685 		      struct dentry *dentry)
686 {
687 	handle_t *handle;
688 	struct inode *inode = d_inode(old_dentry);
689 	struct inode *old_dir = d_inode(old_dentry->d_parent);
690 	int err;
691 	struct buffer_head *fe_bh = NULL;
692 	struct buffer_head *old_dir_bh = NULL;
693 	struct buffer_head *parent_fe_bh = NULL;
694 	struct ocfs2_dinode *fe = NULL;
695 	struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
696 	struct ocfs2_dir_lookup_result lookup = { NULL, };
697 	sigset_t oldset;
698 	u64 old_de_ino;
699 
700 	trace_ocfs2_link((unsigned long long)OCFS2_I(inode)->ip_blkno,
701 			 old_dentry->d_name.len, old_dentry->d_name.name,
702 			 dentry->d_name.len, dentry->d_name.name);
703 
704 	if (S_ISDIR(inode->i_mode))
705 		return -EPERM;
706 
707 	err = dquot_initialize(dir);
708 	if (err) {
709 		mlog_errno(err);
710 		return err;
711 	}
712 
713 	err = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
714 			&parent_fe_bh, dir, 0);
715 	if (err < 0) {
716 		if (err != -ENOENT)
717 			mlog_errno(err);
718 		return err;
719 	}
720 
721 	/* make sure both dirs have bhs
722 	 * get an extra ref on old_dir_bh if old==new */
723 	if (!parent_fe_bh) {
724 		if (old_dir_bh) {
725 			parent_fe_bh = old_dir_bh;
726 			get_bh(parent_fe_bh);
727 		} else {
728 			mlog(ML_ERROR, "%s: no old_dir_bh!\n", osb->uuid_str);
729 			err = -EIO;
730 			goto out;
731 		}
732 	}
733 
734 	if (!dir->i_nlink) {
735 		err = -ENOENT;
736 		goto out;
737 	}
738 
739 	err = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
740 			old_dentry->d_name.len, &old_de_ino);
741 	if (err) {
742 		err = -ENOENT;
743 		goto out;
744 	}
745 
746 	/*
747 	 * Check whether another node removed the source inode while we
748 	 * were in the vfs.
749 	 */
750 	if (old_de_ino != OCFS2_I(inode)->ip_blkno) {
751 		err = -ENOENT;
752 		goto out;
753 	}
754 
755 	err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
756 					dentry->d_name.len);
757 	if (err)
758 		goto out;
759 
760 	err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
761 					   dentry->d_name.name,
762 					   dentry->d_name.len, &lookup);
763 	if (err < 0) {
764 		mlog_errno(err);
765 		goto out;
766 	}
767 
768 	err = ocfs2_inode_lock(inode, &fe_bh, 1);
769 	if (err < 0) {
770 		if (err != -ENOENT)
771 			mlog_errno(err);
772 		goto out;
773 	}
774 
775 	fe = (struct ocfs2_dinode *) fe_bh->b_data;
776 	if (ocfs2_read_links_count(fe) >= ocfs2_link_max(osb)) {
777 		err = -EMLINK;
778 		goto out_unlock_inode;
779 	}
780 
781 	handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb));
782 	if (IS_ERR(handle)) {
783 		err = PTR_ERR(handle);
784 		handle = NULL;
785 		mlog_errno(err);
786 		goto out_unlock_inode;
787 	}
788 
789 	/* Starting to change things, restart is no longer possible. */
790 	ocfs2_block_signals(&oldset);
791 
792 	err = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
793 				      OCFS2_JOURNAL_ACCESS_WRITE);
794 	if (err < 0) {
795 		mlog_errno(err);
796 		goto out_commit;
797 	}
798 
799 	inc_nlink(inode);
800 	inode->i_ctime = current_time(inode);
801 	ocfs2_set_links_count(fe, inode->i_nlink);
802 	fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
803 	fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
804 	ocfs2_journal_dirty(handle, fe_bh);
805 
806 	err = ocfs2_add_entry(handle, dentry, inode,
807 			      OCFS2_I(inode)->ip_blkno,
808 			      parent_fe_bh, &lookup);
809 	if (err) {
810 		ocfs2_add_links_count(fe, -1);
811 		drop_nlink(inode);
812 		mlog_errno(err);
813 		goto out_commit;
814 	}
815 
816 	err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
817 	if (err) {
818 		mlog_errno(err);
819 		goto out_commit;
820 	}
821 
822 	ihold(inode);
823 	d_instantiate(dentry, inode);
824 
825 out_commit:
826 	ocfs2_commit_trans(osb, handle);
827 	ocfs2_unblock_signals(&oldset);
828 out_unlock_inode:
829 	ocfs2_inode_unlock(inode, 1);
830 
831 out:
832 	ocfs2_double_unlock(old_dir, dir);
833 
834 	brelse(fe_bh);
835 	brelse(parent_fe_bh);
836 	brelse(old_dir_bh);
837 
838 	ocfs2_free_dir_lookup_result(&lookup);
839 
840 	if (err)
841 		mlog_errno(err);
842 
843 	return err;
844 }
845 
846 /*
847  * Takes and drops an exclusive lock on the given dentry. This will
848  * force other nodes to drop it.
849  */
ocfs2_remote_dentry_delete(struct dentry * dentry)850 static int ocfs2_remote_dentry_delete(struct dentry *dentry)
851 {
852 	int ret;
853 
854 	ret = ocfs2_dentry_lock(dentry, 1);
855 	if (ret)
856 		mlog_errno(ret);
857 	else
858 		ocfs2_dentry_unlock(dentry, 1);
859 
860 	return ret;
861 }
862 
ocfs2_inode_is_unlinkable(struct inode * inode)863 static inline int ocfs2_inode_is_unlinkable(struct inode *inode)
864 {
865 	if (S_ISDIR(inode->i_mode)) {
866 		if (inode->i_nlink == 2)
867 			return 1;
868 		return 0;
869 	}
870 
871 	if (inode->i_nlink == 1)
872 		return 1;
873 	return 0;
874 }
875 
ocfs2_unlink(struct inode * dir,struct dentry * dentry)876 static int ocfs2_unlink(struct inode *dir,
877 			struct dentry *dentry)
878 {
879 	int status;
880 	int child_locked = 0;
881 	bool is_unlinkable = false;
882 	struct inode *inode = d_inode(dentry);
883 	struct inode *orphan_dir = NULL;
884 	struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
885 	u64 blkno;
886 	struct ocfs2_dinode *fe = NULL;
887 	struct buffer_head *fe_bh = NULL;
888 	struct buffer_head *parent_node_bh = NULL;
889 	handle_t *handle = NULL;
890 	char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
891 	struct ocfs2_dir_lookup_result lookup = { NULL, };
892 	struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
893 
894 	trace_ocfs2_unlink(dir, dentry, dentry->d_name.len,
895 			   dentry->d_name.name,
896 			   (unsigned long long)OCFS2_I(dir)->ip_blkno,
897 			   (unsigned long long)OCFS2_I(inode)->ip_blkno);
898 
899 	status = dquot_initialize(dir);
900 	if (status) {
901 		mlog_errno(status);
902 		return status;
903 	}
904 
905 	BUG_ON(d_inode(dentry->d_parent) != dir);
906 
907 	if (inode == osb->root_inode)
908 		return -EPERM;
909 
910 	status = ocfs2_inode_lock_nested(dir, &parent_node_bh, 1,
911 					 OI_LS_PARENT);
912 	if (status < 0) {
913 		if (status != -ENOENT)
914 			mlog_errno(status);
915 		return status;
916 	}
917 
918 	status = ocfs2_find_files_on_disk(dentry->d_name.name,
919 					  dentry->d_name.len, &blkno, dir,
920 					  &lookup);
921 	if (status < 0) {
922 		if (status != -ENOENT)
923 			mlog_errno(status);
924 		goto leave;
925 	}
926 
927 	if (OCFS2_I(inode)->ip_blkno != blkno) {
928 		status = -ENOENT;
929 
930 		trace_ocfs2_unlink_noent(
931 				(unsigned long long)OCFS2_I(inode)->ip_blkno,
932 				(unsigned long long)blkno,
933 				OCFS2_I(inode)->ip_flags);
934 		goto leave;
935 	}
936 
937 	status = ocfs2_inode_lock(inode, &fe_bh, 1);
938 	if (status < 0) {
939 		if (status != -ENOENT)
940 			mlog_errno(status);
941 		goto leave;
942 	}
943 	child_locked = 1;
944 
945 	if (S_ISDIR(inode->i_mode)) {
946 		if (inode->i_nlink != 2 || !ocfs2_empty_dir(inode)) {
947 			status = -ENOTEMPTY;
948 			goto leave;
949 		}
950 	}
951 
952 	status = ocfs2_remote_dentry_delete(dentry);
953 	if (status < 0) {
954 		/* This remote delete should succeed under all normal
955 		 * circumstances. */
956 		mlog_errno(status);
957 		goto leave;
958 	}
959 
960 	if (ocfs2_inode_is_unlinkable(inode)) {
961 		status = ocfs2_prepare_orphan_dir(osb, &orphan_dir,
962 						  OCFS2_I(inode)->ip_blkno,
963 						  orphan_name, &orphan_insert,
964 						  false);
965 		if (status < 0) {
966 			mlog_errno(status);
967 			goto leave;
968 		}
969 		is_unlinkable = true;
970 	}
971 
972 	handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb));
973 	if (IS_ERR(handle)) {
974 		status = PTR_ERR(handle);
975 		handle = NULL;
976 		mlog_errno(status);
977 		goto leave;
978 	}
979 
980 	status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
981 					 OCFS2_JOURNAL_ACCESS_WRITE);
982 	if (status < 0) {
983 		mlog_errno(status);
984 		goto leave;
985 	}
986 
987 	fe = (struct ocfs2_dinode *) fe_bh->b_data;
988 
989 	/* delete the name from the parent dir */
990 	status = ocfs2_delete_entry(handle, dir, &lookup);
991 	if (status < 0) {
992 		mlog_errno(status);
993 		goto leave;
994 	}
995 
996 	if (S_ISDIR(inode->i_mode))
997 		drop_nlink(inode);
998 	drop_nlink(inode);
999 	ocfs2_set_links_count(fe, inode->i_nlink);
1000 	ocfs2_journal_dirty(handle, fe_bh);
1001 
1002 	dir->i_ctime = dir->i_mtime = current_time(dir);
1003 	if (S_ISDIR(inode->i_mode))
1004 		drop_nlink(dir);
1005 
1006 	status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh);
1007 	if (status < 0) {
1008 		mlog_errno(status);
1009 		if (S_ISDIR(inode->i_mode))
1010 			inc_nlink(dir);
1011 		goto leave;
1012 	}
1013 
1014 	if (is_unlinkable) {
1015 		status = ocfs2_orphan_add(osb, handle, inode, fe_bh,
1016 				orphan_name, &orphan_insert, orphan_dir, false);
1017 		if (status < 0)
1018 			mlog_errno(status);
1019 	}
1020 
1021 leave:
1022 	if (handle)
1023 		ocfs2_commit_trans(osb, handle);
1024 
1025 	if (orphan_dir) {
1026 		/* This was locked for us in ocfs2_prepare_orphan_dir() */
1027 		ocfs2_inode_unlock(orphan_dir, 1);
1028 		inode_unlock(orphan_dir);
1029 		iput(orphan_dir);
1030 	}
1031 
1032 	if (child_locked)
1033 		ocfs2_inode_unlock(inode, 1);
1034 
1035 	ocfs2_inode_unlock(dir, 1);
1036 
1037 	brelse(fe_bh);
1038 	brelse(parent_node_bh);
1039 
1040 	ocfs2_free_dir_lookup_result(&orphan_insert);
1041 	ocfs2_free_dir_lookup_result(&lookup);
1042 
1043 	if (status && (status != -ENOTEMPTY) && (status != -ENOENT))
1044 		mlog_errno(status);
1045 
1046 	return status;
1047 }
1048 
ocfs2_check_if_ancestor(struct ocfs2_super * osb,u64 src_inode_no,u64 dest_inode_no)1049 static int ocfs2_check_if_ancestor(struct ocfs2_super *osb,
1050 		u64 src_inode_no, u64 dest_inode_no)
1051 {
1052 	int ret = 0, i = 0;
1053 	u64 parent_inode_no = 0;
1054 	u64 child_inode_no = src_inode_no;
1055 	struct inode *child_inode;
1056 
1057 #define MAX_LOOKUP_TIMES 32
1058 	while (1) {
1059 		child_inode = ocfs2_iget(osb, child_inode_no, 0, 0);
1060 		if (IS_ERR(child_inode)) {
1061 			ret = PTR_ERR(child_inode);
1062 			break;
1063 		}
1064 
1065 		ret = ocfs2_inode_lock(child_inode, NULL, 0);
1066 		if (ret < 0) {
1067 			iput(child_inode);
1068 			if (ret != -ENOENT)
1069 				mlog_errno(ret);
1070 			break;
1071 		}
1072 
1073 		ret = ocfs2_lookup_ino_from_name(child_inode, "..", 2,
1074 				&parent_inode_no);
1075 		ocfs2_inode_unlock(child_inode, 0);
1076 		iput(child_inode);
1077 		if (ret < 0) {
1078 			ret = -ENOENT;
1079 			break;
1080 		}
1081 
1082 		if (parent_inode_no == dest_inode_no) {
1083 			ret = 1;
1084 			break;
1085 		}
1086 
1087 		if (parent_inode_no == osb->root_inode->i_ino) {
1088 			ret = 0;
1089 			break;
1090 		}
1091 
1092 		child_inode_no = parent_inode_no;
1093 
1094 		if (++i >= MAX_LOOKUP_TIMES) {
1095 			mlog(ML_NOTICE, "max lookup times reached, filesystem "
1096 					"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);
1100 			ret = 0;
1101 			break;
1102 		}
1103 	}
1104 
1105 	return ret;
1106 }
1107 
1108 /*
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.
1111  */
ocfs2_double_lock(struct ocfs2_super * osb,struct buffer_head ** bh1,struct inode * inode1,struct buffer_head ** bh2,struct inode * inode2,int rename)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,
1117 			     int rename)
1118 {
1119 	int status;
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);
1123 
1124 	trace_ocfs2_double_lock((unsigned long long)oi1->ip_blkno,
1125 				(unsigned long long)oi2->ip_blkno);
1126 
1127 	if (*bh1)
1128 		*bh1 = NULL;
1129 	if (*bh2)
1130 		*bh2 = NULL;
1131 
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,
1136 				oi1->ip_blkno);
1137 		if (inode1_is_ancestor < 0) {
1138 			status = inode1_is_ancestor;
1139 			goto bail;
1140 		}
1141 
1142 		inode2_is_ancestor = ocfs2_check_if_ancestor(osb, oi1->ip_blkno,
1143 				oi2->ip_blkno);
1144 		if (inode2_is_ancestor < 0) {
1145 			status = inode2_is_ancestor;
1146 			goto bail;
1147 		}
1148 
1149 		if ((inode1_is_ancestor == 1) ||
1150 				(oi1->ip_blkno < oi2->ip_blkno &&
1151 				inode2_is_ancestor == 0)) {
1152 			/* switch id1 and id2 around */
1153 			swap(bh2, bh1);
1154 			swap(inode2, inode1);
1155 		}
1156 		/* lock id2 */
1157 		status = ocfs2_inode_lock_nested(inode2, bh2, 1,
1158 				rename == 1 ? OI_LS_RENAME1 : OI_LS_PARENT);
1159 		if (status < 0) {
1160 			if (status != -ENOENT)
1161 				mlog_errno(status);
1162 			goto bail;
1163 		}
1164 	}
1165 
1166 	/* lock id1 */
1167 	status = ocfs2_inode_lock_nested(inode1, bh1, 1,
1168 			rename == 1 ?  OI_LS_RENAME2 : OI_LS_PARENT);
1169 	if (status < 0) {
1170 		/*
1171 		 * An error return must mean that no cluster locks
1172 		 * were held on function exit.
1173 		 */
1174 		if (oi1->ip_blkno != oi2->ip_blkno) {
1175 			ocfs2_inode_unlock(inode2, 1);
1176 			brelse(*bh2);
1177 			*bh2 = NULL;
1178 		}
1179 
1180 		if (status != -ENOENT)
1181 			mlog_errno(status);
1182 	}
1183 
1184 	trace_ocfs2_double_lock_end(
1185 			(unsigned long long)oi1->ip_blkno,
1186 			(unsigned long long)oi2->ip_blkno);
1187 
1188 bail:
1189 	if (status)
1190 		mlog_errno(status);
1191 	return status;
1192 }
1193 
ocfs2_double_unlock(struct inode * inode1,struct inode * inode2)1194 static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2)
1195 {
1196 	ocfs2_inode_unlock(inode1, 1);
1197 
1198 	if (inode1 != inode2)
1199 		ocfs2_inode_unlock(inode2, 1);
1200 }
1201 
ocfs2_rename(struct inode * old_dir,struct dentry * old_dentry,struct inode * new_dir,struct dentry * new_dentry,unsigned int flags)1202 static int ocfs2_rename(struct inode *old_dir,
1203 			struct dentry *old_dentry,
1204 			struct inode *new_dir,
1205 			struct dentry *new_dentry,
1206 			unsigned int flags)
1207 {
1208 	int status = 0, rename_lock = 0, parents_locked = 0, target_exists = 0;
1209 	int old_child_locked = 0, new_child_locked = 0, update_dot_dot = 0;
1210 	struct inode *old_inode = d_inode(old_dentry);
1211 	struct inode *new_inode = d_inode(new_dentry);
1212 	struct inode *orphan_dir = NULL;
1213 	struct ocfs2_dinode *newfe = NULL;
1214 	char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
1215 	struct buffer_head *newfe_bh = NULL;
1216 	struct buffer_head *old_inode_bh = NULL;
1217 	struct ocfs2_super *osb = NULL;
1218 	u64 newfe_blkno, old_de_ino;
1219 	handle_t *handle = NULL;
1220 	struct buffer_head *old_dir_bh = NULL;
1221 	struct buffer_head *new_dir_bh = NULL;
1222 	u32 old_dir_nlink = old_dir->i_nlink;
1223 	struct ocfs2_dinode *old_di;
1224 	struct ocfs2_dir_lookup_result old_inode_dot_dot_res = { NULL, };
1225 	struct ocfs2_dir_lookup_result target_lookup_res = { NULL, };
1226 	struct ocfs2_dir_lookup_result old_entry_lookup = { NULL, };
1227 	struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
1228 	struct ocfs2_dir_lookup_result target_insert = { NULL, };
1229 	bool should_add_orphan = false;
1230 
1231 	if (flags)
1232 		return -EINVAL;
1233 
1234 	/* At some point it might be nice to break this function up a
1235 	 * bit. */
1236 
1237 	trace_ocfs2_rename(old_dir, old_dentry, new_dir, new_dentry,
1238 			   old_dentry->d_name.len, old_dentry->d_name.name,
1239 			   new_dentry->d_name.len, new_dentry->d_name.name);
1240 
1241 	status = dquot_initialize(old_dir);
1242 	if (status) {
1243 		mlog_errno(status);
1244 		goto bail;
1245 	}
1246 	status = dquot_initialize(new_dir);
1247 	if (status) {
1248 		mlog_errno(status);
1249 		goto bail;
1250 	}
1251 
1252 	osb = OCFS2_SB(old_dir->i_sb);
1253 
1254 	if (new_inode) {
1255 		if (!igrab(new_inode))
1256 			BUG();
1257 	}
1258 
1259 	/* Assume a directory hierarchy thusly:
1260 	 * a/b/c
1261 	 * a/d
1262 	 * a,b,c, and d are all directories.
1263 	 *
1264 	 * from cwd of 'a' on both nodes:
1265 	 * node1: mv b/c d
1266 	 * node2: mv d   b/c
1267 	 *
1268 	 * And that's why, just like the VFS, we need a file system
1269 	 * rename lock. */
1270 	if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) {
1271 		status = ocfs2_rename_lock(osb);
1272 		if (status < 0) {
1273 			mlog_errno(status);
1274 			goto bail;
1275 		}
1276 		rename_lock = 1;
1277 
1278 		/* here we cannot guarantee the inodes haven't just been
1279 		 * changed, so check if they are nested again */
1280 		status = ocfs2_check_if_ancestor(osb, new_dir->i_ino,
1281 				old_inode->i_ino);
1282 		if (status < 0) {
1283 			mlog_errno(status);
1284 			goto bail;
1285 		} else if (status == 1) {
1286 			status = -EPERM;
1287 			trace_ocfs2_rename_not_permitted(
1288 					(unsigned long long)old_inode->i_ino,
1289 					(unsigned long long)new_dir->i_ino);
1290 			goto bail;
1291 		}
1292 	}
1293 
1294 	/* if old and new are the same, this'll just do one lock. */
1295 	status = ocfs2_double_lock(osb, &old_dir_bh, old_dir,
1296 				   &new_dir_bh, new_dir, 1);
1297 	if (status < 0) {
1298 		mlog_errno(status);
1299 		goto bail;
1300 	}
1301 	parents_locked = 1;
1302 
1303 	if (!new_dir->i_nlink) {
1304 		status = -EACCES;
1305 		goto bail;
1306 	}
1307 
1308 	/* make sure both dirs have bhs
1309 	 * get an extra ref on old_dir_bh if old==new */
1310 	if (!new_dir_bh) {
1311 		if (old_dir_bh) {
1312 			new_dir_bh = old_dir_bh;
1313 			get_bh(new_dir_bh);
1314 		} else {
1315 			mlog(ML_ERROR, "no old_dir_bh!\n");
1316 			status = -EIO;
1317 			goto bail;
1318 		}
1319 	}
1320 
1321 	/*
1322 	 * Aside from allowing a meta data update, the locking here
1323 	 * also ensures that the downconvert thread on other nodes
1324 	 * won't have to concurrently downconvert the inode and the
1325 	 * dentry locks.
1326 	 */
1327 	status = ocfs2_inode_lock_nested(old_inode, &old_inode_bh, 1,
1328 					 OI_LS_PARENT);
1329 	if (status < 0) {
1330 		if (status != -ENOENT)
1331 			mlog_errno(status);
1332 		goto bail;
1333 	}
1334 	old_child_locked = 1;
1335 
1336 	status = ocfs2_remote_dentry_delete(old_dentry);
1337 	if (status < 0) {
1338 		mlog_errno(status);
1339 		goto bail;
1340 	}
1341 
1342 	if (S_ISDIR(old_inode->i_mode)) {
1343 		u64 old_inode_parent;
1344 
1345 		update_dot_dot = 1;
1346 		status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent,
1347 						  old_inode,
1348 						  &old_inode_dot_dot_res);
1349 		if (status) {
1350 			status = -EIO;
1351 			goto bail;
1352 		}
1353 
1354 		if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) {
1355 			status = -EIO;
1356 			goto bail;
1357 		}
1358 
1359 		if (!new_inode && new_dir != old_dir &&
1360 		    new_dir->i_nlink >= ocfs2_link_max(osb)) {
1361 			status = -EMLINK;
1362 			goto bail;
1363 		}
1364 	}
1365 
1366 	status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name,
1367 					    old_dentry->d_name.len,
1368 					    &old_de_ino);
1369 	if (status) {
1370 		status = -ENOENT;
1371 		goto bail;
1372 	}
1373 
1374 	/*
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 ;-<
1379 	 */
1380 	if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) {
1381 		status = -ENOENT;
1382 		goto bail;
1383 	}
1384 
1385 	/* check if the target already exists (in which case we need
1386 	 * to delete it */
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... */
1396 		mlog_errno(status);
1397 		goto bail;
1398 	}
1399 	if (status == 0)
1400 		target_exists = 1;
1401 
1402 	if (!target_exists && new_inode) {
1403 		/*
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.
1408 		 */
1409 		status = -ENOENT;
1410 		goto bail;
1411 	}
1412 
1413 	/* In case we need to overwrite an existing file, we blow it
1414 	 * away first */
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. */
1421 		if (!new_inode) {
1422 			status = -EACCES;
1423 
1424 			trace_ocfs2_rename_target_exists(new_dentry->d_name.len,
1425 						new_dentry->d_name.name);
1426 			goto bail;
1427 		}
1428 
1429 		if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) {
1430 			status = -EACCES;
1431 
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);
1436 			goto bail;
1437 		}
1438 
1439 		status = ocfs2_inode_lock(new_inode, &newfe_bh, 1);
1440 		if (status < 0) {
1441 			if (status != -ENOENT)
1442 				mlog_errno(status);
1443 			goto bail;
1444 		}
1445 		new_child_locked = 1;
1446 
1447 		status = ocfs2_remote_dentry_delete(new_dentry);
1448 		if (status < 0) {
1449 			mlog_errno(status);
1450 			goto bail;
1451 		}
1452 
1453 		newfe = (struct ocfs2_dinode *) newfe_bh->b_data;
1454 
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);
1458 
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,
1463 						false);
1464 			if (status < 0) {
1465 				mlog_errno(status);
1466 				goto bail;
1467 			}
1468 			should_add_orphan = true;
1469 		}
1470 	} else {
1471 		BUG_ON(d_inode(new_dentry->d_parent) != new_dir);
1472 
1473 		status = ocfs2_check_dir_for_entry(new_dir,
1474 						   new_dentry->d_name.name,
1475 						   new_dentry->d_name.len);
1476 		if (status)
1477 			goto bail;
1478 
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,
1482 						      &target_insert);
1483 		if (status < 0) {
1484 			mlog_errno(status);
1485 			goto bail;
1486 		}
1487 	}
1488 
1489 	handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
1490 	if (IS_ERR(handle)) {
1491 		status = PTR_ERR(handle);
1492 		handle = NULL;
1493 		mlog_errno(status);
1494 		goto bail;
1495 	}
1496 
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;
1502 				goto bail;
1503 			}
1504 		}
1505 		status = ocfs2_journal_access_di(handle, INODE_CACHE(new_inode),
1506 						 newfe_bh,
1507 						 OCFS2_JOURNAL_ACCESS_WRITE);
1508 		if (status < 0) {
1509 			mlog_errno(status);
1510 			goto bail;
1511 		}
1512 
1513 		/* change the dirent to point to the correct inode */
1514 		status = ocfs2_update_entry(new_dir, handle, &target_lookup_res,
1515 					    old_inode);
1516 		if (status < 0) {
1517 			mlog_errno(status);
1518 			goto bail;
1519 		}
1520 		inode_inc_iversion(new_dir);
1521 
1522 		if (S_ISDIR(new_inode->i_mode))
1523 			ocfs2_set_links_count(newfe, 0);
1524 		else
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);
1531 			if (status < 0) {
1532 				mlog_errno(status);
1533 				goto bail;
1534 			}
1535 		}
1536 	} else {
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);
1541 		if (status < 0) {
1542 			mlog_errno(status);
1543 			goto bail;
1544 		}
1545 	}
1546 
1547 	old_inode->i_ctime = current_time(old_inode);
1548 	mark_inode_dirty(old_inode);
1549 
1550 	status = ocfs2_journal_access_di(handle, INODE_CACHE(old_inode),
1551 					 old_inode_bh,
1552 					 OCFS2_JOURNAL_ACCESS_WRITE);
1553 	if (status >= 0) {
1554 		old_di = (struct ocfs2_dinode *) old_inode_bh->b_data;
1555 
1556 		old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec);
1557 		old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec);
1558 		ocfs2_journal_dirty(handle, old_inode_bh);
1559 	} else
1560 		mlog_errno(status);
1561 
1562 	/*
1563 	 * Now that the name has been added to new_dir, remove the old name.
1564 	 *
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.
1568 	 */
1569 	status = ocfs2_find_entry(old_dentry->d_name.name,
1570 				  old_dentry->d_name.len, old_dir,
1571 				  &old_entry_lookup);
1572 	if (status) {
1573 		if (!is_journal_aborted(osb->journal->j_journal)) {
1574 			ocfs2_error(osb->sb, "new entry %.*s is added, but old entry %.*s "
1575 					"is not deleted.",
1576 					new_dentry->d_name.len, new_dentry->d_name.name,
1577 					old_dentry->d_name.len, old_dentry->d_name.name);
1578 		}
1579 		goto bail;
1580 	}
1581 
1582 	status = ocfs2_delete_entry(handle, old_dir, &old_entry_lookup);
1583 	if (status < 0) {
1584 		mlog_errno(status);
1585 		if (!is_journal_aborted(osb->journal->j_journal)) {
1586 			ocfs2_error(osb->sb, "new entry %.*s is added, but old entry %.*s "
1587 					"is not deleted.",
1588 					new_dentry->d_name.len, new_dentry->d_name.name,
1589 					old_dentry->d_name.len, old_dentry->d_name.name);
1590 		}
1591 		goto bail;
1592 	}
1593 
1594 	if (new_inode) {
1595 		drop_nlink(new_inode);
1596 		new_inode->i_ctime = current_time(new_inode);
1597 	}
1598 	old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
1599 
1600 	if (update_dot_dot) {
1601 		status = ocfs2_update_entry(old_inode, handle,
1602 					    &old_inode_dot_dot_res, new_dir);
1603 		drop_nlink(old_dir);
1604 		if (new_inode) {
1605 			drop_nlink(new_inode);
1606 		} else {
1607 			inc_nlink(new_dir);
1608 			mark_inode_dirty(new_dir);
1609 		}
1610 	}
1611 	mark_inode_dirty(old_dir);
1612 	ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh);
1613 	if (new_inode) {
1614 		mark_inode_dirty(new_inode);
1615 		ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh);
1616 	}
1617 
1618 	if (old_dir != new_dir) {
1619 		/* Keep the same times on both directories.*/
1620 		new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime;
1621 
1622 		/*
1623 		 * This will also pick up the i_nlink change from the
1624 		 * block above.
1625 		 */
1626 		ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh);
1627 	}
1628 
1629 	if (old_dir_nlink != old_dir->i_nlink) {
1630 		if (!old_dir_bh) {
1631 			mlog(ML_ERROR, "need to change nlink for old dir "
1632 			     "%llu from %d to %d but bh is NULL!\n",
1633 			     (unsigned long long)OCFS2_I(old_dir)->ip_blkno,
1634 			     (int)old_dir_nlink, old_dir->i_nlink);
1635 		} else {
1636 			struct ocfs2_dinode *fe;
1637 			status = ocfs2_journal_access_di(handle,
1638 							 INODE_CACHE(old_dir),
1639 							 old_dir_bh,
1640 							 OCFS2_JOURNAL_ACCESS_WRITE);
1641 			fe = (struct ocfs2_dinode *) old_dir_bh->b_data;
1642 			ocfs2_set_links_count(fe, old_dir->i_nlink);
1643 			ocfs2_journal_dirty(handle, old_dir_bh);
1644 		}
1645 	}
1646 	ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir);
1647 	status = 0;
1648 bail:
1649 	if (handle)
1650 		ocfs2_commit_trans(osb, handle);
1651 
1652 	if (orphan_dir) {
1653 		/* This was locked for us in ocfs2_prepare_orphan_dir() */
1654 		ocfs2_inode_unlock(orphan_dir, 1);
1655 		inode_unlock(orphan_dir);
1656 		iput(orphan_dir);
1657 	}
1658 
1659 	if (new_child_locked)
1660 		ocfs2_inode_unlock(new_inode, 1);
1661 
1662 	if (old_child_locked)
1663 		ocfs2_inode_unlock(old_inode, 1);
1664 
1665 	if (parents_locked)
1666 		ocfs2_double_unlock(old_dir, new_dir);
1667 
1668 	if (rename_lock)
1669 		ocfs2_rename_unlock(osb);
1670 
1671 	if (new_inode)
1672 		sync_mapping_buffers(old_inode->i_mapping);
1673 
1674 	iput(new_inode);
1675 
1676 	ocfs2_free_dir_lookup_result(&target_lookup_res);
1677 	ocfs2_free_dir_lookup_result(&old_entry_lookup);
1678 	ocfs2_free_dir_lookup_result(&old_inode_dot_dot_res);
1679 	ocfs2_free_dir_lookup_result(&orphan_insert);
1680 	ocfs2_free_dir_lookup_result(&target_insert);
1681 
1682 	brelse(newfe_bh);
1683 	brelse(old_inode_bh);
1684 	brelse(old_dir_bh);
1685 	brelse(new_dir_bh);
1686 
1687 	if (status)
1688 		mlog_errno(status);
1689 
1690 	return status;
1691 }
1692 
1693 /*
1694  * we expect i_size = strlen(symname). Copy symname into the file
1695  * data, including the null terminator.
1696  */
ocfs2_create_symlink_data(struct ocfs2_super * osb,handle_t * handle,struct inode * inode,const char * symname)1697 static int ocfs2_create_symlink_data(struct ocfs2_super *osb,
1698 				     handle_t *handle,
1699 				     struct inode *inode,
1700 				     const char *symname)
1701 {
1702 	struct buffer_head **bhs = NULL;
1703 	const char *c;
1704 	struct super_block *sb = osb->sb;
1705 	u64 p_blkno, p_blocks;
1706 	int virtual, blocks, status, i, bytes_left;
1707 
1708 	bytes_left = i_size_read(inode) + 1;
1709 	/* we can't trust i_blocks because we're actually going to
1710 	 * write i_size + 1 bytes. */
1711 	blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
1712 
1713 	trace_ocfs2_create_symlink_data((unsigned long long)inode->i_blocks,
1714 					i_size_read(inode), blocks);
1715 
1716 	/* Sanity check -- make sure we're going to fit. */
1717 	if (bytes_left >
1718 	    ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) {
1719 		status = -EIO;
1720 		mlog_errno(status);
1721 		goto bail;
1722 	}
1723 
1724 	bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL);
1725 	if (!bhs) {
1726 		status = -ENOMEM;
1727 		mlog_errno(status);
1728 		goto bail;
1729 	}
1730 
1731 	status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks,
1732 					     NULL);
1733 	if (status < 0) {
1734 		mlog_errno(status);
1735 		goto bail;
1736 	}
1737 
1738 	/* links can never be larger than one cluster so we know this
1739 	 * is all going to be contiguous, but do a sanity check
1740 	 * anyway. */
1741 	if ((p_blocks << sb->s_blocksize_bits) < bytes_left) {
1742 		status = -EIO;
1743 		mlog_errno(status);
1744 		goto bail;
1745 	}
1746 
1747 	virtual = 0;
1748 	while(bytes_left > 0) {
1749 		c = &symname[virtual * sb->s_blocksize];
1750 
1751 		bhs[virtual] = sb_getblk(sb, p_blkno);
1752 		if (!bhs[virtual]) {
1753 			status = -ENOMEM;
1754 			mlog_errno(status);
1755 			goto bail;
1756 		}
1757 		ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode),
1758 					      bhs[virtual]);
1759 
1760 		status = ocfs2_journal_access(handle, INODE_CACHE(inode),
1761 					      bhs[virtual],
1762 					      OCFS2_JOURNAL_ACCESS_CREATE);
1763 		if (status < 0) {
1764 			mlog_errno(status);
1765 			goto bail;
1766 		}
1767 
1768 		memset(bhs[virtual]->b_data, 0, sb->s_blocksize);
1769 
1770 		memcpy(bhs[virtual]->b_data, c,
1771 		       (bytes_left > sb->s_blocksize) ? sb->s_blocksize :
1772 		       bytes_left);
1773 
1774 		ocfs2_journal_dirty(handle, bhs[virtual]);
1775 
1776 		virtual++;
1777 		p_blkno++;
1778 		bytes_left -= sb->s_blocksize;
1779 	}
1780 
1781 	status = 0;
1782 bail:
1783 
1784 	if (bhs) {
1785 		for(i = 0; i < blocks; i++)
1786 			brelse(bhs[i]);
1787 		kfree(bhs);
1788 	}
1789 
1790 	if (status)
1791 		mlog_errno(status);
1792 	return status;
1793 }
1794 
ocfs2_symlink(struct inode * dir,struct dentry * dentry,const char * symname)1795 static int ocfs2_symlink(struct inode *dir,
1796 			 struct dentry *dentry,
1797 			 const char *symname)
1798 {
1799 	int status, l, credits;
1800 	u64 newsize;
1801 	struct ocfs2_super *osb = NULL;
1802 	struct inode *inode = NULL;
1803 	struct super_block *sb;
1804 	struct buffer_head *new_fe_bh = NULL;
1805 	struct buffer_head *parent_fe_bh = NULL;
1806 	struct ocfs2_dinode *fe = NULL;
1807 	struct ocfs2_dinode *dirfe;
1808 	handle_t *handle = NULL;
1809 	struct ocfs2_alloc_context *inode_ac = NULL;
1810 	struct ocfs2_alloc_context *data_ac = NULL;
1811 	struct ocfs2_alloc_context *xattr_ac = NULL;
1812 	int want_clusters = 0;
1813 	int xattr_credits = 0;
1814 	struct ocfs2_security_xattr_info si = {
1815 		.enable = 1,
1816 	};
1817 	int did_quota = 0, did_quota_inode = 0;
1818 	struct ocfs2_dir_lookup_result lookup = { NULL, };
1819 	sigset_t oldset;
1820 	int did_block_signals = 0;
1821 	struct ocfs2_dentry_lock *dl = NULL;
1822 
1823 	trace_ocfs2_symlink_begin(dir, dentry, symname,
1824 				  dentry->d_name.len, dentry->d_name.name);
1825 
1826 	status = dquot_initialize(dir);
1827 	if (status) {
1828 		mlog_errno(status);
1829 		goto bail;
1830 	}
1831 
1832 	sb = dir->i_sb;
1833 	osb = OCFS2_SB(sb);
1834 
1835 	l = strlen(symname) + 1;
1836 
1837 	credits = ocfs2_calc_symlink_credits(sb);
1838 
1839 	/* lock the parent directory */
1840 	status = ocfs2_inode_lock(dir, &parent_fe_bh, 1);
1841 	if (status < 0) {
1842 		if (status != -ENOENT)
1843 			mlog_errno(status);
1844 		return status;
1845 	}
1846 
1847 	dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
1848 	if (!ocfs2_read_links_count(dirfe)) {
1849 		/* can't make a file in a deleted directory. */
1850 		status = -ENOENT;
1851 		goto bail;
1852 	}
1853 
1854 	status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
1855 					   dentry->d_name.len);
1856 	if (status)
1857 		goto bail;
1858 
1859 	status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh,
1860 					      dentry->d_name.name,
1861 					      dentry->d_name.len, &lookup);
1862 	if (status < 0) {
1863 		mlog_errno(status);
1864 		goto bail;
1865 	}
1866 
1867 	status = ocfs2_reserve_new_inode(osb, &inode_ac);
1868 	if (status < 0) {
1869 		if (status != -ENOSPC)
1870 			mlog_errno(status);
1871 		goto bail;
1872 	}
1873 
1874 	inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO);
1875 	if (IS_ERR(inode)) {
1876 		status = PTR_ERR(inode);
1877 		inode = NULL;
1878 		mlog_errno(status);
1879 		goto bail;
1880 	}
1881 
1882 	/* get security xattr */
1883 	status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si);
1884 	if (status) {
1885 		if (status == -EOPNOTSUPP)
1886 			si.enable = 0;
1887 		else {
1888 			mlog_errno(status);
1889 			goto bail;
1890 		}
1891 	}
1892 
1893 	/* calculate meta data/clusters for setting security xattr */
1894 	if (si.enable) {
1895 		status = ocfs2_calc_security_init(dir, &si, &want_clusters,
1896 						  &xattr_credits, &xattr_ac);
1897 		if (status < 0) {
1898 			mlog_errno(status);
1899 			goto bail;
1900 		}
1901 	}
1902 
1903 	/* don't reserve bitmap space for fast symlinks. */
1904 	if (l > ocfs2_fast_symlink_chars(sb))
1905 		want_clusters += 1;
1906 
1907 	status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac);
1908 	if (status < 0) {
1909 		if (status != -ENOSPC)
1910 			mlog_errno(status);
1911 		goto bail;
1912 	}
1913 
1914 	handle = ocfs2_start_trans(osb, credits + xattr_credits);
1915 	if (IS_ERR(handle)) {
1916 		status = PTR_ERR(handle);
1917 		handle = NULL;
1918 		mlog_errno(status);
1919 		goto bail;
1920 	}
1921 
1922 	/* Starting to change things, restart is no longer possible. */
1923 	ocfs2_block_signals(&oldset);
1924 	did_block_signals = 1;
1925 
1926 	status = dquot_alloc_inode(inode);
1927 	if (status)
1928 		goto bail;
1929 	did_quota_inode = 1;
1930 
1931 	trace_ocfs2_symlink_create(dir, dentry, dentry->d_name.len,
1932 				   dentry->d_name.name,
1933 				   (unsigned long long)OCFS2_I(dir)->ip_blkno,
1934 				   inode->i_mode);
1935 
1936 	status = ocfs2_mknod_locked(osb, dir, inode,
1937 				    0, &new_fe_bh, parent_fe_bh, handle,
1938 				    inode_ac);
1939 	if (status < 0) {
1940 		mlog_errno(status);
1941 		goto bail;
1942 	}
1943 
1944 	fe = (struct ocfs2_dinode *) new_fe_bh->b_data;
1945 	inode->i_rdev = 0;
1946 	newsize = l - 1;
1947 	inode->i_op = &ocfs2_symlink_inode_operations;
1948 	inode_nohighmem(inode);
1949 	if (l > ocfs2_fast_symlink_chars(sb)) {
1950 		u32 offset = 0;
1951 
1952 		status = dquot_alloc_space_nodirty(inode,
1953 		    ocfs2_clusters_to_bytes(osb->sb, 1));
1954 		if (status)
1955 			goto bail;
1956 		did_quota = 1;
1957 		inode->i_mapping->a_ops = &ocfs2_aops;
1958 		status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0,
1959 					      new_fe_bh,
1960 					      handle, data_ac, NULL,
1961 					      NULL);
1962 		if (status < 0) {
1963 			if (status != -ENOSPC && status != -EINTR) {
1964 				mlog(ML_ERROR,
1965 				     "Failed to extend file to %llu\n",
1966 				     (unsigned long long)newsize);
1967 				mlog_errno(status);
1968 				status = -ENOSPC;
1969 			}
1970 			goto bail;
1971 		}
1972 		i_size_write(inode, newsize);
1973 		inode->i_blocks = ocfs2_inode_sector_count(inode);
1974 	} else {
1975 		inode->i_mapping->a_ops = &ocfs2_fast_symlink_aops;
1976 		memcpy((char *) fe->id2.i_symlink, symname, l);
1977 		i_size_write(inode, newsize);
1978 		inode->i_blocks = 0;
1979 	}
1980 
1981 	status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh);
1982 	if (status < 0) {
1983 		mlog_errno(status);
1984 		goto bail;
1985 	}
1986 
1987 	if (!ocfs2_inode_is_fast_symlink(inode)) {
1988 		status = ocfs2_create_symlink_data(osb, handle, inode,
1989 						   symname);
1990 		if (status < 0) {
1991 			mlog_errno(status);
1992 			goto bail;
1993 		}
1994 	}
1995 
1996 	if (si.enable) {
1997 		status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si,
1998 						 xattr_ac, data_ac);
1999 		if (status < 0) {
2000 			mlog_errno(status);
2001 			goto bail;
2002 		}
2003 	}
2004 
2005 	/*
2006 	 * Do this before adding the entry to the directory. We add
2007 	 * also set d_op after success so that ->d_iput() will cleanup
2008 	 * the dentry lock even if ocfs2_add_entry() fails below.
2009 	 */
2010 	status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno);
2011 	if (status) {
2012 		mlog_errno(status);
2013 		goto bail;
2014 	}
2015 
2016 	dl = dentry->d_fsdata;
2017 
2018 	status = ocfs2_add_entry(handle, dentry, inode,
2019 				 le64_to_cpu(fe->i_blkno), parent_fe_bh,
2020 				 &lookup);
2021 	if (status < 0) {
2022 		mlog_errno(status);
2023 		goto bail;
2024 	}
2025 
2026 	insert_inode_hash(inode);
2027 	d_instantiate(dentry, inode);
2028 bail:
2029 	if (status < 0 && did_quota)
2030 		dquot_free_space_nodirty(inode,
2031 					ocfs2_clusters_to_bytes(osb->sb, 1));
2032 	if (status < 0 && did_quota_inode)
2033 		dquot_free_inode(inode);
2034 	if (handle) {
2035 		if (status < 0 && fe)
2036 			ocfs2_set_links_count(fe, 0);
2037 		ocfs2_commit_trans(osb, handle);
2038 	}
2039 
2040 	ocfs2_inode_unlock(dir, 1);
2041 	if (did_block_signals)
2042 		ocfs2_unblock_signals(&oldset);
2043 
2044 	brelse(new_fe_bh);
2045 	brelse(parent_fe_bh);
2046 	kfree(si.value);
2047 	ocfs2_free_dir_lookup_result(&lookup);
2048 	if (inode_ac)
2049 		ocfs2_free_alloc_context(inode_ac);
2050 	if (data_ac)
2051 		ocfs2_free_alloc_context(data_ac);
2052 	if (xattr_ac)
2053 		ocfs2_free_alloc_context(xattr_ac);
2054 	if ((status < 0) && inode) {
2055 		if (dl)
2056 			ocfs2_cleanup_add_entry_failure(osb, dentry, inode);
2057 
2058 		OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR;
2059 		clear_nlink(inode);
2060 		iput(inode);
2061 	}
2062 
2063 	if (status)
2064 		mlog_errno(status);
2065 
2066 	return status;
2067 }
2068 
ocfs2_blkno_stringify(u64 blkno,char * name)2069 static int ocfs2_blkno_stringify(u64 blkno, char *name)
2070 {
2071 	int status, namelen;
2072 
2073 	namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx",
2074 			   (long long)blkno);
2075 	if (namelen <= 0) {
2076 		if (namelen)
2077 			status = namelen;
2078 		else
2079 			status = -EINVAL;
2080 		mlog_errno(status);
2081 		goto bail;
2082 	}
2083 	if (namelen != OCFS2_ORPHAN_NAMELEN) {
2084 		status = -EINVAL;
2085 		mlog_errno(status);
2086 		goto bail;
2087 	}
2088 
2089 	trace_ocfs2_blkno_stringify(blkno, name, namelen);
2090 
2091 	status = 0;
2092 bail:
2093 	if (status < 0)
2094 		mlog_errno(status);
2095 	return status;
2096 }
2097 
ocfs2_lookup_lock_orphan_dir(struct ocfs2_super * osb,struct inode ** ret_orphan_dir,struct buffer_head ** ret_orphan_dir_bh)2098 static int ocfs2_lookup_lock_orphan_dir(struct ocfs2_super *osb,
2099 					struct inode **ret_orphan_dir,
2100 					struct buffer_head **ret_orphan_dir_bh)
2101 {
2102 	struct inode *orphan_dir_inode;
2103 	struct buffer_head *orphan_dir_bh = NULL;
2104 	int ret = 0;
2105 
2106 	orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2107 						       ORPHAN_DIR_SYSTEM_INODE,
2108 						       osb->slot_num);
2109 	if (!orphan_dir_inode) {
2110 		ret = -ENOENT;
2111 		mlog_errno(ret);
2112 		return ret;
2113 	}
2114 
2115 	inode_lock(orphan_dir_inode);
2116 
2117 	ret = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2118 	if (ret < 0) {
2119 		inode_unlock(orphan_dir_inode);
2120 		iput(orphan_dir_inode);
2121 
2122 		mlog_errno(ret);
2123 		return ret;
2124 	}
2125 
2126 	*ret_orphan_dir = orphan_dir_inode;
2127 	*ret_orphan_dir_bh = orphan_dir_bh;
2128 
2129 	return 0;
2130 }
2131 
__ocfs2_prepare_orphan_dir(struct inode * orphan_dir_inode,struct buffer_head * orphan_dir_bh,u64 blkno,char * name,struct ocfs2_dir_lookup_result * lookup,bool dio)2132 static int __ocfs2_prepare_orphan_dir(struct inode *orphan_dir_inode,
2133 				      struct buffer_head *orphan_dir_bh,
2134 				      u64 blkno,
2135 				      char *name,
2136 				      struct ocfs2_dir_lookup_result *lookup,
2137 				      bool dio)
2138 {
2139 	int ret;
2140 	struct ocfs2_super *osb = OCFS2_SB(orphan_dir_inode->i_sb);
2141 	int namelen = dio ?
2142 			(OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN) :
2143 			OCFS2_ORPHAN_NAMELEN;
2144 
2145 	if (dio) {
2146 		ret = snprintf(name, OCFS2_DIO_ORPHAN_PREFIX_LEN + 1, "%s",
2147 				OCFS2_DIO_ORPHAN_PREFIX);
2148 		if (ret != OCFS2_DIO_ORPHAN_PREFIX_LEN) {
2149 			ret = -EINVAL;
2150 			mlog_errno(ret);
2151 			return ret;
2152 		}
2153 
2154 		ret = ocfs2_blkno_stringify(blkno,
2155 				name + OCFS2_DIO_ORPHAN_PREFIX_LEN);
2156 	} else
2157 		ret = ocfs2_blkno_stringify(blkno, name);
2158 	if (ret < 0) {
2159 		mlog_errno(ret);
2160 		return ret;
2161 	}
2162 
2163 	ret = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode,
2164 					   orphan_dir_bh, name,
2165 					   namelen, lookup);
2166 	if (ret < 0) {
2167 		mlog_errno(ret);
2168 		return ret;
2169 	}
2170 
2171 	return 0;
2172 }
2173 
2174 /**
2175  * ocfs2_prepare_orphan_dir() - Prepare an orphan directory for
2176  * insertion of an orphan.
2177  * @osb: ocfs2 file system
2178  * @ret_orphan_dir: Orphan dir inode - returned locked!
2179  * @blkno: Actual block number of the inode to be inserted into orphan dir.
2180  * @lookup: dir lookup result, to be passed back into functions like
2181  *          ocfs2_orphan_add
2182  *
2183  * Returns zero on success and the ret_orphan_dir, name and lookup
2184  * fields will be populated.
2185  *
2186  * Returns non-zero on failure.
2187  */
ocfs2_prepare_orphan_dir(struct ocfs2_super * osb,struct inode ** ret_orphan_dir,u64 blkno,char * name,struct ocfs2_dir_lookup_result * lookup,bool dio)2188 static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb,
2189 				    struct inode **ret_orphan_dir,
2190 				    u64 blkno,
2191 				    char *name,
2192 				    struct ocfs2_dir_lookup_result *lookup,
2193 				    bool dio)
2194 {
2195 	struct inode *orphan_dir_inode = NULL;
2196 	struct buffer_head *orphan_dir_bh = NULL;
2197 	int ret = 0;
2198 
2199 	ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir_inode,
2200 					   &orphan_dir_bh);
2201 	if (ret < 0) {
2202 		mlog_errno(ret);
2203 		return ret;
2204 	}
2205 
2206 	ret = __ocfs2_prepare_orphan_dir(orphan_dir_inode, orphan_dir_bh,
2207 					 blkno, name, lookup, dio);
2208 	if (ret < 0) {
2209 		mlog_errno(ret);
2210 		goto out;
2211 	}
2212 
2213 	*ret_orphan_dir = orphan_dir_inode;
2214 
2215 out:
2216 	brelse(orphan_dir_bh);
2217 
2218 	if (ret) {
2219 		ocfs2_inode_unlock(orphan_dir_inode, 1);
2220 		inode_unlock(orphan_dir_inode);
2221 		iput(orphan_dir_inode);
2222 	}
2223 
2224 	if (ret)
2225 		mlog_errno(ret);
2226 	return ret;
2227 }
2228 
ocfs2_orphan_add(struct ocfs2_super * osb,handle_t * handle,struct inode * inode,struct buffer_head * fe_bh,char * name,struct ocfs2_dir_lookup_result * lookup,struct inode * orphan_dir_inode,bool dio)2229 static int ocfs2_orphan_add(struct ocfs2_super *osb,
2230 			    handle_t *handle,
2231 			    struct inode *inode,
2232 			    struct buffer_head *fe_bh,
2233 			    char *name,
2234 			    struct ocfs2_dir_lookup_result *lookup,
2235 			    struct inode *orphan_dir_inode,
2236 			    bool dio)
2237 {
2238 	struct buffer_head *orphan_dir_bh = NULL;
2239 	int status = 0;
2240 	struct ocfs2_dinode *orphan_fe;
2241 	struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data;
2242 	int namelen = dio ?
2243 			(OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN) :
2244 			OCFS2_ORPHAN_NAMELEN;
2245 
2246 	trace_ocfs2_orphan_add_begin(
2247 				(unsigned long long)OCFS2_I(inode)->ip_blkno);
2248 
2249 	status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh);
2250 	if (status < 0) {
2251 		mlog_errno(status);
2252 		goto leave;
2253 	}
2254 
2255 	status = ocfs2_journal_access_di(handle,
2256 					 INODE_CACHE(orphan_dir_inode),
2257 					 orphan_dir_bh,
2258 					 OCFS2_JOURNAL_ACCESS_WRITE);
2259 	if (status < 0) {
2260 		mlog_errno(status);
2261 		goto leave;
2262 	}
2263 
2264 	/*
2265 	 * We're going to journal the change of i_flags and i_orphaned_slot.
2266 	 * It's safe anyway, though some callers may duplicate the journaling.
2267 	 * Journaling within the func just make the logic look more
2268 	 * straightforward.
2269 	 */
2270 	status = ocfs2_journal_access_di(handle,
2271 					 INODE_CACHE(inode),
2272 					 fe_bh,
2273 					 OCFS2_JOURNAL_ACCESS_WRITE);
2274 	if (status < 0) {
2275 		mlog_errno(status);
2276 		goto leave;
2277 	}
2278 
2279 	/* we're a cluster, and nlink can change on disk from
2280 	 * underneath us... */
2281 	orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
2282 	if (S_ISDIR(inode->i_mode))
2283 		ocfs2_add_links_count(orphan_fe, 1);
2284 	set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2285 	ocfs2_journal_dirty(handle, orphan_dir_bh);
2286 
2287 	status = __ocfs2_add_entry(handle, orphan_dir_inode, name,
2288 				   namelen, inode,
2289 				   OCFS2_I(inode)->ip_blkno,
2290 				   orphan_dir_bh, lookup);
2291 	if (status < 0) {
2292 		mlog_errno(status);
2293 		goto rollback;
2294 	}
2295 
2296 	if (dio) {
2297 		/* Update flag OCFS2_DIO_ORPHANED_FL and record the orphan
2298 		 * slot.
2299 		 */
2300 		fe->i_flags |= cpu_to_le32(OCFS2_DIO_ORPHANED_FL);
2301 		fe->i_dio_orphaned_slot = cpu_to_le16(osb->slot_num);
2302 	} else {
2303 		fe->i_flags |= cpu_to_le32(OCFS2_ORPHANED_FL);
2304 		OCFS2_I(inode)->ip_flags &= ~OCFS2_INODE_SKIP_ORPHAN_DIR;
2305 
2306 		/* Record which orphan dir our inode now resides
2307 		 * in. delete_inode will use this to determine which orphan
2308 		 * dir to lock. */
2309 		fe->i_orphaned_slot = cpu_to_le16(osb->slot_num);
2310 	}
2311 
2312 	ocfs2_journal_dirty(handle, fe_bh);
2313 
2314 	trace_ocfs2_orphan_add_end((unsigned long long)OCFS2_I(inode)->ip_blkno,
2315 				   osb->slot_num);
2316 
2317 rollback:
2318 	if (status < 0) {
2319 		if (S_ISDIR(inode->i_mode))
2320 			ocfs2_add_links_count(orphan_fe, -1);
2321 		set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2322 	}
2323 
2324 leave:
2325 	brelse(orphan_dir_bh);
2326 
2327 	return status;
2328 }
2329 
2330 /* unlike orphan_add, we expect the orphan dir to already be locked here. */
ocfs2_orphan_del(struct ocfs2_super * osb,handle_t * handle,struct inode * orphan_dir_inode,struct inode * inode,struct buffer_head * orphan_dir_bh,bool dio)2331 int ocfs2_orphan_del(struct ocfs2_super *osb,
2332 		     handle_t *handle,
2333 		     struct inode *orphan_dir_inode,
2334 		     struct inode *inode,
2335 		     struct buffer_head *orphan_dir_bh,
2336 		     bool dio)
2337 {
2338 	char name[OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN + 1];
2339 	struct ocfs2_dinode *orphan_fe;
2340 	int status = 0;
2341 	struct ocfs2_dir_lookup_result lookup = { NULL, };
2342 
2343 	if (dio) {
2344 		status = snprintf(name, OCFS2_DIO_ORPHAN_PREFIX_LEN + 1, "%s",
2345 				OCFS2_DIO_ORPHAN_PREFIX);
2346 		if (status != OCFS2_DIO_ORPHAN_PREFIX_LEN) {
2347 			status = -EINVAL;
2348 			mlog_errno(status);
2349 			return status;
2350 		}
2351 
2352 		status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno,
2353 				name + OCFS2_DIO_ORPHAN_PREFIX_LEN);
2354 	} else
2355 		status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name);
2356 	if (status < 0) {
2357 		mlog_errno(status);
2358 		goto leave;
2359 	}
2360 
2361 	trace_ocfs2_orphan_del(
2362 	     (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
2363 	     name, strlen(name));
2364 
2365 	status = ocfs2_journal_access_di(handle,
2366 					 INODE_CACHE(orphan_dir_inode),
2367 					 orphan_dir_bh,
2368 					 OCFS2_JOURNAL_ACCESS_WRITE);
2369 	if (status < 0) {
2370 		mlog_errno(status);
2371 		goto leave;
2372 	}
2373 
2374 	/* find it's spot in the orphan directory */
2375 	status = ocfs2_find_entry(name, strlen(name), orphan_dir_inode,
2376 				  &lookup);
2377 	if (status) {
2378 		mlog_errno(status);
2379 		goto leave;
2380 	}
2381 
2382 	/* remove it from the orphan directory */
2383 	status = ocfs2_delete_entry(handle, orphan_dir_inode, &lookup);
2384 	if (status < 0) {
2385 		mlog_errno(status);
2386 		goto leave;
2387 	}
2388 
2389 	/* do the i_nlink dance! :) */
2390 	orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data;
2391 	if (S_ISDIR(inode->i_mode))
2392 		ocfs2_add_links_count(orphan_fe, -1);
2393 	set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe));
2394 	ocfs2_journal_dirty(handle, orphan_dir_bh);
2395 
2396 leave:
2397 	ocfs2_free_dir_lookup_result(&lookup);
2398 
2399 	if (status)
2400 		mlog_errno(status);
2401 	return status;
2402 }
2403 
2404 /**
2405  * ocfs2_prep_new_orphaned_file() - Prepare the orphan dir to receive a newly
2406  * allocated file. This is different from the typical 'add to orphan dir'
2407  * operation in that the inode does not yet exist. This is a problem because
2408  * the orphan dir stringifies the inode block number to come up with it's
2409  * dirent. Obviously if the inode does not yet exist we have a chicken and egg
2410  * problem. This function works around it by calling deeper into the orphan
2411  * and suballoc code than other callers. Use this only by necessity.
2412  * @dir: The directory which this inode will ultimately wind up under - not the
2413  * orphan dir!
2414  * @dir_bh: buffer_head the @dir inode block
2415  * @orphan_name: string of length (CFS2_ORPHAN_NAMELEN + 1). Will be filled
2416  * with the string to be used for orphan dirent. Pass back to the orphan dir
2417  * code.
2418  * @ret_orphan_dir: orphan dir inode returned to be passed back into orphan
2419  * dir code.
2420  * @ret_di_blkno: block number where the new inode will be allocated.
2421  * @orphan_insert: Dir insert context to be passed back into orphan dir code.
2422  * @ret_inode_ac: Inode alloc context to be passed back to the allocator.
2423  *
2424  * Returns zero on success and the ret_orphan_dir, name and lookup
2425  * fields will be populated.
2426  *
2427  * Returns non-zero on failure.
2428  */
ocfs2_prep_new_orphaned_file(struct inode * dir,struct buffer_head * dir_bh,char * orphan_name,struct inode ** ret_orphan_dir,u64 * ret_di_blkno,struct ocfs2_dir_lookup_result * orphan_insert,struct ocfs2_alloc_context ** ret_inode_ac)2429 static int ocfs2_prep_new_orphaned_file(struct inode *dir,
2430 					struct buffer_head *dir_bh,
2431 					char *orphan_name,
2432 					struct inode **ret_orphan_dir,
2433 					u64 *ret_di_blkno,
2434 					struct ocfs2_dir_lookup_result *orphan_insert,
2435 					struct ocfs2_alloc_context **ret_inode_ac)
2436 {
2437 	int ret;
2438 	u64 di_blkno;
2439 	struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2440 	struct inode *orphan_dir = NULL;
2441 	struct buffer_head *orphan_dir_bh = NULL;
2442 	struct ocfs2_alloc_context *inode_ac = NULL;
2443 
2444 	ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir, &orphan_dir_bh);
2445 	if (ret < 0) {
2446 		mlog_errno(ret);
2447 		return ret;
2448 	}
2449 
2450 	/* reserve an inode spot */
2451 	ret = ocfs2_reserve_new_inode(osb, &inode_ac);
2452 	if (ret < 0) {
2453 		if (ret != -ENOSPC)
2454 			mlog_errno(ret);
2455 		goto out;
2456 	}
2457 
2458 	ret = ocfs2_find_new_inode_loc(dir, dir_bh, inode_ac,
2459 				       &di_blkno);
2460 	if (ret) {
2461 		mlog_errno(ret);
2462 		goto out;
2463 	}
2464 
2465 	ret = __ocfs2_prepare_orphan_dir(orphan_dir, orphan_dir_bh,
2466 					 di_blkno, orphan_name, orphan_insert,
2467 					 false);
2468 	if (ret < 0) {
2469 		mlog_errno(ret);
2470 		goto out;
2471 	}
2472 
2473 out:
2474 	if (ret == 0) {
2475 		*ret_orphan_dir = orphan_dir;
2476 		*ret_di_blkno = di_blkno;
2477 		*ret_inode_ac = inode_ac;
2478 		/*
2479 		 * orphan_name and orphan_insert are already up to
2480 		 * date via prepare_orphan_dir
2481 		 */
2482 	} else {
2483 		/* Unroll reserve_new_inode* */
2484 		if (inode_ac)
2485 			ocfs2_free_alloc_context(inode_ac);
2486 
2487 		/* Unroll orphan dir locking */
2488 		inode_unlock(orphan_dir);
2489 		ocfs2_inode_unlock(orphan_dir, 1);
2490 		iput(orphan_dir);
2491 	}
2492 
2493 	brelse(orphan_dir_bh);
2494 
2495 	return ret;
2496 }
2497 
ocfs2_create_inode_in_orphan(struct inode * dir,int mode,struct inode ** new_inode)2498 int ocfs2_create_inode_in_orphan(struct inode *dir,
2499 				 int mode,
2500 				 struct inode **new_inode)
2501 {
2502 	int status, did_quota_inode = 0;
2503 	struct inode *inode = NULL;
2504 	struct inode *orphan_dir = NULL;
2505 	struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2506 	struct ocfs2_dinode *di = NULL;
2507 	handle_t *handle = NULL;
2508 	char orphan_name[OCFS2_ORPHAN_NAMELEN + 1];
2509 	struct buffer_head *parent_di_bh = NULL;
2510 	struct buffer_head *new_di_bh = NULL;
2511 	struct ocfs2_alloc_context *inode_ac = NULL;
2512 	struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
2513 	u64 di_blkno, suballoc_loc;
2514 	u16 suballoc_bit;
2515 
2516 	status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2517 	if (status < 0) {
2518 		if (status != -ENOENT)
2519 			mlog_errno(status);
2520 		return status;
2521 	}
2522 
2523 	status = ocfs2_prep_new_orphaned_file(dir, parent_di_bh,
2524 					      orphan_name, &orphan_dir,
2525 					      &di_blkno, &orphan_insert, &inode_ac);
2526 	if (status < 0) {
2527 		if (status != -ENOSPC)
2528 			mlog_errno(status);
2529 		goto leave;
2530 	}
2531 
2532 	inode = ocfs2_get_init_inode(dir, mode);
2533 	if (IS_ERR(inode)) {
2534 		status = PTR_ERR(inode);
2535 		inode = NULL;
2536 		mlog_errno(status);
2537 		goto leave;
2538 	}
2539 
2540 	handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, 0, 0));
2541 	if (IS_ERR(handle)) {
2542 		status = PTR_ERR(handle);
2543 		handle = NULL;
2544 		mlog_errno(status);
2545 		goto leave;
2546 	}
2547 
2548 	status = dquot_alloc_inode(inode);
2549 	if (status)
2550 		goto leave;
2551 	did_quota_inode = 1;
2552 
2553 	status = ocfs2_claim_new_inode_at_loc(handle, dir, inode_ac,
2554 					      &suballoc_loc,
2555 					      &suballoc_bit, di_blkno);
2556 	if (status < 0) {
2557 		mlog_errno(status);
2558 		goto leave;
2559 	}
2560 
2561 	clear_nlink(inode);
2562 	/* do the real work now. */
2563 	status = __ocfs2_mknod_locked(dir, inode,
2564 				      0, &new_di_bh, parent_di_bh, handle,
2565 				      inode_ac, di_blkno, suballoc_loc,
2566 				      suballoc_bit);
2567 	if (status < 0) {
2568 		mlog_errno(status);
2569 		goto leave;
2570 	}
2571 
2572 	di = (struct ocfs2_dinode *)new_di_bh->b_data;
2573 	status = ocfs2_orphan_add(osb, handle, inode, new_di_bh, orphan_name,
2574 				  &orphan_insert, orphan_dir, false);
2575 	if (status < 0) {
2576 		mlog_errno(status);
2577 		goto leave;
2578 	}
2579 
2580 	/* get open lock so that only nodes can't remove it from orphan dir. */
2581 	status = ocfs2_open_lock(inode);
2582 	if (status < 0)
2583 		mlog_errno(status);
2584 
2585 	insert_inode_hash(inode);
2586 leave:
2587 	if (status < 0 && did_quota_inode)
2588 		dquot_free_inode(inode);
2589 	if (handle)
2590 		ocfs2_commit_trans(osb, handle);
2591 
2592 	if (orphan_dir) {
2593 		/* This was locked for us in ocfs2_prepare_orphan_dir() */
2594 		ocfs2_inode_unlock(orphan_dir, 1);
2595 		inode_unlock(orphan_dir);
2596 		iput(orphan_dir);
2597 	}
2598 
2599 	if ((status < 0) && inode) {
2600 		clear_nlink(inode);
2601 		iput(inode);
2602 	}
2603 
2604 	if (inode_ac)
2605 		ocfs2_free_alloc_context(inode_ac);
2606 
2607 	brelse(new_di_bh);
2608 
2609 	if (!status)
2610 		*new_inode = inode;
2611 
2612 	ocfs2_free_dir_lookup_result(&orphan_insert);
2613 
2614 	ocfs2_inode_unlock(dir, 1);
2615 	brelse(parent_di_bh);
2616 	return status;
2617 }
2618 
ocfs2_add_inode_to_orphan(struct ocfs2_super * osb,struct inode * inode)2619 int ocfs2_add_inode_to_orphan(struct ocfs2_super *osb,
2620 	struct inode *inode)
2621 {
2622 	char orphan_name[OCFS2_DIO_ORPHAN_PREFIX_LEN + OCFS2_ORPHAN_NAMELEN + 1];
2623 	struct inode *orphan_dir_inode = NULL;
2624 	struct ocfs2_dir_lookup_result orphan_insert = { NULL, };
2625 	struct buffer_head *di_bh = NULL;
2626 	int status = 0;
2627 	handle_t *handle = NULL;
2628 	struct ocfs2_dinode *di = NULL;
2629 
2630 	status = ocfs2_inode_lock(inode, &di_bh, 1);
2631 	if (status < 0) {
2632 		mlog_errno(status);
2633 		goto bail;
2634 	}
2635 
2636 	di = (struct ocfs2_dinode *) di_bh->b_data;
2637 	/*
2638 	 * Another append dio crashed?
2639 	 * If so, manually recover it first.
2640 	 */
2641 	if (unlikely(di->i_flags & cpu_to_le32(OCFS2_DIO_ORPHANED_FL))) {
2642 		status = ocfs2_truncate_file(inode, di_bh, i_size_read(inode));
2643 		if (status < 0) {
2644 			if (status != -ENOSPC)
2645 				mlog_errno(status);
2646 			goto bail_unlock_inode;
2647 		}
2648 
2649 		status = ocfs2_del_inode_from_orphan(osb, inode, di_bh, 0, 0);
2650 		if (status < 0) {
2651 			mlog_errno(status);
2652 			goto bail_unlock_inode;
2653 		}
2654 	}
2655 
2656 	status = ocfs2_prepare_orphan_dir(osb, &orphan_dir_inode,
2657 			OCFS2_I(inode)->ip_blkno,
2658 			orphan_name,
2659 			&orphan_insert,
2660 			true);
2661 	if (status < 0) {
2662 		mlog_errno(status);
2663 		goto bail_unlock_inode;
2664 	}
2665 
2666 	handle = ocfs2_start_trans(osb,
2667 			OCFS2_INODE_ADD_TO_ORPHAN_CREDITS);
2668 	if (IS_ERR(handle)) {
2669 		status = PTR_ERR(handle);
2670 		goto bail_unlock_orphan;
2671 	}
2672 
2673 	status = ocfs2_orphan_add(osb, handle, inode, di_bh, orphan_name,
2674 			&orphan_insert, orphan_dir_inode, true);
2675 	if (status)
2676 		mlog_errno(status);
2677 
2678 	ocfs2_commit_trans(osb, handle);
2679 
2680 bail_unlock_orphan:
2681 	ocfs2_inode_unlock(orphan_dir_inode, 1);
2682 	inode_unlock(orphan_dir_inode);
2683 	iput(orphan_dir_inode);
2684 
2685 	ocfs2_free_dir_lookup_result(&orphan_insert);
2686 
2687 bail_unlock_inode:
2688 	ocfs2_inode_unlock(inode, 1);
2689 	brelse(di_bh);
2690 
2691 bail:
2692 	return status;
2693 }
2694 
ocfs2_del_inode_from_orphan(struct ocfs2_super * osb,struct inode * inode,struct buffer_head * di_bh,int update_isize,loff_t end)2695 int ocfs2_del_inode_from_orphan(struct ocfs2_super *osb,
2696 		struct inode *inode, struct buffer_head *di_bh,
2697 		int update_isize, loff_t end)
2698 {
2699 	struct inode *orphan_dir_inode = NULL;
2700 	struct buffer_head *orphan_dir_bh = NULL;
2701 	struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2702 	handle_t *handle = NULL;
2703 	int status = 0;
2704 
2705 	orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2706 			ORPHAN_DIR_SYSTEM_INODE,
2707 			le16_to_cpu(di->i_dio_orphaned_slot));
2708 	if (!orphan_dir_inode) {
2709 		status = -ENOENT;
2710 		mlog_errno(status);
2711 		goto bail;
2712 	}
2713 
2714 	inode_lock(orphan_dir_inode);
2715 	status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2716 	if (status < 0) {
2717 		inode_unlock(orphan_dir_inode);
2718 		iput(orphan_dir_inode);
2719 		mlog_errno(status);
2720 		goto bail;
2721 	}
2722 
2723 	handle = ocfs2_start_trans(osb,
2724 			OCFS2_INODE_DEL_FROM_ORPHAN_CREDITS);
2725 	if (IS_ERR(handle)) {
2726 		status = PTR_ERR(handle);
2727 		goto bail_unlock_orphan;
2728 	}
2729 
2730 	BUG_ON(!(di->i_flags & cpu_to_le32(OCFS2_DIO_ORPHANED_FL)));
2731 
2732 	status = ocfs2_orphan_del(osb, handle, orphan_dir_inode,
2733 				inode, orphan_dir_bh, true);
2734 	if (status < 0) {
2735 		mlog_errno(status);
2736 		goto bail_commit;
2737 	}
2738 
2739 	status = ocfs2_journal_access_di(handle,
2740 			INODE_CACHE(inode),
2741 			di_bh,
2742 			OCFS2_JOURNAL_ACCESS_WRITE);
2743 	if (status < 0) {
2744 		mlog_errno(status);
2745 		goto bail_commit;
2746 	}
2747 
2748 	di->i_flags &= ~cpu_to_le32(OCFS2_DIO_ORPHANED_FL);
2749 	di->i_dio_orphaned_slot = 0;
2750 
2751 	if (update_isize) {
2752 		status = ocfs2_set_inode_size(handle, inode, di_bh, end);
2753 		if (status)
2754 			mlog_errno(status);
2755 	} else
2756 		ocfs2_journal_dirty(handle, di_bh);
2757 
2758 bail_commit:
2759 	ocfs2_commit_trans(osb, handle);
2760 
2761 bail_unlock_orphan:
2762 	ocfs2_inode_unlock(orphan_dir_inode, 1);
2763 	inode_unlock(orphan_dir_inode);
2764 	brelse(orphan_dir_bh);
2765 	iput(orphan_dir_inode);
2766 
2767 bail:
2768 	return status;
2769 }
2770 
ocfs2_mv_orphaned_inode_to_new(struct inode * dir,struct inode * inode,struct dentry * dentry)2771 int ocfs2_mv_orphaned_inode_to_new(struct inode *dir,
2772 				   struct inode *inode,
2773 				   struct dentry *dentry)
2774 {
2775 	int status = 0;
2776 	struct buffer_head *parent_di_bh = NULL;
2777 	handle_t *handle = NULL;
2778 	struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2779 	struct ocfs2_dinode *dir_di, *di;
2780 	struct inode *orphan_dir_inode = NULL;
2781 	struct buffer_head *orphan_dir_bh = NULL;
2782 	struct buffer_head *di_bh = NULL;
2783 	struct ocfs2_dir_lookup_result lookup = { NULL, };
2784 
2785 	trace_ocfs2_mv_orphaned_inode_to_new(dir, dentry,
2786 				dentry->d_name.len, dentry->d_name.name,
2787 				(unsigned long long)OCFS2_I(dir)->ip_blkno,
2788 				(unsigned long long)OCFS2_I(inode)->ip_blkno);
2789 
2790 	status = ocfs2_inode_lock(dir, &parent_di_bh, 1);
2791 	if (status < 0) {
2792 		if (status != -ENOENT)
2793 			mlog_errno(status);
2794 		return status;
2795 	}
2796 
2797 	dir_di = (struct ocfs2_dinode *) parent_di_bh->b_data;
2798 	if (!dir_di->i_links_count) {
2799 		/* can't make a file in a deleted directory. */
2800 		status = -ENOENT;
2801 		goto leave;
2802 	}
2803 
2804 	status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name,
2805 					   dentry->d_name.len);
2806 	if (status)
2807 		goto leave;
2808 
2809 	/* get a spot inside the dir. */
2810 	status = ocfs2_prepare_dir_for_insert(osb, dir, parent_di_bh,
2811 					      dentry->d_name.name,
2812 					      dentry->d_name.len, &lookup);
2813 	if (status < 0) {
2814 		mlog_errno(status);
2815 		goto leave;
2816 	}
2817 
2818 	orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2819 						       ORPHAN_DIR_SYSTEM_INODE,
2820 						       osb->slot_num);
2821 	if (!orphan_dir_inode) {
2822 		status = -ENOENT;
2823 		mlog_errno(status);
2824 		goto leave;
2825 	}
2826 
2827 	inode_lock(orphan_dir_inode);
2828 
2829 	status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
2830 	if (status < 0) {
2831 		mlog_errno(status);
2832 		inode_unlock(orphan_dir_inode);
2833 		iput(orphan_dir_inode);
2834 		goto leave;
2835 	}
2836 
2837 	status = ocfs2_read_inode_block(inode, &di_bh);
2838 	if (status < 0) {
2839 		mlog_errno(status);
2840 		goto orphan_unlock;
2841 	}
2842 
2843 	handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb));
2844 	if (IS_ERR(handle)) {
2845 		status = PTR_ERR(handle);
2846 		handle = NULL;
2847 		mlog_errno(status);
2848 		goto orphan_unlock;
2849 	}
2850 
2851 	status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
2852 					 di_bh, OCFS2_JOURNAL_ACCESS_WRITE);
2853 	if (status < 0) {
2854 		mlog_errno(status);
2855 		goto out_commit;
2856 	}
2857 
2858 	status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
2859 				  orphan_dir_bh, false);
2860 	if (status < 0) {
2861 		mlog_errno(status);
2862 		goto out_commit;
2863 	}
2864 
2865 	di = (struct ocfs2_dinode *)di_bh->b_data;
2866 	di->i_flags &= ~cpu_to_le32(OCFS2_ORPHANED_FL);
2867 	di->i_orphaned_slot = 0;
2868 	set_nlink(inode, 1);
2869 	ocfs2_set_links_count(di, inode->i_nlink);
2870 	ocfs2_update_inode_fsync_trans(handle, inode, 1);
2871 	ocfs2_journal_dirty(handle, di_bh);
2872 
2873 	status = ocfs2_add_entry(handle, dentry, inode,
2874 				 OCFS2_I(inode)->ip_blkno, parent_di_bh,
2875 				 &lookup);
2876 	if (status < 0) {
2877 		mlog_errno(status);
2878 		goto out_commit;
2879 	}
2880 
2881 	status = ocfs2_dentry_attach_lock(dentry, inode,
2882 					  OCFS2_I(dir)->ip_blkno);
2883 	if (status) {
2884 		mlog_errno(status);
2885 		goto out_commit;
2886 	}
2887 
2888 	d_instantiate(dentry, inode);
2889 	status = 0;
2890 out_commit:
2891 	ocfs2_commit_trans(osb, handle);
2892 orphan_unlock:
2893 	ocfs2_inode_unlock(orphan_dir_inode, 1);
2894 	inode_unlock(orphan_dir_inode);
2895 	iput(orphan_dir_inode);
2896 leave:
2897 
2898 	ocfs2_inode_unlock(dir, 1);
2899 
2900 	brelse(di_bh);
2901 	brelse(parent_di_bh);
2902 	brelse(orphan_dir_bh);
2903 
2904 	ocfs2_free_dir_lookup_result(&lookup);
2905 
2906 	if (status)
2907 		mlog_errno(status);
2908 
2909 	return status;
2910 }
2911 
2912 const struct inode_operations ocfs2_dir_iops = {
2913 	.create		= ocfs2_create,
2914 	.lookup		= ocfs2_lookup,
2915 	.link		= ocfs2_link,
2916 	.unlink		= ocfs2_unlink,
2917 	.rmdir		= ocfs2_unlink,
2918 	.symlink	= ocfs2_symlink,
2919 	.mkdir		= ocfs2_mkdir,
2920 	.mknod		= ocfs2_mknod,
2921 	.rename		= ocfs2_rename,
2922 	.setattr	= ocfs2_setattr,
2923 	.getattr	= ocfs2_getattr,
2924 	.permission	= ocfs2_permission,
2925 	.listxattr	= ocfs2_listxattr,
2926 	.fiemap         = ocfs2_fiemap,
2927 	.get_acl	= ocfs2_iop_get_acl,
2928 	.set_acl	= ocfs2_iop_set_acl,
2929 };
2930