• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* * This file is part of UBIFS.
3  *
4  * Copyright (C) 2006-2008 Nokia Corporation.
5  * Copyright (C) 2006, 2007 University of Szeged, Hungary
6  *
7  * Authors: Artem Bityutskiy (Битюцкий Артём)
8  *          Adrian Hunter
9  *          Zoltan Sogor
10  */
11 
12 /*
13  * This file implements directory operations.
14  *
15  * All FS operations in this file allocate budget before writing anything to the
16  * media. If they fail to allocate it, the error is returned. The only
17  * exceptions are 'ubifs_unlink()' and 'ubifs_rmdir()' which keep working even
18  * if they unable to allocate the budget, because deletion %-ENOSPC failure is
19  * not what users are usually ready to get. UBIFS budgeting subsystem has some
20  * space reserved for these purposes.
21  *
22  * All operations in this file write all inodes which they change straight
23  * away, instead of marking them dirty. For example, 'ubifs_link()' changes
24  * @i_size of the parent inode and writes the parent inode together with the
25  * target inode. This was done to simplify file-system recovery which would
26  * otherwise be very difficult to do. The only exception is rename which marks
27  * the re-named inode dirty (because its @i_ctime is updated) but does not
28  * write it, but just marks it as dirty.
29  */
30 
31 #include "ubifs.h"
32 
33 /**
34  * inherit_flags - inherit flags of the parent inode.
35  * @dir: parent inode
36  * @mode: new inode mode flags
37  *
38  * This is a helper function for 'ubifs_new_inode()' which inherits flag of the
39  * parent directory inode @dir. UBIFS inodes inherit the following flags:
40  * o %UBIFS_COMPR_FL, which is useful to switch compression on/of on
41  *   sub-directory basis;
42  * o %UBIFS_SYNC_FL - useful for the same reasons;
43  * o %UBIFS_DIRSYNC_FL - similar, but relevant only to directories.
44  *
45  * This function returns the inherited flags.
46  */
inherit_flags(const struct inode * dir,umode_t mode)47 static int inherit_flags(const struct inode *dir, umode_t mode)
48 {
49 	int flags;
50 	const struct ubifs_inode *ui = ubifs_inode(dir);
51 
52 	if (!S_ISDIR(dir->i_mode))
53 		/*
54 		 * The parent is not a directory, which means that an extended
55 		 * attribute inode is being created. No flags.
56 		 */
57 		return 0;
58 
59 	flags = ui->flags & (UBIFS_COMPR_FL | UBIFS_SYNC_FL | UBIFS_DIRSYNC_FL);
60 	if (!S_ISDIR(mode))
61 		/* The "DIRSYNC" flag only applies to directories */
62 		flags &= ~UBIFS_DIRSYNC_FL;
63 	return flags;
64 }
65 
66 /**
67  * ubifs_new_inode - allocate new UBIFS inode object.
68  * @c: UBIFS file-system description object
69  * @dir: parent directory inode
70  * @mode: inode mode flags
71  *
72  * This function finds an unused inode number, allocates new inode and
73  * initializes it. Returns new inode in case of success and an error code in
74  * case of failure.
75  */
ubifs_new_inode(struct ubifs_info * c,struct inode * dir,umode_t mode)76 struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir,
77 			      umode_t mode)
78 {
79 	int err;
80 	struct inode *inode;
81 	struct ubifs_inode *ui;
82 	bool encrypted = false;
83 
84 	inode = new_inode(c->vfs_sb);
85 	ui = ubifs_inode(inode);
86 	if (!inode)
87 		return ERR_PTR(-ENOMEM);
88 
89 	/*
90 	 * Set 'S_NOCMTIME' to prevent VFS form updating [mc]time of inodes and
91 	 * marking them dirty in file write path (see 'file_update_time()').
92 	 * UBIFS has to fully control "clean <-> dirty" transitions of inodes
93 	 * to make budgeting work.
94 	 */
95 	inode->i_flags |= S_NOCMTIME;
96 
97 	inode_init_owner(inode, dir, mode);
98 	inode->i_mtime = inode->i_atime = inode->i_ctime =
99 			 current_time(inode);
100 	inode->i_mapping->nrpages = 0;
101 
102 	err = fscrypt_prepare_new_inode(dir, inode, &encrypted);
103 	if (err) {
104 		ubifs_err(c, "fscrypt_prepare_new_inode failed: %i", err);
105 		goto out_iput;
106 	}
107 
108 	switch (mode & S_IFMT) {
109 	case S_IFREG:
110 		inode->i_mapping->a_ops = &ubifs_file_address_operations;
111 		inode->i_op = &ubifs_file_inode_operations;
112 		inode->i_fop = &ubifs_file_operations;
113 		break;
114 	case S_IFDIR:
115 		inode->i_op  = &ubifs_dir_inode_operations;
116 		inode->i_fop = &ubifs_dir_operations;
117 		inode->i_size = ui->ui_size = UBIFS_INO_NODE_SZ;
118 		break;
119 	case S_IFLNK:
120 		inode->i_op = &ubifs_symlink_inode_operations;
121 		break;
122 	case S_IFSOCK:
123 	case S_IFIFO:
124 	case S_IFBLK:
125 	case S_IFCHR:
126 		inode->i_op  = &ubifs_file_inode_operations;
127 		break;
128 	default:
129 		BUG();
130 	}
131 
132 	ui->flags = inherit_flags(dir, mode);
133 	ubifs_set_inode_flags(inode);
134 	if (S_ISREG(mode))
135 		ui->compr_type = c->default_compr;
136 	else
137 		ui->compr_type = UBIFS_COMPR_NONE;
138 	ui->synced_i_size = 0;
139 
140 	spin_lock(&c->cnt_lock);
141 	/* Inode number overflow is currently not supported */
142 	if (c->highest_inum >= INUM_WARN_WATERMARK) {
143 		if (c->highest_inum >= INUM_WATERMARK) {
144 			spin_unlock(&c->cnt_lock);
145 			ubifs_err(c, "out of inode numbers");
146 			err = -EINVAL;
147 			goto out_iput;
148 		}
149 		ubifs_warn(c, "running out of inode numbers (current %lu, max %u)",
150 			   (unsigned long)c->highest_inum, INUM_WATERMARK);
151 	}
152 
153 	inode->i_ino = ++c->highest_inum;
154 	/*
155 	 * The creation sequence number remains with this inode for its
156 	 * lifetime. All nodes for this inode have a greater sequence number,
157 	 * and so it is possible to distinguish obsolete nodes belonging to a
158 	 * previous incarnation of the same inode number - for example, for the
159 	 * purpose of rebuilding the index.
160 	 */
161 	ui->creat_sqnum = ++c->max_sqnum;
162 	spin_unlock(&c->cnt_lock);
163 
164 	if (encrypted) {
165 		err = fscrypt_set_context(inode, NULL);
166 		if (err) {
167 			ubifs_err(c, "fscrypt_set_context failed: %i", err);
168 			goto out_iput;
169 		}
170 	}
171 
172 	return inode;
173 
174 out_iput:
175 	make_bad_inode(inode);
176 	iput(inode);
177 	return ERR_PTR(err);
178 }
179 
dbg_check_name(const struct ubifs_info * c,const struct ubifs_dent_node * dent,const struct fscrypt_name * nm)180 static int dbg_check_name(const struct ubifs_info *c,
181 			  const struct ubifs_dent_node *dent,
182 			  const struct fscrypt_name *nm)
183 {
184 	if (!dbg_is_chk_gen(c))
185 		return 0;
186 	if (le16_to_cpu(dent->nlen) != fname_len(nm))
187 		return -EINVAL;
188 	if (memcmp(dent->name, fname_name(nm), fname_len(nm)))
189 		return -EINVAL;
190 	return 0;
191 }
192 
ubifs_lookup(struct inode * dir,struct dentry * dentry,unsigned int flags)193 static struct dentry *ubifs_lookup(struct inode *dir, struct dentry *dentry,
194 				   unsigned int flags)
195 {
196 	int err;
197 	union ubifs_key key;
198 	struct inode *inode = NULL;
199 	struct ubifs_dent_node *dent = NULL;
200 	struct ubifs_info *c = dir->i_sb->s_fs_info;
201 	struct fscrypt_name nm;
202 
203 	dbg_gen("'%pd' in dir ino %lu", dentry, dir->i_ino);
204 
205 	err = fscrypt_prepare_lookup(dir, dentry, &nm);
206 	if (err == -ENOENT)
207 		return d_splice_alias(NULL, dentry);
208 	if (err)
209 		return ERR_PTR(err);
210 
211 	if (fname_len(&nm) > UBIFS_MAX_NLEN) {
212 		inode = ERR_PTR(-ENAMETOOLONG);
213 		goto done;
214 	}
215 
216 	dent = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
217 	if (!dent) {
218 		inode = ERR_PTR(-ENOMEM);
219 		goto done;
220 	}
221 
222 	if (fname_name(&nm) == NULL) {
223 		if (nm.hash & ~UBIFS_S_KEY_HASH_MASK)
224 			goto done; /* ENOENT */
225 		dent_key_init_hash(c, &key, dir->i_ino, nm.hash);
226 		err = ubifs_tnc_lookup_dh(c, &key, dent, nm.minor_hash);
227 	} else {
228 		dent_key_init(c, &key, dir->i_ino, &nm);
229 		err = ubifs_tnc_lookup_nm(c, &key, dent, &nm);
230 	}
231 
232 	if (err) {
233 		if (err == -ENOENT)
234 			dbg_gen("not found");
235 		else
236 			inode = ERR_PTR(err);
237 		goto done;
238 	}
239 
240 	if (dbg_check_name(c, dent, &nm)) {
241 		inode = ERR_PTR(-EINVAL);
242 		goto done;
243 	}
244 
245 	inode = ubifs_iget(dir->i_sb, le64_to_cpu(dent->inum));
246 	if (IS_ERR(inode)) {
247 		/*
248 		 * This should not happen. Probably the file-system needs
249 		 * checking.
250 		 */
251 		err = PTR_ERR(inode);
252 		ubifs_err(c, "dead directory entry '%pd', error %d",
253 			  dentry, err);
254 		ubifs_ro_mode(c, err);
255 		goto done;
256 	}
257 
258 	if (IS_ENCRYPTED(dir) &&
259 	    (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
260 	    !fscrypt_has_permitted_context(dir, inode)) {
261 		ubifs_warn(c, "Inconsistent encryption contexts: %lu/%lu",
262 			   dir->i_ino, inode->i_ino);
263 		iput(inode);
264 		inode = ERR_PTR(-EPERM);
265 	}
266 
267 done:
268 	kfree(dent);
269 	fscrypt_free_filename(&nm);
270 	return d_splice_alias(inode, dentry);
271 }
272 
ubifs_prepare_create(struct inode * dir,struct dentry * dentry,struct fscrypt_name * nm)273 static int ubifs_prepare_create(struct inode *dir, struct dentry *dentry,
274 				struct fscrypt_name *nm)
275 {
276 	if (fscrypt_is_nokey_name(dentry))
277 		return -ENOKEY;
278 
279 	return fscrypt_setup_filename(dir, &dentry->d_name, 0, nm);
280 }
281 
ubifs_create(struct inode * dir,struct dentry * dentry,umode_t mode,bool excl)282 static int ubifs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
283 			bool excl)
284 {
285 	struct inode *inode;
286 	struct ubifs_info *c = dir->i_sb->s_fs_info;
287 	struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
288 					.dirtied_ino = 1 };
289 	struct ubifs_inode *dir_ui = ubifs_inode(dir);
290 	struct fscrypt_name nm;
291 	int err, sz_change;
292 
293 	/*
294 	 * Budget request settings: new inode, new direntry, changing the
295 	 * parent directory inode.
296 	 */
297 
298 	dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
299 		dentry, mode, dir->i_ino);
300 
301 	err = ubifs_budget_space(c, &req);
302 	if (err)
303 		return err;
304 
305 	err = ubifs_prepare_create(dir, dentry, &nm);
306 	if (err)
307 		goto out_budg;
308 
309 	sz_change = CALC_DENT_SIZE(fname_len(&nm));
310 
311 	inode = ubifs_new_inode(c, dir, mode);
312 	if (IS_ERR(inode)) {
313 		err = PTR_ERR(inode);
314 		goto out_fname;
315 	}
316 
317 	err = ubifs_init_security(dir, inode, &dentry->d_name);
318 	if (err)
319 		goto out_inode;
320 
321 	mutex_lock(&dir_ui->ui_mutex);
322 	dir->i_size += sz_change;
323 	dir_ui->ui_size = dir->i_size;
324 	dir->i_mtime = dir->i_ctime = inode->i_ctime;
325 	err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
326 	if (err)
327 		goto out_cancel;
328 	mutex_unlock(&dir_ui->ui_mutex);
329 
330 	ubifs_release_budget(c, &req);
331 	fscrypt_free_filename(&nm);
332 	insert_inode_hash(inode);
333 	d_instantiate(dentry, inode);
334 	return 0;
335 
336 out_cancel:
337 	dir->i_size -= sz_change;
338 	dir_ui->ui_size = dir->i_size;
339 	mutex_unlock(&dir_ui->ui_mutex);
340 out_inode:
341 	make_bad_inode(inode);
342 	iput(inode);
343 out_fname:
344 	fscrypt_free_filename(&nm);
345 out_budg:
346 	ubifs_release_budget(c, &req);
347 	ubifs_err(c, "cannot create regular file, error %d", err);
348 	return err;
349 }
350 
create_whiteout(struct inode * dir,struct dentry * dentry)351 static struct inode *create_whiteout(struct inode *dir, struct dentry *dentry)
352 {
353 	int err;
354 	umode_t mode = S_IFCHR | WHITEOUT_MODE;
355 	struct inode *inode;
356 	struct ubifs_info *c = dir->i_sb->s_fs_info;
357 	struct fscrypt_name nm;
358 
359 	/*
360 	 * Create an inode('nlink = 1') for whiteout without updating journal,
361 	 * let ubifs_jnl_rename() store it on flash to complete rename whiteout
362 	 * atomically.
363 	 */
364 
365 	dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
366 		dentry, mode, dir->i_ino);
367 
368 	err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
369 	if (err)
370 		return ERR_PTR(err);
371 
372 	inode = ubifs_new_inode(c, dir, mode);
373 	if (IS_ERR(inode)) {
374 		err = PTR_ERR(inode);
375 		goto out_free;
376 	}
377 
378 	init_special_inode(inode, inode->i_mode, WHITEOUT_DEV);
379 	ubifs_assert(c, inode->i_op == &ubifs_file_inode_operations);
380 
381 	err = ubifs_init_security(dir, inode, &dentry->d_name);
382 	if (err)
383 		goto out_inode;
384 
385 	/* The dir size is updated by do_rename. */
386 	insert_inode_hash(inode);
387 
388 	return inode;
389 
390 out_inode:
391 	make_bad_inode(inode);
392 	iput(inode);
393 out_free:
394 	fscrypt_free_filename(&nm);
395 	ubifs_err(c, "cannot create whiteout file, error %d", err);
396 	return ERR_PTR(err);
397 }
398 
399 /**
400  * lock_2_inodes - a wrapper for locking two UBIFS inodes.
401  * @inode1: first inode
402  * @inode2: second inode
403  *
404  * We do not implement any tricks to guarantee strict lock ordering, because
405  * VFS has already done it for us on the @i_mutex. So this is just a simple
406  * wrapper function.
407  */
lock_2_inodes(struct inode * inode1,struct inode * inode2)408 static void lock_2_inodes(struct inode *inode1, struct inode *inode2)
409 {
410 	mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
411 	mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
412 }
413 
414 /**
415  * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
416  * @inode1: first inode
417  * @inode2: second inode
418  */
unlock_2_inodes(struct inode * inode1,struct inode * inode2)419 static void unlock_2_inodes(struct inode *inode1, struct inode *inode2)
420 {
421 	mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
422 	mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
423 }
424 
ubifs_tmpfile(struct inode * dir,struct dentry * dentry,umode_t mode)425 static int ubifs_tmpfile(struct inode *dir, struct dentry *dentry,
426 			 umode_t mode)
427 {
428 	struct inode *inode;
429 	struct ubifs_info *c = dir->i_sb->s_fs_info;
430 	struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
431 					.dirtied_ino = 1};
432 	struct ubifs_budget_req ino_req = { .dirtied_ino = 1 };
433 	struct ubifs_inode *ui;
434 	int err, instantiated = 0;
435 	struct fscrypt_name nm;
436 
437 	/*
438 	 * Budget request settings: new inode, new direntry, changing the
439 	 * parent directory inode.
440 	 * Allocate budget separately for new dirtied inode, the budget will
441 	 * be released via writeback.
442 	 */
443 
444 	dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
445 		dentry, mode, dir->i_ino);
446 
447 	err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
448 	if (err)
449 		return err;
450 
451 	err = ubifs_budget_space(c, &req);
452 	if (err) {
453 		fscrypt_free_filename(&nm);
454 		return err;
455 	}
456 
457 	err = ubifs_budget_space(c, &ino_req);
458 	if (err) {
459 		ubifs_release_budget(c, &req);
460 		fscrypt_free_filename(&nm);
461 		return err;
462 	}
463 
464 	inode = ubifs_new_inode(c, dir, mode);
465 	if (IS_ERR(inode)) {
466 		err = PTR_ERR(inode);
467 		goto out_budg;
468 	}
469 	ui = ubifs_inode(inode);
470 
471 	err = ubifs_init_security(dir, inode, &dentry->d_name);
472 	if (err)
473 		goto out_inode;
474 
475 	mutex_lock(&ui->ui_mutex);
476 	insert_inode_hash(inode);
477 	d_tmpfile(dentry, inode);
478 	ubifs_assert(c, ui->dirty);
479 
480 	instantiated = 1;
481 	mutex_unlock(&ui->ui_mutex);
482 
483 	lock_2_inodes(dir, inode);
484 	err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
485 	if (err)
486 		goto out_cancel;
487 	unlock_2_inodes(dir, inode);
488 
489 	ubifs_release_budget(c, &req);
490 
491 	return 0;
492 
493 out_cancel:
494 	unlock_2_inodes(dir, inode);
495 out_inode:
496 	make_bad_inode(inode);
497 	if (!instantiated)
498 		iput(inode);
499 out_budg:
500 	ubifs_release_budget(c, &req);
501 	if (!instantiated)
502 		ubifs_release_budget(c, &ino_req);
503 	fscrypt_free_filename(&nm);
504 	ubifs_err(c, "cannot create temporary file, error %d", err);
505 	return err;
506 }
507 
508 /**
509  * vfs_dent_type - get VFS directory entry type.
510  * @type: UBIFS directory entry type
511  *
512  * This function converts UBIFS directory entry type into VFS directory entry
513  * type.
514  */
vfs_dent_type(uint8_t type)515 static unsigned int vfs_dent_type(uint8_t type)
516 {
517 	switch (type) {
518 	case UBIFS_ITYPE_REG:
519 		return DT_REG;
520 	case UBIFS_ITYPE_DIR:
521 		return DT_DIR;
522 	case UBIFS_ITYPE_LNK:
523 		return DT_LNK;
524 	case UBIFS_ITYPE_BLK:
525 		return DT_BLK;
526 	case UBIFS_ITYPE_CHR:
527 		return DT_CHR;
528 	case UBIFS_ITYPE_FIFO:
529 		return DT_FIFO;
530 	case UBIFS_ITYPE_SOCK:
531 		return DT_SOCK;
532 	default:
533 		BUG();
534 	}
535 	return 0;
536 }
537 
538 /*
539  * The classical Unix view for directory is that it is a linear array of
540  * (name, inode number) entries. Linux/VFS assumes this model as well.
541  * Particularly, 'readdir()' call wants us to return a directory entry offset
542  * which later may be used to continue 'readdir()'ing the directory or to
543  * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
544  * model because directory entries are identified by keys, which may collide.
545  *
546  * UBIFS uses directory entry hash value for directory offsets, so
547  * 'seekdir()'/'telldir()' may not always work because of possible key
548  * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
549  * properly by means of saving full directory entry name in the private field
550  * of the file description object.
551  *
552  * This means that UBIFS cannot support NFS which requires full
553  * 'seekdir()'/'telldir()' support.
554  */
ubifs_readdir(struct file * file,struct dir_context * ctx)555 static int ubifs_readdir(struct file *file, struct dir_context *ctx)
556 {
557 	int fstr_real_len = 0, err = 0;
558 	struct fscrypt_name nm;
559 	struct fscrypt_str fstr = {0};
560 	union ubifs_key key;
561 	struct ubifs_dent_node *dent;
562 	struct inode *dir = file_inode(file);
563 	struct ubifs_info *c = dir->i_sb->s_fs_info;
564 	bool encrypted = IS_ENCRYPTED(dir);
565 
566 	dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, ctx->pos);
567 
568 	if (ctx->pos > UBIFS_S_KEY_HASH_MASK || ctx->pos == 2)
569 		/*
570 		 * The directory was seek'ed to a senseless position or there
571 		 * are no more entries.
572 		 */
573 		return 0;
574 
575 	if (encrypted) {
576 		err = fscrypt_get_encryption_info(dir);
577 		if (err)
578 			return err;
579 
580 		err = fscrypt_fname_alloc_buffer(UBIFS_MAX_NLEN, &fstr);
581 		if (err)
582 			return err;
583 
584 		fstr_real_len = fstr.len;
585 	}
586 
587 	if (file->f_version == 0) {
588 		/*
589 		 * The file was seek'ed, which means that @file->private_data
590 		 * is now invalid. This may also be just the first
591 		 * 'ubifs_readdir()' invocation, in which case
592 		 * @file->private_data is NULL, and the below code is
593 		 * basically a no-op.
594 		 */
595 		kfree(file->private_data);
596 		file->private_data = NULL;
597 	}
598 
599 	/*
600 	 * 'generic_file_llseek()' unconditionally sets @file->f_version to
601 	 * zero, and we use this for detecting whether the file was seek'ed.
602 	 */
603 	file->f_version = 1;
604 
605 	/* File positions 0 and 1 correspond to "." and ".." */
606 	if (ctx->pos < 2) {
607 		ubifs_assert(c, !file->private_data);
608 		if (!dir_emit_dots(file, ctx)) {
609 			if (encrypted)
610 				fscrypt_fname_free_buffer(&fstr);
611 			return 0;
612 		}
613 
614 		/* Find the first entry in TNC and save it */
615 		lowest_dent_key(c, &key, dir->i_ino);
616 		fname_len(&nm) = 0;
617 		dent = ubifs_tnc_next_ent(c, &key, &nm);
618 		if (IS_ERR(dent)) {
619 			err = PTR_ERR(dent);
620 			goto out;
621 		}
622 
623 		ctx->pos = key_hash_flash(c, &dent->key);
624 		file->private_data = dent;
625 	}
626 
627 	dent = file->private_data;
628 	if (!dent) {
629 		/*
630 		 * The directory was seek'ed to and is now readdir'ed.
631 		 * Find the entry corresponding to @ctx->pos or the closest one.
632 		 */
633 		dent_key_init_hash(c, &key, dir->i_ino, ctx->pos);
634 		fname_len(&nm) = 0;
635 		dent = ubifs_tnc_next_ent(c, &key, &nm);
636 		if (IS_ERR(dent)) {
637 			err = PTR_ERR(dent);
638 			goto out;
639 		}
640 		ctx->pos = key_hash_flash(c, &dent->key);
641 		file->private_data = dent;
642 	}
643 
644 	while (1) {
645 		dbg_gen("ino %llu, new f_pos %#x",
646 			(unsigned long long)le64_to_cpu(dent->inum),
647 			key_hash_flash(c, &dent->key));
648 		ubifs_assert(c, le64_to_cpu(dent->ch.sqnum) >
649 			     ubifs_inode(dir)->creat_sqnum);
650 
651 		fname_len(&nm) = le16_to_cpu(dent->nlen);
652 		fname_name(&nm) = dent->name;
653 
654 		if (encrypted) {
655 			fstr.len = fstr_real_len;
656 
657 			err = fscrypt_fname_disk_to_usr(dir, key_hash_flash(c,
658 							&dent->key),
659 							le32_to_cpu(dent->cookie),
660 							&nm.disk_name, &fstr);
661 			if (err)
662 				goto out;
663 		} else {
664 			fstr.len = fname_len(&nm);
665 			fstr.name = fname_name(&nm);
666 		}
667 
668 		if (!dir_emit(ctx, fstr.name, fstr.len,
669 			       le64_to_cpu(dent->inum),
670 			       vfs_dent_type(dent->type))) {
671 			if (encrypted)
672 				fscrypt_fname_free_buffer(&fstr);
673 			return 0;
674 		}
675 
676 		/* Switch to the next entry */
677 		key_read(c, &dent->key, &key);
678 		dent = ubifs_tnc_next_ent(c, &key, &nm);
679 		if (IS_ERR(dent)) {
680 			err = PTR_ERR(dent);
681 			goto out;
682 		}
683 
684 		kfree(file->private_data);
685 		ctx->pos = key_hash_flash(c, &dent->key);
686 		file->private_data = dent;
687 		cond_resched();
688 	}
689 
690 out:
691 	kfree(file->private_data);
692 	file->private_data = NULL;
693 
694 	if (encrypted)
695 		fscrypt_fname_free_buffer(&fstr);
696 
697 	if (err != -ENOENT)
698 		ubifs_err(c, "cannot find next direntry, error %d", err);
699 	else
700 		/*
701 		 * -ENOENT is a non-fatal error in this context, the TNC uses
702 		 * it to indicate that the cursor moved past the current directory
703 		 * and readdir() has to stop.
704 		 */
705 		err = 0;
706 
707 
708 	/* 2 is a special value indicating that there are no more direntries */
709 	ctx->pos = 2;
710 	return err;
711 }
712 
713 /* Free saved readdir() state when the directory is closed */
ubifs_dir_release(struct inode * dir,struct file * file)714 static int ubifs_dir_release(struct inode *dir, struct file *file)
715 {
716 	kfree(file->private_data);
717 	file->private_data = NULL;
718 	return 0;
719 }
720 
ubifs_link(struct dentry * old_dentry,struct inode * dir,struct dentry * dentry)721 static int ubifs_link(struct dentry *old_dentry, struct inode *dir,
722 		      struct dentry *dentry)
723 {
724 	struct ubifs_info *c = dir->i_sb->s_fs_info;
725 	struct inode *inode = d_inode(old_dentry);
726 	struct ubifs_inode *ui = ubifs_inode(inode);
727 	struct ubifs_inode *dir_ui = ubifs_inode(dir);
728 	int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len);
729 	struct ubifs_budget_req req = { .new_dent = 1, .dirtied_ino = 2,
730 				.dirtied_ino_d = ALIGN(ui->data_len, 8) };
731 	struct fscrypt_name nm;
732 
733 	/*
734 	 * Budget request settings: new direntry, changing the target inode,
735 	 * changing the parent inode.
736 	 */
737 
738 	dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu",
739 		dentry, inode->i_ino,
740 		inode->i_nlink, dir->i_ino);
741 	ubifs_assert(c, inode_is_locked(dir));
742 	ubifs_assert(c, inode_is_locked(inode));
743 
744 	err = fscrypt_prepare_link(old_dentry, dir, dentry);
745 	if (err)
746 		return err;
747 
748 	err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
749 	if (err)
750 		return err;
751 
752 	err = dbg_check_synced_i_size(c, inode);
753 	if (err)
754 		goto out_fname;
755 
756 	err = ubifs_budget_space(c, &req);
757 	if (err)
758 		goto out_fname;
759 
760 	lock_2_inodes(dir, inode);
761 
762 	/* Handle O_TMPFILE corner case, it is allowed to link a O_TMPFILE. */
763 	if (inode->i_nlink == 0)
764 		ubifs_delete_orphan(c, inode->i_ino);
765 
766 	inc_nlink(inode);
767 	ihold(inode);
768 	inode->i_ctime = current_time(inode);
769 	dir->i_size += sz_change;
770 	dir_ui->ui_size = dir->i_size;
771 	dir->i_mtime = dir->i_ctime = inode->i_ctime;
772 	err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
773 	if (err)
774 		goto out_cancel;
775 	unlock_2_inodes(dir, inode);
776 
777 	ubifs_release_budget(c, &req);
778 	d_instantiate(dentry, inode);
779 	fscrypt_free_filename(&nm);
780 	return 0;
781 
782 out_cancel:
783 	dir->i_size -= sz_change;
784 	dir_ui->ui_size = dir->i_size;
785 	drop_nlink(inode);
786 	if (inode->i_nlink == 0)
787 		ubifs_add_orphan(c, inode->i_ino);
788 	unlock_2_inodes(dir, inode);
789 	ubifs_release_budget(c, &req);
790 	iput(inode);
791 out_fname:
792 	fscrypt_free_filename(&nm);
793 	return err;
794 }
795 
ubifs_unlink(struct inode * dir,struct dentry * dentry)796 static int ubifs_unlink(struct inode *dir, struct dentry *dentry)
797 {
798 	struct ubifs_info *c = dir->i_sb->s_fs_info;
799 	struct inode *inode = d_inode(dentry);
800 	struct ubifs_inode *dir_ui = ubifs_inode(dir);
801 	int err, sz_change, budgeted = 1;
802 	struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
803 	unsigned int saved_nlink = inode->i_nlink;
804 	struct fscrypt_name nm;
805 
806 	/*
807 	 * Budget request settings: deletion direntry, deletion inode (+1 for
808 	 * @dirtied_ino), changing the parent directory inode. If budgeting
809 	 * fails, go ahead anyway because we have extra space reserved for
810 	 * deletions.
811 	 */
812 
813 	dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu",
814 		dentry, inode->i_ino,
815 		inode->i_nlink, dir->i_ino);
816 
817 	err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
818 	if (err)
819 		return err;
820 
821 	err = ubifs_purge_xattrs(inode);
822 	if (err)
823 		return err;
824 
825 	sz_change = CALC_DENT_SIZE(fname_len(&nm));
826 
827 	ubifs_assert(c, inode_is_locked(dir));
828 	ubifs_assert(c, inode_is_locked(inode));
829 	err = dbg_check_synced_i_size(c, inode);
830 	if (err)
831 		goto out_fname;
832 
833 	err = ubifs_budget_space(c, &req);
834 	if (err) {
835 		if (err != -ENOSPC)
836 			goto out_fname;
837 		budgeted = 0;
838 	}
839 
840 	lock_2_inodes(dir, inode);
841 	inode->i_ctime = current_time(dir);
842 	drop_nlink(inode);
843 	dir->i_size -= sz_change;
844 	dir_ui->ui_size = dir->i_size;
845 	dir->i_mtime = dir->i_ctime = inode->i_ctime;
846 	err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
847 	if (err)
848 		goto out_cancel;
849 	unlock_2_inodes(dir, inode);
850 
851 	if (budgeted)
852 		ubifs_release_budget(c, &req);
853 	else {
854 		/* We've deleted something - clean the "no space" flags */
855 		c->bi.nospace = c->bi.nospace_rp = 0;
856 		smp_wmb();
857 	}
858 	fscrypt_free_filename(&nm);
859 	return 0;
860 
861 out_cancel:
862 	dir->i_size += sz_change;
863 	dir_ui->ui_size = dir->i_size;
864 	set_nlink(inode, saved_nlink);
865 	unlock_2_inodes(dir, inode);
866 	if (budgeted)
867 		ubifs_release_budget(c, &req);
868 out_fname:
869 	fscrypt_free_filename(&nm);
870 	return err;
871 }
872 
873 /**
874  * check_dir_empty - check if a directory is empty or not.
875  * @dir: VFS inode object of the directory to check
876  *
877  * This function checks if directory @dir is empty. Returns zero if the
878  * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
879  * in case of of errors.
880  */
ubifs_check_dir_empty(struct inode * dir)881 int ubifs_check_dir_empty(struct inode *dir)
882 {
883 	struct ubifs_info *c = dir->i_sb->s_fs_info;
884 	struct fscrypt_name nm = { 0 };
885 	struct ubifs_dent_node *dent;
886 	union ubifs_key key;
887 	int err;
888 
889 	lowest_dent_key(c, &key, dir->i_ino);
890 	dent = ubifs_tnc_next_ent(c, &key, &nm);
891 	if (IS_ERR(dent)) {
892 		err = PTR_ERR(dent);
893 		if (err == -ENOENT)
894 			err = 0;
895 	} else {
896 		kfree(dent);
897 		err = -ENOTEMPTY;
898 	}
899 	return err;
900 }
901 
ubifs_rmdir(struct inode * dir,struct dentry * dentry)902 static int ubifs_rmdir(struct inode *dir, struct dentry *dentry)
903 {
904 	struct ubifs_info *c = dir->i_sb->s_fs_info;
905 	struct inode *inode = d_inode(dentry);
906 	int err, sz_change, budgeted = 1;
907 	struct ubifs_inode *dir_ui = ubifs_inode(dir);
908 	struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
909 	struct fscrypt_name nm;
910 
911 	/*
912 	 * Budget request settings: deletion direntry, deletion inode and
913 	 * changing the parent inode. If budgeting fails, go ahead anyway
914 	 * because we have extra space reserved for deletions.
915 	 */
916 
917 	dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry,
918 		inode->i_ino, dir->i_ino);
919 	ubifs_assert(c, inode_is_locked(dir));
920 	ubifs_assert(c, inode_is_locked(inode));
921 	err = ubifs_check_dir_empty(d_inode(dentry));
922 	if (err)
923 		return err;
924 
925 	err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
926 	if (err)
927 		return err;
928 
929 	err = ubifs_purge_xattrs(inode);
930 	if (err)
931 		return err;
932 
933 	sz_change = CALC_DENT_SIZE(fname_len(&nm));
934 
935 	err = ubifs_budget_space(c, &req);
936 	if (err) {
937 		if (err != -ENOSPC)
938 			goto out_fname;
939 		budgeted = 0;
940 	}
941 
942 	lock_2_inodes(dir, inode);
943 	inode->i_ctime = current_time(dir);
944 	clear_nlink(inode);
945 	drop_nlink(dir);
946 	dir->i_size -= sz_change;
947 	dir_ui->ui_size = dir->i_size;
948 	dir->i_mtime = dir->i_ctime = inode->i_ctime;
949 	err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
950 	if (err)
951 		goto out_cancel;
952 	unlock_2_inodes(dir, inode);
953 
954 	if (budgeted)
955 		ubifs_release_budget(c, &req);
956 	else {
957 		/* We've deleted something - clean the "no space" flags */
958 		c->bi.nospace = c->bi.nospace_rp = 0;
959 		smp_wmb();
960 	}
961 	fscrypt_free_filename(&nm);
962 	return 0;
963 
964 out_cancel:
965 	dir->i_size += sz_change;
966 	dir_ui->ui_size = dir->i_size;
967 	inc_nlink(dir);
968 	set_nlink(inode, 2);
969 	unlock_2_inodes(dir, inode);
970 	if (budgeted)
971 		ubifs_release_budget(c, &req);
972 out_fname:
973 	fscrypt_free_filename(&nm);
974 	return err;
975 }
976 
ubifs_mkdir(struct inode * dir,struct dentry * dentry,umode_t mode)977 static int ubifs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
978 {
979 	struct inode *inode;
980 	struct ubifs_inode *dir_ui = ubifs_inode(dir);
981 	struct ubifs_info *c = dir->i_sb->s_fs_info;
982 	int err, sz_change;
983 	struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
984 					.dirtied_ino = 1};
985 	struct fscrypt_name nm;
986 
987 	/*
988 	 * Budget request settings: new inode, new direntry and changing parent
989 	 * directory inode.
990 	 */
991 
992 	dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
993 		dentry, mode, dir->i_ino);
994 
995 	err = ubifs_budget_space(c, &req);
996 	if (err)
997 		return err;
998 
999 	err = ubifs_prepare_create(dir, dentry, &nm);
1000 	if (err)
1001 		goto out_budg;
1002 
1003 	sz_change = CALC_DENT_SIZE(fname_len(&nm));
1004 
1005 	inode = ubifs_new_inode(c, dir, S_IFDIR | mode);
1006 	if (IS_ERR(inode)) {
1007 		err = PTR_ERR(inode);
1008 		goto out_fname;
1009 	}
1010 
1011 	err = ubifs_init_security(dir, inode, &dentry->d_name);
1012 	if (err)
1013 		goto out_inode;
1014 
1015 	mutex_lock(&dir_ui->ui_mutex);
1016 	insert_inode_hash(inode);
1017 	inc_nlink(inode);
1018 	inc_nlink(dir);
1019 	dir->i_size += sz_change;
1020 	dir_ui->ui_size = dir->i_size;
1021 	dir->i_mtime = dir->i_ctime = inode->i_ctime;
1022 	err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1023 	if (err) {
1024 		ubifs_err(c, "cannot create directory, error %d", err);
1025 		goto out_cancel;
1026 	}
1027 	mutex_unlock(&dir_ui->ui_mutex);
1028 
1029 	ubifs_release_budget(c, &req);
1030 	d_instantiate(dentry, inode);
1031 	fscrypt_free_filename(&nm);
1032 	return 0;
1033 
1034 out_cancel:
1035 	dir->i_size -= sz_change;
1036 	dir_ui->ui_size = dir->i_size;
1037 	drop_nlink(dir);
1038 	mutex_unlock(&dir_ui->ui_mutex);
1039 out_inode:
1040 	make_bad_inode(inode);
1041 	iput(inode);
1042 out_fname:
1043 	fscrypt_free_filename(&nm);
1044 out_budg:
1045 	ubifs_release_budget(c, &req);
1046 	return err;
1047 }
1048 
ubifs_mknod(struct inode * dir,struct dentry * dentry,umode_t mode,dev_t rdev)1049 static int ubifs_mknod(struct inode *dir, struct dentry *dentry,
1050 		       umode_t mode, dev_t rdev)
1051 {
1052 	struct inode *inode;
1053 	struct ubifs_inode *ui;
1054 	struct ubifs_inode *dir_ui = ubifs_inode(dir);
1055 	struct ubifs_info *c = dir->i_sb->s_fs_info;
1056 	union ubifs_dev_desc *dev = NULL;
1057 	int sz_change;
1058 	int err, devlen = 0;
1059 	struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
1060 					.dirtied_ino = 1 };
1061 	struct fscrypt_name nm;
1062 
1063 	/*
1064 	 * Budget request settings: new inode, new direntry and changing parent
1065 	 * directory inode.
1066 	 */
1067 
1068 	dbg_gen("dent '%pd' in dir ino %lu", dentry, dir->i_ino);
1069 
1070 	if (S_ISBLK(mode) || S_ISCHR(mode)) {
1071 		dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1072 		if (!dev)
1073 			return -ENOMEM;
1074 		devlen = ubifs_encode_dev(dev, rdev);
1075 	}
1076 
1077 	req.new_ino_d = ALIGN(devlen, 8);
1078 	err = ubifs_budget_space(c, &req);
1079 	if (err) {
1080 		kfree(dev);
1081 		return err;
1082 	}
1083 
1084 	err = ubifs_prepare_create(dir, dentry, &nm);
1085 	if (err) {
1086 		kfree(dev);
1087 		goto out_budg;
1088 	}
1089 
1090 	sz_change = CALC_DENT_SIZE(fname_len(&nm));
1091 
1092 	inode = ubifs_new_inode(c, dir, mode);
1093 	if (IS_ERR(inode)) {
1094 		kfree(dev);
1095 		err = PTR_ERR(inode);
1096 		goto out_fname;
1097 	}
1098 
1099 	init_special_inode(inode, inode->i_mode, rdev);
1100 	inode->i_size = ubifs_inode(inode)->ui_size = devlen;
1101 	ui = ubifs_inode(inode);
1102 	ui->data = dev;
1103 	ui->data_len = devlen;
1104 
1105 	err = ubifs_init_security(dir, inode, &dentry->d_name);
1106 	if (err)
1107 		goto out_inode;
1108 
1109 	mutex_lock(&dir_ui->ui_mutex);
1110 	dir->i_size += sz_change;
1111 	dir_ui->ui_size = dir->i_size;
1112 	dir->i_mtime = dir->i_ctime = inode->i_ctime;
1113 	err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1114 	if (err)
1115 		goto out_cancel;
1116 	mutex_unlock(&dir_ui->ui_mutex);
1117 
1118 	ubifs_release_budget(c, &req);
1119 	insert_inode_hash(inode);
1120 	d_instantiate(dentry, inode);
1121 	fscrypt_free_filename(&nm);
1122 	return 0;
1123 
1124 out_cancel:
1125 	dir->i_size -= sz_change;
1126 	dir_ui->ui_size = dir->i_size;
1127 	mutex_unlock(&dir_ui->ui_mutex);
1128 out_inode:
1129 	make_bad_inode(inode);
1130 	iput(inode);
1131 out_fname:
1132 	fscrypt_free_filename(&nm);
1133 out_budg:
1134 	ubifs_release_budget(c, &req);
1135 	return err;
1136 }
1137 
ubifs_symlink(struct inode * dir,struct dentry * dentry,const char * symname)1138 static int ubifs_symlink(struct inode *dir, struct dentry *dentry,
1139 			 const char *symname)
1140 {
1141 	struct inode *inode;
1142 	struct ubifs_inode *ui;
1143 	struct ubifs_inode *dir_ui = ubifs_inode(dir);
1144 	struct ubifs_info *c = dir->i_sb->s_fs_info;
1145 	int err, sz_change, len = strlen(symname);
1146 	struct fscrypt_str disk_link;
1147 	struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
1148 					.new_ino_d = ALIGN(len, 8),
1149 					.dirtied_ino = 1 };
1150 	struct fscrypt_name nm;
1151 
1152 	dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry,
1153 		symname, dir->i_ino);
1154 
1155 	err = fscrypt_prepare_symlink(dir, symname, len, UBIFS_MAX_INO_DATA,
1156 				      &disk_link);
1157 	if (err)
1158 		return err;
1159 
1160 	/*
1161 	 * Budget request settings: new inode, new direntry and changing parent
1162 	 * directory inode.
1163 	 */
1164 	err = ubifs_budget_space(c, &req);
1165 	if (err)
1166 		return err;
1167 
1168 	err = ubifs_prepare_create(dir, dentry, &nm);
1169 	if (err)
1170 		goto out_budg;
1171 
1172 	sz_change = CALC_DENT_SIZE(fname_len(&nm));
1173 
1174 	inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO);
1175 	if (IS_ERR(inode)) {
1176 		err = PTR_ERR(inode);
1177 		goto out_fname;
1178 	}
1179 
1180 	ui = ubifs_inode(inode);
1181 	ui->data = kmalloc(disk_link.len, GFP_NOFS);
1182 	if (!ui->data) {
1183 		err = -ENOMEM;
1184 		goto out_inode;
1185 	}
1186 
1187 	if (IS_ENCRYPTED(inode)) {
1188 		disk_link.name = ui->data; /* encrypt directly into ui->data */
1189 		err = fscrypt_encrypt_symlink(inode, symname, len, &disk_link);
1190 		if (err)
1191 			goto out_inode;
1192 	} else {
1193 		memcpy(ui->data, disk_link.name, disk_link.len);
1194 		inode->i_link = ui->data;
1195 	}
1196 
1197 	/*
1198 	 * The terminating zero byte is not written to the flash media and it
1199 	 * is put just to make later in-memory string processing simpler. Thus,
1200 	 * data length is @disk_link.len - 1, not @disk_link.len.
1201 	 */
1202 	ui->data_len = disk_link.len - 1;
1203 	inode->i_size = ubifs_inode(inode)->ui_size = disk_link.len - 1;
1204 
1205 	err = ubifs_init_security(dir, inode, &dentry->d_name);
1206 	if (err)
1207 		goto out_inode;
1208 
1209 	mutex_lock(&dir_ui->ui_mutex);
1210 	dir->i_size += sz_change;
1211 	dir_ui->ui_size = dir->i_size;
1212 	dir->i_mtime = dir->i_ctime = inode->i_ctime;
1213 	err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1214 	if (err)
1215 		goto out_cancel;
1216 	mutex_unlock(&dir_ui->ui_mutex);
1217 
1218 	insert_inode_hash(inode);
1219 	d_instantiate(dentry, inode);
1220 	err = 0;
1221 	goto out_fname;
1222 
1223 out_cancel:
1224 	dir->i_size -= sz_change;
1225 	dir_ui->ui_size = dir->i_size;
1226 	mutex_unlock(&dir_ui->ui_mutex);
1227 out_inode:
1228 	make_bad_inode(inode);
1229 	iput(inode);
1230 out_fname:
1231 	fscrypt_free_filename(&nm);
1232 out_budg:
1233 	ubifs_release_budget(c, &req);
1234 	return err;
1235 }
1236 
1237 /**
1238  * lock_4_inodes - a wrapper for locking three UBIFS inodes.
1239  * @inode1: first inode
1240  * @inode2: second inode
1241  * @inode3: third inode
1242  * @inode4: fouth inode
1243  *
1244  * This function is used for 'ubifs_rename()' and @inode1 may be the same as
1245  * @inode2 whereas @inode3 and @inode4 may be %NULL.
1246  *
1247  * We do not implement any tricks to guarantee strict lock ordering, because
1248  * VFS has already done it for us on the @i_mutex. So this is just a simple
1249  * wrapper function.
1250  */
lock_4_inodes(struct inode * inode1,struct inode * inode2,struct inode * inode3,struct inode * inode4)1251 static void lock_4_inodes(struct inode *inode1, struct inode *inode2,
1252 			  struct inode *inode3, struct inode *inode4)
1253 {
1254 	mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
1255 	if (inode2 != inode1)
1256 		mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1257 	if (inode3)
1258 		mutex_lock_nested(&ubifs_inode(inode3)->ui_mutex, WB_MUTEX_3);
1259 	if (inode4)
1260 		mutex_lock_nested(&ubifs_inode(inode4)->ui_mutex, WB_MUTEX_4);
1261 }
1262 
1263 /**
1264  * unlock_4_inodes - a wrapper for unlocking three UBIFS inodes for rename.
1265  * @inode1: first inode
1266  * @inode2: second inode
1267  * @inode3: third inode
1268  * @inode4: fouth inode
1269  */
unlock_4_inodes(struct inode * inode1,struct inode * inode2,struct inode * inode3,struct inode * inode4)1270 static void unlock_4_inodes(struct inode *inode1, struct inode *inode2,
1271 			    struct inode *inode3, struct inode *inode4)
1272 {
1273 	if (inode4)
1274 		mutex_unlock(&ubifs_inode(inode4)->ui_mutex);
1275 	if (inode3)
1276 		mutex_unlock(&ubifs_inode(inode3)->ui_mutex);
1277 	if (inode1 != inode2)
1278 		mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
1279 	mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1280 }
1281 
do_rename(struct inode * old_dir,struct dentry * old_dentry,struct inode * new_dir,struct dentry * new_dentry,unsigned int flags)1282 static int do_rename(struct inode *old_dir, struct dentry *old_dentry,
1283 		     struct inode *new_dir, struct dentry *new_dentry,
1284 		     unsigned int flags)
1285 {
1286 	struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1287 	struct inode *old_inode = d_inode(old_dentry);
1288 	struct inode *new_inode = d_inode(new_dentry);
1289 	struct inode *whiteout = NULL;
1290 	struct ubifs_inode *old_inode_ui = ubifs_inode(old_inode);
1291 	struct ubifs_inode *whiteout_ui = NULL;
1292 	int err, release, sync = 0, move = (new_dir != old_dir);
1293 	int is_dir = S_ISDIR(old_inode->i_mode);
1294 	int unlink = !!new_inode, new_sz, old_sz;
1295 	struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1296 					.dirtied_ino = 3 };
1297 	struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
1298 			.dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
1299 	struct ubifs_budget_req wht_req;
1300 	struct timespec64 time;
1301 	unsigned int saved_nlink;
1302 	struct fscrypt_name old_nm, new_nm;
1303 
1304 	/*
1305 	 * Budget request settings:
1306 	 *   req: deletion direntry, new direntry, removing the old inode,
1307 	 *   and changing old and new parent directory inodes.
1308 	 *
1309 	 *   wht_req: new whiteout inode for RENAME_WHITEOUT.
1310 	 *
1311 	 *   ino_req: marks the target inode as dirty and does not write it.
1312 	 */
1313 
1314 	dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu flags 0x%x",
1315 		old_dentry, old_inode->i_ino, old_dir->i_ino,
1316 		new_dentry, new_dir->i_ino, flags);
1317 
1318 	if (unlink) {
1319 		ubifs_assert(c, inode_is_locked(new_inode));
1320 
1321 		err = ubifs_purge_xattrs(new_inode);
1322 		if (err)
1323 			return err;
1324 	}
1325 
1326 	if (unlink && is_dir) {
1327 		err = ubifs_check_dir_empty(new_inode);
1328 		if (err)
1329 			return err;
1330 	}
1331 
1332 	err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &old_nm);
1333 	if (err)
1334 		return err;
1335 
1336 	err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &new_nm);
1337 	if (err) {
1338 		fscrypt_free_filename(&old_nm);
1339 		return err;
1340 	}
1341 
1342 	new_sz = CALC_DENT_SIZE(fname_len(&new_nm));
1343 	old_sz = CALC_DENT_SIZE(fname_len(&old_nm));
1344 
1345 	err = ubifs_budget_space(c, &req);
1346 	if (err) {
1347 		fscrypt_free_filename(&old_nm);
1348 		fscrypt_free_filename(&new_nm);
1349 		return err;
1350 	}
1351 	err = ubifs_budget_space(c, &ino_req);
1352 	if (err) {
1353 		fscrypt_free_filename(&old_nm);
1354 		fscrypt_free_filename(&new_nm);
1355 		ubifs_release_budget(c, &req);
1356 		return err;
1357 	}
1358 
1359 	if (flags & RENAME_WHITEOUT) {
1360 		union ubifs_dev_desc *dev = NULL;
1361 
1362 		dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1363 		if (!dev) {
1364 			err = -ENOMEM;
1365 			goto out_release;
1366 		}
1367 
1368 		/*
1369 		 * The whiteout inode without dentry is pinned in memory,
1370 		 * umount won't happen during rename process because we
1371 		 * got parent dentry.
1372 		 */
1373 		whiteout = create_whiteout(old_dir, old_dentry);
1374 		if (IS_ERR(whiteout)) {
1375 			err = PTR_ERR(whiteout);
1376 			kfree(dev);
1377 			goto out_release;
1378 		}
1379 
1380 		whiteout_ui = ubifs_inode(whiteout);
1381 		whiteout_ui->data = dev;
1382 		whiteout_ui->data_len = ubifs_encode_dev(dev, MKDEV(0, 0));
1383 		ubifs_assert(c, !whiteout_ui->dirty);
1384 
1385 		memset(&wht_req, 0, sizeof(struct ubifs_budget_req));
1386 		wht_req.new_ino = 1;
1387 		wht_req.new_ino_d = ALIGN(whiteout_ui->data_len, 8);
1388 		/*
1389 		 * To avoid deadlock between space budget (holds ui_mutex and
1390 		 * waits wb work) and writeback work(waits ui_mutex), do space
1391 		 * budget before ubifs inodes locked.
1392 		 */
1393 		err = ubifs_budget_space(c, &wht_req);
1394 		if (err) {
1395 			/*
1396 			 * Whiteout inode can not be written on flash by
1397 			 * ubifs_jnl_write_inode(), because it's neither
1398 			 * dirty nor zero-nlink.
1399 			 */
1400 			iput(whiteout);
1401 			goto out_release;
1402 		}
1403 	}
1404 
1405 	lock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1406 
1407 	/*
1408 	 * Like most other Unix systems, set the @i_ctime for inodes on a
1409 	 * rename.
1410 	 */
1411 	time = current_time(old_dir);
1412 	old_inode->i_ctime = time;
1413 
1414 	/* We must adjust parent link count when renaming directories */
1415 	if (is_dir) {
1416 		if (move) {
1417 			/*
1418 			 * @old_dir loses a link because we are moving
1419 			 * @old_inode to a different directory.
1420 			 */
1421 			drop_nlink(old_dir);
1422 			/*
1423 			 * @new_dir only gains a link if we are not also
1424 			 * overwriting an existing directory.
1425 			 */
1426 			if (!unlink)
1427 				inc_nlink(new_dir);
1428 		} else {
1429 			/*
1430 			 * @old_inode is not moving to a different directory,
1431 			 * but @old_dir still loses a link if we are
1432 			 * overwriting an existing directory.
1433 			 */
1434 			if (unlink)
1435 				drop_nlink(old_dir);
1436 		}
1437 	}
1438 
1439 	old_dir->i_size -= old_sz;
1440 	ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1441 	old_dir->i_mtime = old_dir->i_ctime = time;
1442 	new_dir->i_mtime = new_dir->i_ctime = time;
1443 
1444 	/*
1445 	 * And finally, if we unlinked a direntry which happened to have the
1446 	 * same name as the moved direntry, we have to decrement @i_nlink of
1447 	 * the unlinked inode and change its ctime.
1448 	 */
1449 	if (unlink) {
1450 		/*
1451 		 * Directories cannot have hard-links, so if this is a
1452 		 * directory, just clear @i_nlink.
1453 		 */
1454 		saved_nlink = new_inode->i_nlink;
1455 		if (is_dir)
1456 			clear_nlink(new_inode);
1457 		else
1458 			drop_nlink(new_inode);
1459 		new_inode->i_ctime = time;
1460 	} else {
1461 		new_dir->i_size += new_sz;
1462 		ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1463 	}
1464 
1465 	/*
1466 	 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1467 	 * is dirty, because this will be done later on at the end of
1468 	 * 'ubifs_rename()'.
1469 	 */
1470 	if (IS_SYNC(old_inode)) {
1471 		sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1472 		if (unlink && IS_SYNC(new_inode))
1473 			sync = 1;
1474 		/*
1475 		 * S_SYNC flag of whiteout inherits from the old_dir, and we
1476 		 * have already checked the old dir inode. So there is no need
1477 		 * to check whiteout.
1478 		 */
1479 	}
1480 
1481 	err = ubifs_jnl_rename(c, old_dir, old_inode, &old_nm, new_dir,
1482 			       new_inode, &new_nm, whiteout, sync);
1483 	if (err)
1484 		goto out_cancel;
1485 
1486 	unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1487 	ubifs_release_budget(c, &req);
1488 
1489 	if (whiteout) {
1490 		ubifs_release_budget(c, &wht_req);
1491 		iput(whiteout);
1492 	}
1493 
1494 	mutex_lock(&old_inode_ui->ui_mutex);
1495 	release = old_inode_ui->dirty;
1496 	mark_inode_dirty_sync(old_inode);
1497 	mutex_unlock(&old_inode_ui->ui_mutex);
1498 
1499 	if (release)
1500 		ubifs_release_budget(c, &ino_req);
1501 	if (IS_SYNC(old_inode))
1502 		/*
1503 		 * Rename finished here. Although old inode cannot be updated
1504 		 * on flash, old ctime is not a big problem, don't return err
1505 		 * code to userspace.
1506 		 */
1507 		old_inode->i_sb->s_op->write_inode(old_inode, NULL);
1508 
1509 	fscrypt_free_filename(&old_nm);
1510 	fscrypt_free_filename(&new_nm);
1511 	return 0;
1512 
1513 out_cancel:
1514 	if (unlink) {
1515 		set_nlink(new_inode, saved_nlink);
1516 	} else {
1517 		new_dir->i_size -= new_sz;
1518 		ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1519 	}
1520 	old_dir->i_size += old_sz;
1521 	ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1522 	if (is_dir) {
1523 		if (move) {
1524 			inc_nlink(old_dir);
1525 			if (!unlink)
1526 				drop_nlink(new_dir);
1527 		} else {
1528 			if (unlink)
1529 				inc_nlink(old_dir);
1530 		}
1531 	}
1532 	unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1533 	if (whiteout) {
1534 		ubifs_release_budget(c, &wht_req);
1535 		iput(whiteout);
1536 	}
1537 out_release:
1538 	ubifs_release_budget(c, &ino_req);
1539 	ubifs_release_budget(c, &req);
1540 	fscrypt_free_filename(&old_nm);
1541 	fscrypt_free_filename(&new_nm);
1542 	return err;
1543 }
1544 
ubifs_xrename(struct inode * old_dir,struct dentry * old_dentry,struct inode * new_dir,struct dentry * new_dentry)1545 static int ubifs_xrename(struct inode *old_dir, struct dentry *old_dentry,
1546 			struct inode *new_dir, struct dentry *new_dentry)
1547 {
1548 	struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1549 	struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1550 				.dirtied_ino = 2 };
1551 	int sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1552 	struct inode *fst_inode = d_inode(old_dentry);
1553 	struct inode *snd_inode = d_inode(new_dentry);
1554 	struct timespec64 time;
1555 	int err;
1556 	struct fscrypt_name fst_nm, snd_nm;
1557 
1558 	ubifs_assert(c, fst_inode && snd_inode);
1559 
1560 	err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &fst_nm);
1561 	if (err)
1562 		return err;
1563 
1564 	err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &snd_nm);
1565 	if (err) {
1566 		fscrypt_free_filename(&fst_nm);
1567 		return err;
1568 	}
1569 
1570 	lock_4_inodes(old_dir, new_dir, NULL, NULL);
1571 
1572 	time = current_time(old_dir);
1573 	fst_inode->i_ctime = time;
1574 	snd_inode->i_ctime = time;
1575 	old_dir->i_mtime = old_dir->i_ctime = time;
1576 	new_dir->i_mtime = new_dir->i_ctime = time;
1577 
1578 	if (old_dir != new_dir) {
1579 		if (S_ISDIR(fst_inode->i_mode) && !S_ISDIR(snd_inode->i_mode)) {
1580 			inc_nlink(new_dir);
1581 			drop_nlink(old_dir);
1582 		}
1583 		else if (!S_ISDIR(fst_inode->i_mode) && S_ISDIR(snd_inode->i_mode)) {
1584 			drop_nlink(new_dir);
1585 			inc_nlink(old_dir);
1586 		}
1587 	}
1588 
1589 	err = ubifs_jnl_xrename(c, old_dir, fst_inode, &fst_nm, new_dir,
1590 				snd_inode, &snd_nm, sync);
1591 
1592 	unlock_4_inodes(old_dir, new_dir, NULL, NULL);
1593 	ubifs_release_budget(c, &req);
1594 
1595 	fscrypt_free_filename(&fst_nm);
1596 	fscrypt_free_filename(&snd_nm);
1597 	return err;
1598 }
1599 
ubifs_rename(struct inode * old_dir,struct dentry * old_dentry,struct inode * new_dir,struct dentry * new_dentry,unsigned int flags)1600 static int ubifs_rename(struct inode *old_dir, struct dentry *old_dentry,
1601 			struct inode *new_dir, struct dentry *new_dentry,
1602 			unsigned int flags)
1603 {
1604 	int err;
1605 	struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1606 
1607 	if (flags & ~(RENAME_NOREPLACE | RENAME_WHITEOUT | RENAME_EXCHANGE))
1608 		return -EINVAL;
1609 
1610 	ubifs_assert(c, inode_is_locked(old_dir));
1611 	ubifs_assert(c, inode_is_locked(new_dir));
1612 
1613 	err = fscrypt_prepare_rename(old_dir, old_dentry, new_dir, new_dentry,
1614 				     flags);
1615 	if (err)
1616 		return err;
1617 
1618 	if (flags & RENAME_EXCHANGE)
1619 		return ubifs_xrename(old_dir, old_dentry, new_dir, new_dentry);
1620 
1621 	return do_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
1622 }
1623 
ubifs_getattr(const struct path * path,struct kstat * stat,u32 request_mask,unsigned int flags)1624 int ubifs_getattr(const struct path *path, struct kstat *stat,
1625 		  u32 request_mask, unsigned int flags)
1626 {
1627 	loff_t size;
1628 	struct inode *inode = d_inode(path->dentry);
1629 	struct ubifs_inode *ui = ubifs_inode(inode);
1630 
1631 	mutex_lock(&ui->ui_mutex);
1632 
1633 	if (ui->flags & UBIFS_APPEND_FL)
1634 		stat->attributes |= STATX_ATTR_APPEND;
1635 	if (ui->flags & UBIFS_COMPR_FL)
1636 		stat->attributes |= STATX_ATTR_COMPRESSED;
1637 	if (ui->flags & UBIFS_CRYPT_FL)
1638 		stat->attributes |= STATX_ATTR_ENCRYPTED;
1639 	if (ui->flags & UBIFS_IMMUTABLE_FL)
1640 		stat->attributes |= STATX_ATTR_IMMUTABLE;
1641 
1642 	stat->attributes_mask |= (STATX_ATTR_APPEND |
1643 				STATX_ATTR_COMPRESSED |
1644 				STATX_ATTR_ENCRYPTED |
1645 				STATX_ATTR_IMMUTABLE);
1646 
1647 	generic_fillattr(inode, stat);
1648 	stat->blksize = UBIFS_BLOCK_SIZE;
1649 	stat->size = ui->ui_size;
1650 
1651 	/*
1652 	 * Unfortunately, the 'stat()' system call was designed for block
1653 	 * device based file systems, and it is not appropriate for UBIFS,
1654 	 * because UBIFS does not have notion of "block". For example, it is
1655 	 * difficult to tell how many block a directory takes - it actually
1656 	 * takes less than 300 bytes, but we have to round it to block size,
1657 	 * which introduces large mistake. This makes utilities like 'du' to
1658 	 * report completely senseless numbers. This is the reason why UBIFS
1659 	 * goes the same way as JFFS2 - it reports zero blocks for everything
1660 	 * but regular files, which makes more sense than reporting completely
1661 	 * wrong sizes.
1662 	 */
1663 	if (S_ISREG(inode->i_mode)) {
1664 		size = ui->xattr_size;
1665 		size += stat->size;
1666 		size = ALIGN(size, UBIFS_BLOCK_SIZE);
1667 		/*
1668 		 * Note, user-space expects 512-byte blocks count irrespectively
1669 		 * of what was reported in @stat->size.
1670 		 */
1671 		stat->blocks = size >> 9;
1672 	} else
1673 		stat->blocks = 0;
1674 	mutex_unlock(&ui->ui_mutex);
1675 	return 0;
1676 }
1677 
ubifs_dir_open(struct inode * dir,struct file * file)1678 static int ubifs_dir_open(struct inode *dir, struct file *file)
1679 {
1680 	if (IS_ENCRYPTED(dir))
1681 		return fscrypt_get_encryption_info(dir) ? -EACCES : 0;
1682 
1683 	return 0;
1684 }
1685 
1686 const struct inode_operations ubifs_dir_inode_operations = {
1687 	.lookup      = ubifs_lookup,
1688 	.create      = ubifs_create,
1689 	.link        = ubifs_link,
1690 	.symlink     = ubifs_symlink,
1691 	.unlink      = ubifs_unlink,
1692 	.mkdir       = ubifs_mkdir,
1693 	.rmdir       = ubifs_rmdir,
1694 	.mknod       = ubifs_mknod,
1695 	.rename      = ubifs_rename,
1696 	.setattr     = ubifs_setattr,
1697 	.getattr     = ubifs_getattr,
1698 #ifdef CONFIG_UBIFS_FS_XATTR
1699 	.listxattr   = ubifs_listxattr,
1700 #endif
1701 	.update_time = ubifs_update_time,
1702 	.tmpfile     = ubifs_tmpfile,
1703 };
1704 
1705 const struct file_operations ubifs_dir_operations = {
1706 	.llseek         = generic_file_llseek,
1707 	.release        = ubifs_dir_release,
1708 	.read           = generic_read_dir,
1709 	.iterate_shared = ubifs_readdir,
1710 	.fsync          = ubifs_fsync,
1711 	.unlocked_ioctl = ubifs_ioctl,
1712 	.open		= ubifs_dir_open,
1713 #ifdef CONFIG_COMPAT
1714 	.compat_ioctl   = ubifs_compat_ioctl,
1715 #endif
1716 };
1717