blob: 417fe0b29f23e9068d623a4e5fc582835373199c [file] [log] [blame]
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001/* * This file is part of UBIFS.
2 *
3 * Copyright (C) 2006-2008 Nokia Corporation.
4 * Copyright (C) 2006, 2007 University of Szeged, Hungary
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * Authors: Artem Bityutskiy (Битюцкий Артём)
20 * Adrian Hunter
21 * Zoltan Sogor
22 */
23
24/*
25 * This file implements directory operations.
26 *
27 * All FS operations in this file allocate budget before writing anything to the
28 * media. If they fail to allocate it, the error is returned. The only
29 * exceptions are 'ubifs_unlink()' and 'ubifs_rmdir()' which keep working even
30 * if they unable to allocate the budget, because deletion %-ENOSPC failure is
31 * not what users are usually ready to get. UBIFS budgeting subsystem has some
32 * space reserved for these purposes.
33 *
34 * All operations in this file write all inodes which they change straight
35 * away, instead of marking them dirty. For example, 'ubifs_link()' changes
36 * @i_size of the parent inode and writes the parent inode together with the
37 * target inode. This was done to simplify file-system recovery which would
38 * otherwise be very difficult to do. The only exception is rename which marks
39 * the re-named inode dirty (because its @i_ctime is updated) but does not
40 * write it, but just marks it as dirty.
41 */
42
43#include "ubifs.h"
44
45/**
46 * inherit_flags - inherit flags of the parent inode.
47 * @dir: parent inode
48 * @mode: new inode mode flags
49 *
50 * This is a helper function for 'ubifs_new_inode()' which inherits flag of the
51 * parent directory inode @dir. UBIFS inodes inherit the following flags:
52 * o %UBIFS_COMPR_FL, which is useful to switch compression on/of on
53 * sub-directory basis;
54 * o %UBIFS_SYNC_FL - useful for the same reasons;
55 * o %UBIFS_DIRSYNC_FL - similar, but relevant only to directories.
56 *
57 * This function returns the inherited flags.
58 */
Al Viroad44be52011-07-26 03:12:59 -040059static int inherit_flags(const struct inode *dir, umode_t mode)
Artem Bityutskiy1e517642008-07-14 19:08:37 +030060{
61 int flags;
62 const struct ubifs_inode *ui = ubifs_inode(dir);
63
64 if (!S_ISDIR(dir->i_mode))
65 /*
66 * The parent is not a directory, which means that an extended
67 * attribute inode is being created. No flags.
68 */
69 return 0;
70
71 flags = ui->flags & (UBIFS_COMPR_FL | UBIFS_SYNC_FL | UBIFS_DIRSYNC_FL);
72 if (!S_ISDIR(mode))
73 /* The "DIRSYNC" flag only applies to directories */
74 flags &= ~UBIFS_DIRSYNC_FL;
75 return flags;
76}
77
78/**
79 * ubifs_new_inode - allocate new UBIFS inode object.
80 * @c: UBIFS file-system description object
81 * @dir: parent directory inode
82 * @mode: inode mode flags
83 *
84 * This function finds an unused inode number, allocates new inode and
85 * initializes it. Returns new inode in case of success and an error code in
86 * case of failure.
87 */
Richard Weinbergerd475a502016-10-20 16:47:56 +020088struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir,
Al Viroad44be52011-07-26 03:12:59 -040089 umode_t mode)
Artem Bityutskiy1e517642008-07-14 19:08:37 +030090{
Richard Weinbergerd475a502016-10-20 16:47:56 +020091 int err;
Artem Bityutskiy1e517642008-07-14 19:08:37 +030092 struct inode *inode;
93 struct ubifs_inode *ui;
Richard Weinbergerd475a502016-10-20 16:47:56 +020094 bool encrypted = false;
95
96 if (ubifs_crypt_is_encrypted(dir)) {
97 err = fscrypt_get_encryption_info(dir);
98 if (err) {
99 ubifs_err(c, "fscrypt_get_encryption_info failed: %i", err);
100 return ERR_PTR(err);
101 }
102
103 if (!fscrypt_has_encryption_key(dir))
104 return ERR_PTR(-EPERM);
105
106 encrypted = true;
107 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300108
109 inode = new_inode(c->vfs_sb);
110 ui = ubifs_inode(inode);
111 if (!inode)
112 return ERR_PTR(-ENOMEM);
113
114 /*
115 * Set 'S_NOCMTIME' to prevent VFS form updating [mc]time of inodes and
116 * marking them dirty in file write path (see 'file_update_time()').
117 * UBIFS has to fully control "clean <-> dirty" transitions of inodes
118 * to make budgeting work.
119 */
Artem Bityutskiy12e776a2011-05-27 15:50:39 +0300120 inode->i_flags |= S_NOCMTIME;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300121
Dmitry Monakhovabf5d082010-03-04 17:32:21 +0300122 inode_init_owner(inode, dir, mode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300123 inode->i_mtime = inode->i_atime = inode->i_ctime =
Deepa Dinamani607a11a2017-05-08 15:59:25 -0700124 current_time(inode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300125 inode->i_mapping->nrpages = 0;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300126
127 switch (mode & S_IFMT) {
128 case S_IFREG:
129 inode->i_mapping->a_ops = &ubifs_file_address_operations;
130 inode->i_op = &ubifs_file_inode_operations;
131 inode->i_fop = &ubifs_file_operations;
132 break;
133 case S_IFDIR:
134 inode->i_op = &ubifs_dir_inode_operations;
135 inode->i_fop = &ubifs_dir_operations;
136 inode->i_size = ui->ui_size = UBIFS_INO_NODE_SZ;
137 break;
138 case S_IFLNK:
139 inode->i_op = &ubifs_symlink_inode_operations;
140 break;
141 case S_IFSOCK:
142 case S_IFIFO:
143 case S_IFBLK:
144 case S_IFCHR:
145 inode->i_op = &ubifs_file_inode_operations;
David Gstirf34e87f2017-05-17 13:36:16 +0200146 encrypted = false;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300147 break;
148 default:
149 BUG();
150 }
151
152 ui->flags = inherit_flags(dir, mode);
153 ubifs_set_inode_flags(inode);
154 if (S_ISREG(mode))
155 ui->compr_type = c->default_compr;
156 else
157 ui->compr_type = UBIFS_COMPR_NONE;
158 ui->synced_i_size = 0;
159
160 spin_lock(&c->cnt_lock);
161 /* Inode number overflow is currently not supported */
162 if (c->highest_inum >= INUM_WARN_WATERMARK) {
163 if (c->highest_inum >= INUM_WATERMARK) {
164 spin_unlock(&c->cnt_lock);
Sheng Yong235c3622015-03-20 10:39:42 +0000165 ubifs_err(c, "out of inode numbers");
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300166 make_bad_inode(inode);
167 iput(inode);
168 return ERR_PTR(-EINVAL);
169 }
Sheng Yong1a7e985d2015-04-03 03:13:42 +0000170 ubifs_warn(c, "running out of inode numbers (current %lu, max %u)",
Artem Bityutskiye84461a2008-10-29 12:08:43 +0200171 (unsigned long)c->highest_inum, INUM_WATERMARK);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300172 }
173
174 inode->i_ino = ++c->highest_inum;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300175 /*
176 * The creation sequence number remains with this inode for its
177 * lifetime. All nodes for this inode have a greater sequence number,
178 * and so it is possible to distinguish obsolete nodes belonging to a
179 * previous incarnation of the same inode number - for example, for the
180 * purpose of rebuilding the index.
181 */
182 ui->creat_sqnum = ++c->max_sqnum;
183 spin_unlock(&c->cnt_lock);
Richard Weinbergerd475a502016-10-20 16:47:56 +0200184
185 if (encrypted) {
186 err = fscrypt_inherit_context(dir, inode, &encrypted, true);
187 if (err) {
188 ubifs_err(c, "fscrypt_inherit_context failed: %i", err);
189 make_bad_inode(inode);
190 iput(inode);
191 return ERR_PTR(err);
192 }
193 }
194
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300195 return inode;
196}
197
Artem Bityutskiybb2615d2011-05-31 17:47:53 +0300198static int dbg_check_name(const struct ubifs_info *c,
199 const struct ubifs_dent_node *dent,
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100200 const struct fscrypt_name *nm)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300201{
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +0300202 if (!dbg_is_chk_gen(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300203 return 0;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100204 if (le16_to_cpu(dent->nlen) != fname_len(nm))
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300205 return -EINVAL;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100206 if (memcmp(dent->name, fname_name(nm), fname_len(nm)))
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300207 return -EINVAL;
208 return 0;
209}
210
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300211static struct dentry *ubifs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400212 unsigned int flags)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300213{
214 int err;
215 union ubifs_key key;
216 struct inode *inode = NULL;
217 struct ubifs_dent_node *dent;
218 struct ubifs_info *c = dir->i_sb->s_fs_info;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100219 struct fscrypt_name nm;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300220
Al Viro4cb2a012013-09-16 10:58:53 -0400221 dbg_gen("'%pd' in dir ino %lu", dentry, dir->i_ino);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300222
Richard Weinberger9270b2f2016-09-29 20:10:06 +0200223 if (ubifs_crypt_is_encrypted(dir)) {
224 err = fscrypt_get_encryption_info(dir);
225
226 /*
227 * DCACHE_ENCRYPTED_WITH_KEY is set if the dentry is
228 * created while the directory was encrypted and we
229 * have access to the key.
230 */
231 if (fscrypt_has_encryption_key(dir))
232 fscrypt_set_encrypted_dentry(dentry);
233 fscrypt_set_d_op(dentry);
234 if (err && err != -ENOKEY)
235 return ERR_PTR(err);
236 }
237
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100238 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
239 if (err)
240 return ERR_PTR(err);
241
242 if (fname_len(&nm) > UBIFS_MAX_NLEN) {
243 err = -ENAMETOOLONG;
244 goto out_fname;
245 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300246
247 dent = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100248 if (!dent) {
249 err = -ENOMEM;
250 goto out_fname;
251 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300252
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100253 if (nm.hash) {
254 ubifs_assert(fname_len(&nm) == 0);
255 ubifs_assert(fname_name(&nm) == NULL);
256 dent_key_init_hash(c, &key, dir->i_ino, nm.hash);
Richard Weinberger528e3d12016-11-11 20:46:06 +0100257 err = ubifs_tnc_lookup_dh(c, &key, dent, nm.minor_hash);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100258 } else {
259 dent_key_init(c, &key, dir->i_ino, &nm);
260 err = ubifs_tnc_lookup_nm(c, &key, dent, &nm);
261 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300262
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300263 if (err) {
Artem Bityutskiy720b4992008-08-13 16:16:31 +0300264 if (err == -ENOENT) {
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300265 dbg_gen("not found");
266 goto done;
267 }
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100268 goto out_dent;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300269 }
270
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100271 if (dbg_check_name(c, dent, &nm)) {
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300272 err = -EINVAL;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100273 goto out_dent;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300274 }
275
276 inode = ubifs_iget(dir->i_sb, le64_to_cpu(dent->inum));
277 if (IS_ERR(inode)) {
278 /*
279 * This should not happen. Probably the file-system needs
280 * checking.
281 */
282 err = PTR_ERR(inode);
Sheng Yong235c3622015-03-20 10:39:42 +0000283 ubifs_err(c, "dead directory entry '%pd', error %d",
Al Viro4cb2a012013-09-16 10:58:53 -0400284 dentry, err);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300285 ubifs_ro_mode(c, err);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100286 goto out_dent;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300287 }
288
Eric Biggers413d5a92017-04-07 10:58:40 -0700289 if (ubifs_crypt_is_encrypted(dir) &&
290 (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
291 !fscrypt_has_permitted_context(dir, inode)) {
292 ubifs_warn(c, "Inconsistent encryption contexts: %lu/%lu",
293 dir->i_ino, inode->i_ino);
294 err = -EPERM;
295 goto out_inode;
296 }
297
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300298done:
299 kfree(dent);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100300 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300301 /*
302 * Note, d_splice_alias() would be required instead if we supported
303 * NFS.
304 */
305 d_add(dentry, inode);
306 return NULL;
307
Eric Biggers413d5a92017-04-07 10:58:40 -0700308out_inode:
309 iput(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100310out_dent:
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300311 kfree(dent);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100312out_fname:
313 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300314 return ERR_PTR(err);
315}
316
Al Viro4acdaf22011-07-26 01:42:34 -0400317static int ubifs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400318 bool excl)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300319{
320 struct inode *inode;
321 struct ubifs_info *c = dir->i_sb->s_fs_info;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300322 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
323 .dirtied_ino = 1 };
324 struct ubifs_inode *dir_ui = ubifs_inode(dir);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100325 struct fscrypt_name nm;
326 int err, sz_change;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300327
328 /*
329 * Budget request settings: new inode, new direntry, changing the
330 * parent directory inode.
331 */
332
Al Viro4cb2a012013-09-16 10:58:53 -0400333 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
334 dentry, mode, dir->i_ino);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300335
336 err = ubifs_budget_space(c, &req);
337 if (err)
338 return err;
339
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100340 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
341 if (err)
342 goto out_budg;
343
344 sz_change = CALC_DENT_SIZE(fname_len(&nm));
345
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300346 inode = ubifs_new_inode(c, dir, mode);
347 if (IS_ERR(inode)) {
348 err = PTR_ERR(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100349 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300350 }
351
Subodh Nijsured7f0b702014-10-31 13:50:30 -0500352 err = ubifs_init_security(dir, inode, &dentry->d_name);
353 if (err)
Taesoo Kim9401a792015-03-25 09:53:37 +0100354 goto out_inode;
Subodh Nijsured7f0b702014-10-31 13:50:30 -0500355
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300356 mutex_lock(&dir_ui->ui_mutex);
357 dir->i_size += sz_change;
358 dir_ui->ui_size = dir->i_size;
359 dir->i_mtime = dir->i_ctime = inode->i_ctime;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100360 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300361 if (err)
362 goto out_cancel;
363 mutex_unlock(&dir_ui->ui_mutex);
364
365 ubifs_release_budget(c, &req);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100366 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300367 insert_inode_hash(inode);
368 d_instantiate(dentry, inode);
369 return 0;
370
371out_cancel:
372 dir->i_size -= sz_change;
373 dir_ui->ui_size = dir->i_size;
374 mutex_unlock(&dir_ui->ui_mutex);
Taesoo Kim9401a792015-03-25 09:53:37 +0100375out_inode:
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300376 make_bad_inode(inode);
377 iput(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100378out_fname:
379 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300380out_budg:
381 ubifs_release_budget(c, &req);
Sheng Yong235c3622015-03-20 10:39:42 +0000382 ubifs_err(c, "cannot create regular file, error %d", err);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300383 return err;
384}
385
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +0200386static int do_tmpfile(struct inode *dir, struct dentry *dentry,
387 umode_t mode, struct inode **whiteout)
Richard Weinberger474b9372016-09-14 22:28:49 +0200388{
389 struct inode *inode;
390 struct ubifs_info *c = dir->i_sb->s_fs_info;
391 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1};
392 struct ubifs_budget_req ino_req = { .dirtied_ino = 1 };
393 struct ubifs_inode *ui, *dir_ui = ubifs_inode(dir);
394 int err, instantiated = 0;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100395 struct fscrypt_name nm;
Richard Weinberger474b9372016-09-14 22:28:49 +0200396
397 /*
398 * Budget request settings: new dirty inode, new direntry,
399 * budget for dirtied inode will be released via writeback.
400 */
401
402 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
403 dentry, mode, dir->i_ino);
404
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100405 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
Richard Weinberger474b9372016-09-14 22:28:49 +0200406 if (err)
407 return err;
408
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100409 err = ubifs_budget_space(c, &req);
410 if (err) {
411 fscrypt_free_filename(&nm);
412 return err;
413 }
414
Richard Weinberger474b9372016-09-14 22:28:49 +0200415 err = ubifs_budget_space(c, &ino_req);
416 if (err) {
417 ubifs_release_budget(c, &req);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100418 fscrypt_free_filename(&nm);
Richard Weinberger474b9372016-09-14 22:28:49 +0200419 return err;
420 }
421
422 inode = ubifs_new_inode(c, dir, mode);
423 if (IS_ERR(inode)) {
424 err = PTR_ERR(inode);
425 goto out_budg;
426 }
427 ui = ubifs_inode(inode);
428
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +0200429 if (whiteout) {
430 init_special_inode(inode, inode->i_mode, WHITEOUT_DEV);
431 ubifs_assert(inode->i_op == &ubifs_file_inode_operations);
432 }
433
Richard Weinberger474b9372016-09-14 22:28:49 +0200434 err = ubifs_init_security(dir, inode, &dentry->d_name);
435 if (err)
436 goto out_inode;
437
438 mutex_lock(&ui->ui_mutex);
439 insert_inode_hash(inode);
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +0200440
441 if (whiteout) {
442 mark_inode_dirty(inode);
443 drop_nlink(inode);
444 *whiteout = inode;
445 } else {
446 d_tmpfile(dentry, inode);
447 }
Richard Weinberger474b9372016-09-14 22:28:49 +0200448 ubifs_assert(ui->dirty);
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +0200449
Richard Weinberger474b9372016-09-14 22:28:49 +0200450 instantiated = 1;
451 mutex_unlock(&ui->ui_mutex);
452
453 mutex_lock(&dir_ui->ui_mutex);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100454 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
Richard Weinberger474b9372016-09-14 22:28:49 +0200455 if (err)
456 goto out_cancel;
457 mutex_unlock(&dir_ui->ui_mutex);
458
459 ubifs_release_budget(c, &req);
460
461 return 0;
462
463out_cancel:
464 mutex_unlock(&dir_ui->ui_mutex);
465out_inode:
466 make_bad_inode(inode);
467 if (!instantiated)
468 iput(inode);
469out_budg:
470 ubifs_release_budget(c, &req);
471 if (!instantiated)
472 ubifs_release_budget(c, &ino_req);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100473 fscrypt_free_filename(&nm);
Richard Weinberger474b9372016-09-14 22:28:49 +0200474 ubifs_err(c, "cannot create temporary file, error %d", err);
475 return err;
476}
477
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +0200478static int ubifs_tmpfile(struct inode *dir, struct dentry *dentry,
479 umode_t mode)
480{
481 return do_tmpfile(dir, dentry, mode, NULL);
482}
483
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300484/**
485 * vfs_dent_type - get VFS directory entry type.
486 * @type: UBIFS directory entry type
487 *
488 * This function converts UBIFS directory entry type into VFS directory entry
489 * type.
490 */
491static unsigned int vfs_dent_type(uint8_t type)
492{
493 switch (type) {
494 case UBIFS_ITYPE_REG:
495 return DT_REG;
496 case UBIFS_ITYPE_DIR:
497 return DT_DIR;
498 case UBIFS_ITYPE_LNK:
499 return DT_LNK;
500 case UBIFS_ITYPE_BLK:
501 return DT_BLK;
502 case UBIFS_ITYPE_CHR:
503 return DT_CHR;
504 case UBIFS_ITYPE_FIFO:
505 return DT_FIFO;
506 case UBIFS_ITYPE_SOCK:
507 return DT_SOCK;
508 default:
509 BUG();
510 }
511 return 0;
512}
513
514/*
515 * The classical Unix view for directory is that it is a linear array of
516 * (name, inode number) entries. Linux/VFS assumes this model as well.
517 * Particularly, 'readdir()' call wants us to return a directory entry offset
518 * which later may be used to continue 'readdir()'ing the directory or to
519 * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
520 * model because directory entries are identified by keys, which may collide.
521 *
522 * UBIFS uses directory entry hash value for directory offsets, so
523 * 'seekdir()'/'telldir()' may not always work because of possible key
524 * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
525 * properly by means of saving full directory entry name in the private field
526 * of the file description object.
527 *
528 * This means that UBIFS cannot support NFS which requires full
529 * 'seekdir()'/'telldir()' support.
530 */
Al Viro01122e02013-05-16 01:14:46 -0400531static int ubifs_readdir(struct file *file, struct dir_context *ctx)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300532{
Richard Weinbergerba75d572016-12-14 11:09:25 +0100533 int fstr_real_len = 0, err = 0;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100534 struct fscrypt_name nm;
535 struct fscrypt_str fstr = {0};
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300536 union ubifs_key key;
537 struct ubifs_dent_node *dent;
Al Viro496ad9a2013-01-23 17:07:38 -0500538 struct inode *dir = file_inode(file);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300539 struct ubifs_info *c = dir->i_sb->s_fs_info;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100540 bool encrypted = ubifs_crypt_is_encrypted(dir);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300541
Al Viro01122e02013-05-16 01:14:46 -0400542 dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, ctx->pos);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300543
Al Viro01122e02013-05-16 01:14:46 -0400544 if (ctx->pos > UBIFS_S_KEY_HASH_MASK || ctx->pos == 2)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300545 /*
546 * The directory was seek'ed to a senseless position or there
547 * are no more entries.
548 */
549 return 0;
550
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100551 if (encrypted) {
552 err = fscrypt_get_encryption_info(dir);
553 if (err && err != -ENOKEY)
554 return err;
555
556 err = fscrypt_fname_alloc_buffer(dir, UBIFS_MAX_NLEN, &fstr);
557 if (err)
558 return err;
559
560 fstr_real_len = fstr.len;
561 }
562
Artem Bityutskiy605c9122013-06-28 14:15:15 +0300563 if (file->f_version == 0) {
564 /*
565 * The file was seek'ed, which means that @file->private_data
566 * is now invalid. This may also be just the first
567 * 'ubifs_readdir()' invocation, in which case
568 * @file->private_data is NULL, and the below code is
569 * basically a no-op.
570 */
571 kfree(file->private_data);
572 file->private_data = NULL;
573 }
574
575 /*
576 * 'generic_file_llseek()' unconditionally sets @file->f_version to
577 * zero, and we use this for detecting whether the file was seek'ed.
578 */
579 file->f_version = 1;
580
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300581 /* File positions 0 and 1 correspond to "." and ".." */
Al Viro01122e02013-05-16 01:14:46 -0400582 if (ctx->pos < 2) {
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300583 ubifs_assert(!file->private_data);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100584 if (!dir_emit_dots(file, ctx)) {
585 if (encrypted)
586 fscrypt_fname_free_buffer(&fstr);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300587 return 0;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100588 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300589
590 /* Find the first entry in TNC and save it */
591 lowest_dent_key(c, &key, dir->i_ino);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100592 fname_len(&nm) = 0;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300593 dent = ubifs_tnc_next_ent(c, &key, &nm);
594 if (IS_ERR(dent)) {
595 err = PTR_ERR(dent);
596 goto out;
597 }
598
Al Viro01122e02013-05-16 01:14:46 -0400599 ctx->pos = key_hash_flash(c, &dent->key);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300600 file->private_data = dent;
601 }
602
603 dent = file->private_data;
604 if (!dent) {
605 /*
606 * The directory was seek'ed to and is now readdir'ed.
Al Viro01122e02013-05-16 01:14:46 -0400607 * Find the entry corresponding to @ctx->pos or the closest one.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300608 */
Al Viro01122e02013-05-16 01:14:46 -0400609 dent_key_init_hash(c, &key, dir->i_ino, ctx->pos);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100610 fname_len(&nm) = 0;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300611 dent = ubifs_tnc_next_ent(c, &key, &nm);
612 if (IS_ERR(dent)) {
613 err = PTR_ERR(dent);
614 goto out;
615 }
Al Viro01122e02013-05-16 01:14:46 -0400616 ctx->pos = key_hash_flash(c, &dent->key);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300617 file->private_data = dent;
618 }
619
620 while (1) {
Hyunchul Leeb20e2d92017-03-15 10:31:03 +0900621 dbg_gen("ino %llu, new f_pos %#x",
622 (unsigned long long)le64_to_cpu(dent->inum),
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300623 key_hash_flash(c, &dent->key));
Harvey Harrison0ecb9522008-10-24 10:52:57 -0700624 ubifs_assert(le64_to_cpu(dent->ch.sqnum) >
625 ubifs_inode(dir)->creat_sqnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300626
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100627 fname_len(&nm) = le16_to_cpu(dent->nlen);
628 fname_name(&nm) = dent->name;
629
630 if (encrypted) {
631 fstr.len = fstr_real_len;
632
Richard Weinberger528e3d12016-11-11 20:46:06 +0100633 err = fscrypt_fname_disk_to_usr(dir, key_hash_flash(c,
634 &dent->key),
635 le32_to_cpu(dent->cookie),
636 &nm.disk_name, &fstr);
Richard Weinbergerca7f85b2016-10-08 13:24:26 +0200637 if (err)
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100638 goto out;
639 } else {
640 fstr.len = fname_len(&nm);
641 fstr.name = fname_name(&nm);
642 }
643
644 if (!dir_emit(ctx, fstr.name, fstr.len,
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300645 le64_to_cpu(dent->inum),
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100646 vfs_dent_type(dent->type))) {
647 if (encrypted)
648 fscrypt_fname_free_buffer(&fstr);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300649 return 0;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100650 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300651
652 /* Switch to the next entry */
653 key_read(c, &dent->key, &key);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300654 dent = ubifs_tnc_next_ent(c, &key, &nm);
655 if (IS_ERR(dent)) {
656 err = PTR_ERR(dent);
657 goto out;
658 }
659
660 kfree(file->private_data);
Al Viro01122e02013-05-16 01:14:46 -0400661 ctx->pos = key_hash_flash(c, &dent->key);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300662 file->private_data = dent;
663 cond_resched();
664 }
665
666out:
Richard Weinbergeraeeb14f2015-10-12 23:35:36 +0200667 kfree(file->private_data);
668 file->private_data = NULL;
669
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100670 if (encrypted)
671 fscrypt_fname_free_buffer(&fstr);
672
Richard Weinbergerc83ed4c2016-10-19 12:43:07 +0200673 if (err != -ENOENT)
Sheng Yong235c3622015-03-20 10:39:42 +0000674 ubifs_err(c, "cannot find next direntry, error %d", err);
Richard Weinbergera00052a2016-10-28 11:49:03 +0200675 else
676 /*
677 * -ENOENT is a non-fatal error in this context, the TNC uses
678 * it to indicate that the cursor moved past the current directory
679 * and readdir() has to stop.
680 */
681 err = 0;
682
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300683
Artem Bityutskiy605c9122013-06-28 14:15:15 +0300684 /* 2 is a special value indicating that there are no more direntries */
Al Viro01122e02013-05-16 01:14:46 -0400685 ctx->pos = 2;
Richard Weinbergerc83ed4c2016-10-19 12:43:07 +0200686 return err;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300687}
688
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300689/* Free saved readdir() state when the directory is closed */
690static int ubifs_dir_release(struct inode *dir, struct file *file)
691{
692 kfree(file->private_data);
693 file->private_data = NULL;
694 return 0;
695}
696
697/**
Artem Bityutskiy82c15932009-01-20 16:46:02 +0200698 * lock_2_inodes - a wrapper for locking two UBIFS inodes.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300699 * @inode1: first inode
700 * @inode2: second inode
Artem Bityutskiy82c15932009-01-20 16:46:02 +0200701 *
702 * We do not implement any tricks to guarantee strict lock ordering, because
703 * VFS has already done it for us on the @i_mutex. So this is just a simple
704 * wrapper function.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300705 */
706static void lock_2_inodes(struct inode *inode1, struct inode *inode2)
707{
Artem Bityutskiy82c15932009-01-20 16:46:02 +0200708 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
709 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300710}
711
712/**
Artem Bityutskiy82c15932009-01-20 16:46:02 +0200713 * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300714 * @inode1: first inode
715 * @inode2: second inode
716 */
717static void unlock_2_inodes(struct inode *inode1, struct inode *inode2)
718{
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300719 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
Artem Bityutskiy82c15932009-01-20 16:46:02 +0200720 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300721}
722
723static int ubifs_link(struct dentry *old_dentry, struct inode *dir,
724 struct dentry *dentry)
725{
726 struct ubifs_info *c = dir->i_sb->s_fs_info;
David Howells2b0143b2015-03-17 22:25:59 +0000727 struct inode *inode = d_inode(old_dentry);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300728 struct ubifs_inode *ui = ubifs_inode(inode);
729 struct ubifs_inode *dir_ui = ubifs_inode(dir);
730 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len);
731 struct ubifs_budget_req req = { .new_dent = 1, .dirtied_ino = 2,
Artem Bityutskiydab4b4d2008-07-24 14:52:45 +0300732 .dirtied_ino_d = ALIGN(ui->data_len, 8) };
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100733 struct fscrypt_name nm;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300734
735 /*
736 * Budget request settings: new direntry, changing the target inode,
737 * changing the parent inode.
738 */
739
Al Viro4cb2a012013-09-16 10:58:53 -0400740 dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu",
741 dentry, inode->i_ino,
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300742 inode->i_nlink, dir->i_ino);
Al Viro59551022016-01-22 15:40:57 -0500743 ubifs_assert(inode_is_locked(dir));
744 ubifs_assert(inode_is_locked(inode));
Hunter Adrian8b3884a2009-05-14 06:32:30 +0200745
Eric Biggers3d4b2fc2016-12-19 11:15:48 -0800746 if (ubifs_crypt_is_encrypted(dir) &&
747 !fscrypt_has_permitted_context(dir, inode))
748 return -EPERM;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100749
750 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
751 if (err)
752 return err;
Richard Weinbergerac7e47a2016-09-29 20:00:38 +0200753
Artem Bityutskiyd808efb2011-05-31 18:14:38 +0300754 err = dbg_check_synced_i_size(c, inode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300755 if (err)
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100756 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300757
758 err = ubifs_budget_space(c, &req);
759 if (err)
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100760 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300761
762 lock_2_inodes(dir, inode);
Richard Weinberger32fe9052017-03-30 10:50:49 +0200763
764 /* Handle O_TMPFILE corner case, it is allowed to link a O_TMPFILE. */
765 if (inode->i_nlink == 0)
766 ubifs_delete_orphan(c, inode->i_ino);
767
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300768 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400769 ihold(inode);
Deepa Dinamani607a11a2017-05-08 15:59:25 -0700770 inode->i_ctime = current_time(inode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300771 dir->i_size += sz_change;
772 dir_ui->ui_size = dir->i_size;
773 dir->i_mtime = dir->i_ctime = inode->i_ctime;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100774 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300775 if (err)
776 goto out_cancel;
777 unlock_2_inodes(dir, inode);
778
779 ubifs_release_budget(c, &req);
780 d_instantiate(dentry, inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100781 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300782 return 0;
783
784out_cancel:
785 dir->i_size -= sz_change;
786 dir_ui->ui_size = dir->i_size;
787 drop_nlink(inode);
Richard Weinberger32fe9052017-03-30 10:50:49 +0200788 if (inode->i_nlink == 0)
789 ubifs_add_orphan(c, inode->i_ino);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300790 unlock_2_inodes(dir, inode);
791 ubifs_release_budget(c, &req);
792 iput(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100793out_fname:
794 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300795 return err;
796}
797
798static int ubifs_unlink(struct inode *dir, struct dentry *dentry)
799{
800 struct ubifs_info *c = dir->i_sb->s_fs_info;
David Howells2b0143b2015-03-17 22:25:59 +0000801 struct inode *inode = d_inode(dentry);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300802 struct ubifs_inode *dir_ui = ubifs_inode(dir);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100803 int err, sz_change, budgeted = 1;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300804 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
Artem Bityutskiyc43be102012-02-07 10:58:51 +0200805 unsigned int saved_nlink = inode->i_nlink;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100806 struct fscrypt_name nm;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300807
808 /*
809 * Budget request settings: deletion direntry, deletion inode (+1 for
810 * @dirtied_ino), changing the parent directory inode. If budgeting
811 * fails, go ahead anyway because we have extra space reserved for
812 * deletions.
813 */
814
Al Viro4cb2a012013-09-16 10:58:53 -0400815 dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu",
816 dentry, inode->i_ino,
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300817 inode->i_nlink, dir->i_ino);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100818
819 if (ubifs_crypt_is_encrypted(dir)) {
820 err = fscrypt_get_encryption_info(dir);
821 if (err && err != -ENOKEY)
822 return err;
823 }
824
825 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
826 if (err)
827 return err;
828
829 sz_change = CALC_DENT_SIZE(fname_len(&nm));
830
Al Viro59551022016-01-22 15:40:57 -0500831 ubifs_assert(inode_is_locked(dir));
832 ubifs_assert(inode_is_locked(inode));
Artem Bityutskiyd808efb2011-05-31 18:14:38 +0300833 err = dbg_check_synced_i_size(c, inode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300834 if (err)
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100835 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300836
837 err = ubifs_budget_space(c, &req);
838 if (err) {
839 if (err != -ENOSPC)
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100840 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300841 budgeted = 0;
842 }
843
844 lock_2_inodes(dir, inode);
Deepa Dinamani607a11a2017-05-08 15:59:25 -0700845 inode->i_ctime = current_time(dir);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300846 drop_nlink(inode);
847 dir->i_size -= sz_change;
848 dir_ui->ui_size = dir->i_size;
849 dir->i_mtime = dir->i_ctime = inode->i_ctime;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100850 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300851 if (err)
852 goto out_cancel;
853 unlock_2_inodes(dir, inode);
854
855 if (budgeted)
856 ubifs_release_budget(c, &req);
857 else {
858 /* We've deleted something - clean the "no space" flags */
Artem Bityutskiyb1375452011-03-29 18:04:05 +0300859 c->bi.nospace = c->bi.nospace_rp = 0;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300860 smp_wmb();
861 }
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100862 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300863 return 0;
864
865out_cancel:
866 dir->i_size += sz_change;
867 dir_ui->ui_size = dir->i_size;
Artem Bityutskiyc43be102012-02-07 10:58:51 +0200868 set_nlink(inode, saved_nlink);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300869 unlock_2_inodes(dir, inode);
870 if (budgeted)
871 ubifs_release_budget(c, &req);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100872out_fname:
873 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300874 return err;
875}
876
877/**
878 * check_dir_empty - check if a directory is empty or not.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300879 * @dir: VFS inode object of the directory to check
880 *
881 * This function checks if directory @dir is empty. Returns zero if the
882 * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
883 * in case of of errors.
884 */
Richard Weinbergerf6337d82016-09-19 20:54:19 +0200885int ubifs_check_dir_empty(struct inode *dir)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300886{
Richard Weinbergerf6337d82016-09-19 20:54:19 +0200887 struct ubifs_info *c = dir->i_sb->s_fs_info;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100888 struct fscrypt_name nm = { 0 };
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300889 struct ubifs_dent_node *dent;
890 union ubifs_key key;
891 int err;
892
893 lowest_dent_key(c, &key, dir->i_ino);
894 dent = ubifs_tnc_next_ent(c, &key, &nm);
895 if (IS_ERR(dent)) {
896 err = PTR_ERR(dent);
897 if (err == -ENOENT)
898 err = 0;
899 } else {
900 kfree(dent);
901 err = -ENOTEMPTY;
902 }
903 return err;
904}
905
906static int ubifs_rmdir(struct inode *dir, struct dentry *dentry)
907{
908 struct ubifs_info *c = dir->i_sb->s_fs_info;
David Howells2b0143b2015-03-17 22:25:59 +0000909 struct inode *inode = d_inode(dentry);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100910 int err, sz_change, budgeted = 1;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300911 struct ubifs_inode *dir_ui = ubifs_inode(dir);
912 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100913 struct fscrypt_name nm;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300914
915 /*
916 * Budget request settings: deletion direntry, deletion inode and
917 * changing the parent inode. If budgeting fails, go ahead anyway
918 * because we have extra space reserved for deletions.
919 */
920
Al Viro4cb2a012013-09-16 10:58:53 -0400921 dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry,
922 inode->i_ino, dir->i_ino);
Al Viro59551022016-01-22 15:40:57 -0500923 ubifs_assert(inode_is_locked(dir));
924 ubifs_assert(inode_is_locked(inode));
Richard Weinbergerf6337d82016-09-19 20:54:19 +0200925 err = ubifs_check_dir_empty(d_inode(dentry));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300926 if (err)
927 return err;
928
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100929 if (ubifs_crypt_is_encrypted(dir)) {
930 err = fscrypt_get_encryption_info(dir);
931 if (err && err != -ENOKEY)
932 return err;
933 }
934
935 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
936 if (err)
937 return err;
938
939 sz_change = CALC_DENT_SIZE(fname_len(&nm));
940
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300941 err = ubifs_budget_space(c, &req);
942 if (err) {
943 if (err != -ENOSPC)
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100944 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300945 budgeted = 0;
946 }
947
948 lock_2_inodes(dir, inode);
Deepa Dinamani607a11a2017-05-08 15:59:25 -0700949 inode->i_ctime = current_time(dir);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300950 clear_nlink(inode);
951 drop_nlink(dir);
952 dir->i_size -= sz_change;
953 dir_ui->ui_size = dir->i_size;
954 dir->i_mtime = dir->i_ctime = inode->i_ctime;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100955 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300956 if (err)
957 goto out_cancel;
958 unlock_2_inodes(dir, inode);
959
960 if (budgeted)
961 ubifs_release_budget(c, &req);
962 else {
963 /* We've deleted something - clean the "no space" flags */
Artem Bityutskiyb1375452011-03-29 18:04:05 +0300964 c->bi.nospace = c->bi.nospace_rp = 0;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300965 smp_wmb();
966 }
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100967 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300968 return 0;
969
970out_cancel:
971 dir->i_size += sz_change;
972 dir_ui->ui_size = dir->i_size;
973 inc_nlink(dir);
Artem Bityutskiyc43be102012-02-07 10:58:51 +0200974 set_nlink(inode, 2);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300975 unlock_2_inodes(dir, inode);
976 if (budgeted)
977 ubifs_release_budget(c, &req);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100978out_fname:
979 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300980 return err;
981}
982
Al Viro18bb1db2011-07-26 01:41:39 -0400983static int ubifs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300984{
985 struct inode *inode;
986 struct ubifs_inode *dir_ui = ubifs_inode(dir);
987 struct ubifs_info *c = dir->i_sb->s_fs_info;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100988 int err, sz_change;
Artem Bityutskiy182854b2008-07-18 18:54:29 +0300989 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1 };
Richard Weinbergerf4f61d22016-11-11 22:50:29 +0100990 struct fscrypt_name nm;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300991
992 /*
993 * Budget request settings: new inode, new direntry and changing parent
994 * directory inode.
995 */
996
Al Viro4cb2a012013-09-16 10:58:53 -0400997 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
998 dentry, mode, dir->i_ino);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300999
1000 err = ubifs_budget_space(c, &req);
1001 if (err)
1002 return err;
1003
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001004 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
1005 if (err)
1006 goto out_budg;
1007
1008 sz_change = CALC_DENT_SIZE(fname_len(&nm));
1009
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001010 inode = ubifs_new_inode(c, dir, S_IFDIR | mode);
1011 if (IS_ERR(inode)) {
1012 err = PTR_ERR(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001013 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001014 }
1015
Subodh Nijsured7f0b702014-10-31 13:50:30 -05001016 err = ubifs_init_security(dir, inode, &dentry->d_name);
1017 if (err)
Taesoo Kim9401a792015-03-25 09:53:37 +01001018 goto out_inode;
Subodh Nijsured7f0b702014-10-31 13:50:30 -05001019
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001020 mutex_lock(&dir_ui->ui_mutex);
1021 insert_inode_hash(inode);
1022 inc_nlink(inode);
1023 inc_nlink(dir);
1024 dir->i_size += sz_change;
1025 dir_ui->ui_size = dir->i_size;
1026 dir->i_mtime = dir->i_ctime = inode->i_ctime;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001027 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001028 if (err) {
Sheng Yong235c3622015-03-20 10:39:42 +00001029 ubifs_err(c, "cannot create directory, error %d", err);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001030 goto out_cancel;
1031 }
1032 mutex_unlock(&dir_ui->ui_mutex);
1033
1034 ubifs_release_budget(c, &req);
1035 d_instantiate(dentry, inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001036 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001037 return 0;
1038
1039out_cancel:
1040 dir->i_size -= sz_change;
1041 dir_ui->ui_size = dir->i_size;
1042 drop_nlink(dir);
1043 mutex_unlock(&dir_ui->ui_mutex);
Taesoo Kim9401a792015-03-25 09:53:37 +01001044out_inode:
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001045 make_bad_inode(inode);
1046 iput(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001047out_fname:
1048 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001049out_budg:
1050 ubifs_release_budget(c, &req);
1051 return err;
1052}
1053
1054static int ubifs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04001055 umode_t mode, dev_t rdev)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001056{
1057 struct inode *inode;
1058 struct ubifs_inode *ui;
1059 struct ubifs_inode *dir_ui = ubifs_inode(dir);
1060 struct ubifs_info *c = dir->i_sb->s_fs_info;
1061 union ubifs_dev_desc *dev = NULL;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001062 int sz_change;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001063 int err, devlen = 0;
1064 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
Artem Bityutskiydab4b4d2008-07-24 14:52:45 +03001065 .dirtied_ino = 1 };
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001066 struct fscrypt_name nm;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001067
1068 /*
1069 * Budget request settings: new inode, new direntry and changing parent
1070 * directory inode.
1071 */
1072
Al Viro4cb2a012013-09-16 10:58:53 -04001073 dbg_gen("dent '%pd' in dir ino %lu", dentry, dir->i_ino);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001074
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001075 if (S_ISBLK(mode) || S_ISCHR(mode)) {
1076 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1077 if (!dev)
1078 return -ENOMEM;
1079 devlen = ubifs_encode_dev(dev, rdev);
1080 }
1081
Hyunchul Lee4d35ca42017-05-17 08:57:18 +09001082 req.new_ino_d = ALIGN(devlen, 8);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001083 err = ubifs_budget_space(c, &req);
1084 if (err) {
1085 kfree(dev);
1086 return err;
1087 }
1088
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001089 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
Richard Weinberger63ed6572017-02-10 17:46:01 +01001090 if (err) {
1091 kfree(dev);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001092 goto out_budg;
Richard Weinberger63ed6572017-02-10 17:46:01 +01001093 }
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001094
1095 sz_change = CALC_DENT_SIZE(fname_len(&nm));
1096
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001097 inode = ubifs_new_inode(c, dir, mode);
1098 if (IS_ERR(inode)) {
1099 kfree(dev);
1100 err = PTR_ERR(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001101 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001102 }
1103
1104 init_special_inode(inode, inode->i_mode, rdev);
1105 inode->i_size = ubifs_inode(inode)->ui_size = devlen;
1106 ui = ubifs_inode(inode);
1107 ui->data = dev;
1108 ui->data_len = devlen;
1109
Subodh Nijsured7f0b702014-10-31 13:50:30 -05001110 err = ubifs_init_security(dir, inode, &dentry->d_name);
1111 if (err)
Taesoo Kim9401a792015-03-25 09:53:37 +01001112 goto out_inode;
Subodh Nijsured7f0b702014-10-31 13:50:30 -05001113
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001114 mutex_lock(&dir_ui->ui_mutex);
1115 dir->i_size += sz_change;
1116 dir_ui->ui_size = dir->i_size;
1117 dir->i_mtime = dir->i_ctime = inode->i_ctime;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001118 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001119 if (err)
1120 goto out_cancel;
1121 mutex_unlock(&dir_ui->ui_mutex);
1122
1123 ubifs_release_budget(c, &req);
1124 insert_inode_hash(inode);
1125 d_instantiate(dentry, inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001126 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001127 return 0;
1128
1129out_cancel:
1130 dir->i_size -= sz_change;
1131 dir_ui->ui_size = dir->i_size;
1132 mutex_unlock(&dir_ui->ui_mutex);
Taesoo Kim9401a792015-03-25 09:53:37 +01001133out_inode:
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001134 make_bad_inode(inode);
1135 iput(inode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001136out_fname:
1137 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001138out_budg:
1139 ubifs_release_budget(c, &req);
1140 return err;
1141}
1142
1143static int ubifs_symlink(struct inode *dir, struct dentry *dentry,
1144 const char *symname)
1145{
1146 struct inode *inode;
1147 struct ubifs_inode *ui;
1148 struct ubifs_inode *dir_ui = ubifs_inode(dir);
1149 struct ubifs_info *c = dir->i_sb->s_fs_info;
1150 int err, len = strlen(symname);
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001151 int sz_change = CALC_DENT_SIZE(len);
1152 struct fscrypt_str disk_link = FSTR_INIT((char *)symname, len + 1);
1153 struct fscrypt_symlink_data *sd = NULL;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001154 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
Artem Bityutskiydab4b4d2008-07-24 14:52:45 +03001155 .new_ino_d = ALIGN(len, 8),
1156 .dirtied_ino = 1 };
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001157 struct fscrypt_name nm;
1158
1159 if (ubifs_crypt_is_encrypted(dir)) {
1160 err = fscrypt_get_encryption_info(dir);
1161 if (err)
1162 goto out_budg;
1163
1164 if (!fscrypt_has_encryption_key(dir)) {
1165 err = -EPERM;
1166 goto out_budg;
1167 }
1168
1169 disk_link.len = (fscrypt_fname_encrypted_size(dir, len) +
1170 sizeof(struct fscrypt_symlink_data));
1171 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001172
1173 /*
1174 * Budget request settings: new inode, new direntry and changing parent
1175 * directory inode.
1176 */
1177
Al Viro4cb2a012013-09-16 10:58:53 -04001178 dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry,
1179 symname, dir->i_ino);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001180
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001181 if (disk_link.len > UBIFS_MAX_INO_DATA)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001182 return -ENAMETOOLONG;
1183
1184 err = ubifs_budget_space(c, &req);
1185 if (err)
1186 return err;
1187
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001188 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
1189 if (err)
1190 goto out_budg;
1191
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001192 inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO);
1193 if (IS_ERR(inode)) {
1194 err = PTR_ERR(inode);
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001195 goto out_fname;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001196 }
1197
1198 ui = ubifs_inode(inode);
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001199 ui->data = kmalloc(disk_link.len, GFP_NOFS);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001200 if (!ui->data) {
1201 err = -ENOMEM;
1202 goto out_inode;
1203 }
1204
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001205 if (ubifs_crypt_is_encrypted(dir)) {
1206 struct qstr istr = QSTR_INIT(symname, len);
1207 struct fscrypt_str ostr;
1208
1209 sd = kzalloc(disk_link.len, GFP_NOFS);
1210 if (!sd) {
1211 err = -ENOMEM;
1212 goto out_inode;
1213 }
1214
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001215 ostr.name = sd->encrypted_path;
1216 ostr.len = disk_link.len;
1217
1218 err = fscrypt_fname_usr_to_disk(inode, &istr, &ostr);
1219 if (err) {
1220 kfree(sd);
1221 goto out_inode;
1222 }
1223
1224 sd->len = cpu_to_le16(ostr.len);
1225 disk_link.name = (char *)sd;
1226 } else {
1227 inode->i_link = ui->data;
1228 }
1229
1230 memcpy(ui->data, disk_link.name, disk_link.len);
1231 ((char *)ui->data)[disk_link.len - 1] = '\0';
1232
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001233 /*
1234 * The terminating zero byte is not written to the flash media and it
1235 * is put just to make later in-memory string processing simpler. Thus,
1236 * data length is @len, not @len + %1.
1237 */
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001238 ui->data_len = disk_link.len - 1;
1239 inode->i_size = ubifs_inode(inode)->ui_size = disk_link.len - 1;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001240
Subodh Nijsured7f0b702014-10-31 13:50:30 -05001241 err = ubifs_init_security(dir, inode, &dentry->d_name);
1242 if (err)
Taesoo Kim9401a792015-03-25 09:53:37 +01001243 goto out_inode;
Subodh Nijsured7f0b702014-10-31 13:50:30 -05001244
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001245 mutex_lock(&dir_ui->ui_mutex);
1246 dir->i_size += sz_change;
1247 dir_ui->ui_size = dir->i_size;
1248 dir->i_mtime = dir->i_ctime = inode->i_ctime;
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001249 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001250 if (err)
1251 goto out_cancel;
1252 mutex_unlock(&dir_ui->ui_mutex);
1253
1254 ubifs_release_budget(c, &req);
1255 insert_inode_hash(inode);
1256 d_instantiate(dentry, inode);
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001257 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001258 return 0;
1259
1260out_cancel:
1261 dir->i_size -= sz_change;
1262 dir_ui->ui_size = dir->i_size;
1263 mutex_unlock(&dir_ui->ui_mutex);
1264out_inode:
1265 make_bad_inode(inode);
1266 iput(inode);
Richard Weinbergerca7f85b2016-10-08 13:24:26 +02001267out_fname:
1268 fscrypt_free_filename(&nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001269out_budg:
1270 ubifs_release_budget(c, &req);
1271 return err;
1272}
1273
1274/**
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001275 * lock_4_inodes - a wrapper for locking three UBIFS inodes.
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001276 * @inode1: first inode
1277 * @inode2: second inode
1278 * @inode3: third inode
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001279 * @inode4: fouth inode
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001280 *
Artem Bityutskiy82c15932009-01-20 16:46:02 +02001281 * This function is used for 'ubifs_rename()' and @inode1 may be the same as
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001282 * @inode2 whereas @inode3 and @inode4 may be %NULL.
Artem Bityutskiy82c15932009-01-20 16:46:02 +02001283 *
1284 * We do not implement any tricks to guarantee strict lock ordering, because
1285 * VFS has already done it for us on the @i_mutex. So this is just a simple
1286 * wrapper function.
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001287 */
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001288static void lock_4_inodes(struct inode *inode1, struct inode *inode2,
1289 struct inode *inode3, struct inode *inode4)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001290{
Artem Bityutskiy82c15932009-01-20 16:46:02 +02001291 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
1292 if (inode2 != inode1)
1293 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1294 if (inode3)
1295 mutex_lock_nested(&ubifs_inode(inode3)->ui_mutex, WB_MUTEX_3);
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001296 if (inode4)
1297 mutex_lock_nested(&ubifs_inode(inode4)->ui_mutex, WB_MUTEX_4);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001298}
1299
1300/**
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001301 * unlock_4_inodes - a wrapper for unlocking three UBIFS inodes for rename.
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001302 * @inode1: first inode
1303 * @inode2: second inode
1304 * @inode3: third inode
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001305 * @inode4: fouth inode
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001306 */
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001307static void unlock_4_inodes(struct inode *inode1, struct inode *inode2,
1308 struct inode *inode3, struct inode *inode4)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001309{
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001310 if (inode4)
1311 mutex_unlock(&ubifs_inode(inode4)->ui_mutex);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001312 if (inode3)
1313 mutex_unlock(&ubifs_inode(inode3)->ui_mutex);
Artem Bityutskiy82c15932009-01-20 16:46:02 +02001314 if (inode1 != inode2)
1315 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
1316 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001317}
1318
Richard Weinberger390975a2016-10-18 21:21:43 +02001319static int do_rename(struct inode *old_dir, struct dentry *old_dentry,
1320 struct inode *new_dir, struct dentry *new_dentry,
1321 unsigned int flags)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001322{
1323 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
David Howells2b0143b2015-03-17 22:25:59 +00001324 struct inode *old_inode = d_inode(old_dentry);
1325 struct inode *new_inode = d_inode(new_dentry);
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001326 struct inode *whiteout = NULL;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001327 struct ubifs_inode *old_inode_ui = ubifs_inode(old_inode);
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001328 struct ubifs_inode *whiteout_ui = NULL;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001329 int err, release, sync = 0, move = (new_dir != old_dir);
1330 int is_dir = S_ISDIR(old_inode->i_mode);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001331 int unlink = !!new_inode, new_sz, old_sz;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001332 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1333 .dirtied_ino = 3 };
1334 struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
Artem Bityutskiydab4b4d2008-07-24 14:52:45 +03001335 .dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001336 struct timespec time;
Alexandre Pereira da Silva782759b2012-06-25 17:47:49 -03001337 unsigned int uninitialized_var(saved_nlink);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001338 struct fscrypt_name old_nm, new_nm;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001339
1340 /*
1341 * Budget request settings: deletion direntry, new direntry, removing
1342 * the old inode, and changing old and new parent directory inodes.
1343 *
1344 * However, this operation also marks the target inode as dirty and
1345 * does not write it, so we allocate budget for the target inode
1346 * separately.
1347 */
1348
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001349 dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu flags 0x%x",
Al Viro4cb2a012013-09-16 10:58:53 -04001350 old_dentry, old_inode->i_ino, old_dir->i_ino,
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001351 new_dentry, new_dir->i_ino, flags);
1352
Artem Bityutskiy82c15932009-01-20 16:46:02 +02001353 if (unlink)
Al Viro59551022016-01-22 15:40:57 -05001354 ubifs_assert(inode_is_locked(new_inode));
Artem Bityutskiy82c15932009-01-20 16:46:02 +02001355
Richard Weinbergerac7e47a2016-09-29 20:00:38 +02001356 if (old_dir != new_dir) {
1357 if (ubifs_crypt_is_encrypted(new_dir) &&
1358 !fscrypt_has_permitted_context(new_dir, old_inode))
1359 return -EPERM;
1360 }
1361
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001362 if (unlink && is_dir) {
Richard Weinbergerf6337d82016-09-19 20:54:19 +02001363 err = ubifs_check_dir_empty(new_inode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001364 if (err)
1365 return err;
1366 }
1367
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001368 err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &old_nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001369 if (err)
1370 return err;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001371
1372 err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &new_nm);
1373 if (err) {
1374 fscrypt_free_filename(&old_nm);
1375 return err;
1376 }
1377
1378 new_sz = CALC_DENT_SIZE(fname_len(&new_nm));
1379 old_sz = CALC_DENT_SIZE(fname_len(&old_nm));
1380
1381 err = ubifs_budget_space(c, &req);
1382 if (err) {
1383 fscrypt_free_filename(&old_nm);
1384 fscrypt_free_filename(&new_nm);
1385 return err;
1386 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001387 err = ubifs_budget_space(c, &ino_req);
1388 if (err) {
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001389 fscrypt_free_filename(&old_nm);
1390 fscrypt_free_filename(&new_nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001391 ubifs_release_budget(c, &req);
1392 return err;
1393 }
1394
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001395 if (flags & RENAME_WHITEOUT) {
1396 union ubifs_dev_desc *dev = NULL;
1397
1398 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1399 if (!dev) {
Hyunchul Leebb50c632017-05-17 08:58:02 +09001400 err = -ENOMEM;
1401 goto out_release;
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001402 }
1403
1404 err = do_tmpfile(old_dir, old_dentry, S_IFCHR | WHITEOUT_MODE, &whiteout);
1405 if (err) {
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001406 kfree(dev);
Hyunchul Leebb50c632017-05-17 08:58:02 +09001407 goto out_release;
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001408 }
1409
1410 whiteout->i_state |= I_LINKABLE;
1411 whiteout_ui = ubifs_inode(whiteout);
1412 whiteout_ui->data = dev;
1413 whiteout_ui->data_len = ubifs_encode_dev(dev, MKDEV(0, 0));
1414 ubifs_assert(!whiteout_ui->dirty);
1415 }
1416
1417 lock_4_inodes(old_dir, new_dir, new_inode, whiteout);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001418
1419 /*
1420 * Like most other Unix systems, set the @i_ctime for inodes on a
1421 * rename.
1422 */
Deepa Dinamani607a11a2017-05-08 15:59:25 -07001423 time = current_time(old_dir);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001424 old_inode->i_ctime = time;
1425
1426 /* We must adjust parent link count when renaming directories */
1427 if (is_dir) {
1428 if (move) {
1429 /*
1430 * @old_dir loses a link because we are moving
1431 * @old_inode to a different directory.
1432 */
1433 drop_nlink(old_dir);
1434 /*
1435 * @new_dir only gains a link if we are not also
1436 * overwriting an existing directory.
1437 */
1438 if (!unlink)
1439 inc_nlink(new_dir);
1440 } else {
1441 /*
1442 * @old_inode is not moving to a different directory,
1443 * but @old_dir still loses a link if we are
1444 * overwriting an existing directory.
1445 */
1446 if (unlink)
1447 drop_nlink(old_dir);
1448 }
1449 }
1450
1451 old_dir->i_size -= old_sz;
1452 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1453 old_dir->i_mtime = old_dir->i_ctime = time;
1454 new_dir->i_mtime = new_dir->i_ctime = time;
1455
1456 /*
1457 * And finally, if we unlinked a direntry which happened to have the
1458 * same name as the moved direntry, we have to decrement @i_nlink of
1459 * the unlinked inode and change its ctime.
1460 */
1461 if (unlink) {
1462 /*
1463 * Directories cannot have hard-links, so if this is a
Artem Bityutskiyc43be102012-02-07 10:58:51 +02001464 * directory, just clear @i_nlink.
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001465 */
Artem Bityutskiyc43be102012-02-07 10:58:51 +02001466 saved_nlink = new_inode->i_nlink;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001467 if (is_dir)
Artem Bityutskiyc43be102012-02-07 10:58:51 +02001468 clear_nlink(new_inode);
1469 else
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001470 drop_nlink(new_inode);
1471 new_inode->i_ctime = time;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001472 } else {
1473 new_dir->i_size += new_sz;
1474 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1475 }
1476
1477 /*
1478 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1479 * is dirty, because this will be done later on at the end of
1480 * 'ubifs_rename()'.
1481 */
1482 if (IS_SYNC(old_inode)) {
1483 sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1484 if (unlink && IS_SYNC(new_inode))
1485 sync = 1;
1486 }
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001487
1488 if (whiteout) {
1489 struct ubifs_budget_req wht_req = { .dirtied_ino = 1,
1490 .dirtied_ino_d = \
1491 ALIGN(ubifs_inode(whiteout)->data_len, 8) };
1492
1493 err = ubifs_budget_space(c, &wht_req);
1494 if (err) {
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001495 kfree(whiteout_ui->data);
1496 whiteout_ui->data_len = 0;
1497 iput(whiteout);
Hyunchul Leebb50c632017-05-17 08:58:02 +09001498 goto out_release;
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001499 }
1500
1501 inc_nlink(whiteout);
1502 mark_inode_dirty(whiteout);
1503 whiteout->i_state &= ~I_LINKABLE;
1504 iput(whiteout);
1505 }
1506
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001507 err = ubifs_jnl_rename(c, old_dir, old_inode, &old_nm, new_dir,
1508 new_inode, &new_nm, whiteout, sync);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001509 if (err)
1510 goto out_cancel;
1511
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001512 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001513 ubifs_release_budget(c, &req);
1514
1515 mutex_lock(&old_inode_ui->ui_mutex);
1516 release = old_inode_ui->dirty;
1517 mark_inode_dirty_sync(old_inode);
1518 mutex_unlock(&old_inode_ui->ui_mutex);
1519
1520 if (release)
1521 ubifs_release_budget(c, &ino_req);
1522 if (IS_SYNC(old_inode))
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001523 err = old_inode->i_sb->s_op->write_inode(old_inode, NULL);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001524
1525 fscrypt_free_filename(&old_nm);
1526 fscrypt_free_filename(&new_nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001527 return err;
1528
1529out_cancel:
1530 if (unlink) {
Artem Bityutskiyc43be102012-02-07 10:58:51 +02001531 set_nlink(new_inode, saved_nlink);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001532 } else {
1533 new_dir->i_size -= new_sz;
1534 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1535 }
1536 old_dir->i_size += old_sz;
1537 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1538 if (is_dir) {
1539 if (move) {
1540 inc_nlink(old_dir);
1541 if (!unlink)
1542 drop_nlink(new_dir);
1543 } else {
1544 if (unlink)
1545 inc_nlink(old_dir);
1546 }
1547 }
Richard Weinberger9e0a1ff2016-09-14 22:28:50 +02001548 if (whiteout) {
1549 drop_nlink(whiteout);
1550 iput(whiteout);
1551 }
1552 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
Hyunchul Leebb50c632017-05-17 08:58:02 +09001553out_release:
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001554 ubifs_release_budget(c, &ino_req);
1555 ubifs_release_budget(c, &req);
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001556 fscrypt_free_filename(&old_nm);
1557 fscrypt_free_filename(&new_nm);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001558 return err;
1559}
1560
Richard Weinberger9ec64962016-09-14 22:28:51 +02001561static int ubifs_xrename(struct inode *old_dir, struct dentry *old_dentry,
1562 struct inode *new_dir, struct dentry *new_dentry)
1563{
1564 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1565 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1566 .dirtied_ino = 2 };
1567 int sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1568 struct inode *fst_inode = d_inode(old_dentry);
1569 struct inode *snd_inode = d_inode(new_dentry);
1570 struct timespec time;
1571 int err;
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001572 struct fscrypt_name fst_nm, snd_nm;
Richard Weinberger9ec64962016-09-14 22:28:51 +02001573
1574 ubifs_assert(fst_inode && snd_inode);
1575
Richard Weinbergerac7e47a2016-09-29 20:00:38 +02001576 if ((ubifs_crypt_is_encrypted(old_dir) ||
1577 ubifs_crypt_is_encrypted(new_dir)) &&
1578 (old_dir != new_dir) &&
1579 (!fscrypt_has_permitted_context(new_dir, fst_inode) ||
1580 !fscrypt_has_permitted_context(old_dir, snd_inode)))
1581 return -EPERM;
1582
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001583 err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &fst_nm);
1584 if (err)
1585 return err;
1586
1587 err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &snd_nm);
1588 if (err) {
1589 fscrypt_free_filename(&fst_nm);
1590 return err;
1591 }
1592
Richard Weinberger9ec64962016-09-14 22:28:51 +02001593 lock_4_inodes(old_dir, new_dir, NULL, NULL);
1594
Deepa Dinamani607a11a2017-05-08 15:59:25 -07001595 time = current_time(old_dir);
Richard Weinberger9ec64962016-09-14 22:28:51 +02001596 fst_inode->i_ctime = time;
1597 snd_inode->i_ctime = time;
1598 old_dir->i_mtime = old_dir->i_ctime = time;
1599 new_dir->i_mtime = new_dir->i_ctime = time;
1600
1601 if (old_dir != new_dir) {
1602 if (S_ISDIR(fst_inode->i_mode) && !S_ISDIR(snd_inode->i_mode)) {
1603 inc_nlink(new_dir);
1604 drop_nlink(old_dir);
1605 }
1606 else if (!S_ISDIR(fst_inode->i_mode) && S_ISDIR(snd_inode->i_mode)) {
1607 drop_nlink(new_dir);
1608 inc_nlink(old_dir);
1609 }
1610 }
1611
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001612 err = ubifs_jnl_xrename(c, old_dir, fst_inode, &fst_nm, new_dir,
1613 snd_inode, &snd_nm, sync);
Richard Weinberger9ec64962016-09-14 22:28:51 +02001614
1615 unlock_4_inodes(old_dir, new_dir, NULL, NULL);
1616 ubifs_release_budget(c, &req);
1617
Richard Weinbergerf4f61d22016-11-11 22:50:29 +01001618 fscrypt_free_filename(&fst_nm);
1619 fscrypt_free_filename(&snd_nm);
Richard Weinberger9ec64962016-09-14 22:28:51 +02001620 return err;
1621}
1622
Richard Weinberger390975a2016-10-18 21:21:43 +02001623static int ubifs_rename(struct inode *old_dir, struct dentry *old_dentry,
Richard Weinberger9ec64962016-09-14 22:28:51 +02001624 struct inode *new_dir, struct dentry *new_dentry,
1625 unsigned int flags)
1626{
1627 if (flags & ~(RENAME_NOREPLACE | RENAME_WHITEOUT | RENAME_EXCHANGE))
1628 return -EINVAL;
1629
1630 ubifs_assert(inode_is_locked(old_dir));
1631 ubifs_assert(inode_is_locked(new_dir));
1632
1633 if (flags & RENAME_EXCHANGE)
1634 return ubifs_xrename(old_dir, old_dentry, new_dir, new_dentry);
1635
Richard Weinberger390975a2016-10-18 21:21:43 +02001636 return do_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Richard Weinberger9ec64962016-09-14 22:28:51 +02001637}
1638
David Howellsa528d352017-01-31 16:46:22 +00001639int ubifs_getattr(const struct path *path, struct kstat *stat,
1640 u32 request_mask, unsigned int flags)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001641{
1642 loff_t size;
David Howellsa528d352017-01-31 16:46:22 +00001643 struct inode *inode = d_inode(path->dentry);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001644 struct ubifs_inode *ui = ubifs_inode(inode);
1645
1646 mutex_lock(&ui->ui_mutex);
Richard Weinbergera02a6eb2017-05-21 00:16:26 +02001647
1648 if (ui->flags & UBIFS_APPEND_FL)
1649 stat->attributes |= STATX_ATTR_APPEND;
1650 if (ui->flags & UBIFS_COMPR_FL)
1651 stat->attributes |= STATX_ATTR_COMPRESSED;
1652 if (ui->flags & UBIFS_CRYPT_FL)
1653 stat->attributes |= STATX_ATTR_ENCRYPTED;
1654 if (ui->flags & UBIFS_IMMUTABLE_FL)
1655 stat->attributes |= STATX_ATTR_IMMUTABLE;
1656
1657 stat->attributes_mask |= (STATX_ATTR_APPEND |
1658 STATX_ATTR_COMPRESSED |
1659 STATX_ATTR_ENCRYPTED |
1660 STATX_ATTR_IMMUTABLE);
1661
Al Viro6d42e7e2012-04-02 14:25:07 -04001662 generic_fillattr(inode, stat);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001663 stat->blksize = UBIFS_BLOCK_SIZE;
1664 stat->size = ui->ui_size;
1665
1666 /*
1667 * Unfortunately, the 'stat()' system call was designed for block
1668 * device based file systems, and it is not appropriate for UBIFS,
1669 * because UBIFS does not have notion of "block". For example, it is
1670 * difficult to tell how many block a directory takes - it actually
1671 * takes less than 300 bytes, but we have to round it to block size,
1672 * which introduces large mistake. This makes utilities like 'du' to
1673 * report completely senseless numbers. This is the reason why UBIFS
1674 * goes the same way as JFFS2 - it reports zero blocks for everything
1675 * but regular files, which makes more sense than reporting completely
1676 * wrong sizes.
1677 */
1678 if (S_ISREG(inode->i_mode)) {
1679 size = ui->xattr_size;
1680 size += stat->size;
1681 size = ALIGN(size, UBIFS_BLOCK_SIZE);
1682 /*
1683 * Note, user-space expects 512-byte blocks count irrespectively
1684 * of what was reported in @stat->size.
1685 */
1686 stat->blocks = size >> 9;
1687 } else
1688 stat->blocks = 0;
1689 mutex_unlock(&ui->ui_mutex);
1690 return 0;
1691}
1692
Richard Weinbergerba40e6a2016-09-29 17:20:27 +02001693static int ubifs_dir_open(struct inode *dir, struct file *file)
1694{
1695 if (ubifs_crypt_is_encrypted(dir))
1696 return fscrypt_get_encryption_info(dir) ? -EACCES : 0;
1697
1698 return 0;
1699}
1700
Artem Bityutskiye8b81562009-01-15 17:43:23 +02001701const struct inode_operations ubifs_dir_inode_operations = {
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001702 .lookup = ubifs_lookup,
1703 .create = ubifs_create,
1704 .link = ubifs_link,
1705 .symlink = ubifs_symlink,
1706 .unlink = ubifs_unlink,
1707 .mkdir = ubifs_mkdir,
1708 .rmdir = ubifs_rmdir,
1709 .mknod = ubifs_mknod,
Richard Weinberger390975a2016-10-18 21:21:43 +02001710 .rename = ubifs_rename,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001711 .setattr = ubifs_setattr,
1712 .getattr = ubifs_getattr,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001713 .listxattr = ubifs_listxattr,
Dongsheng Yang8c1c5f22015-11-07 12:46:11 +08001714#ifdef CONFIG_UBIFS_ATIME_SUPPORT
1715 .update_time = ubifs_update_time,
1716#endif
Richard Weinberger474b9372016-09-14 22:28:49 +02001717 .tmpfile = ubifs_tmpfile,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001718};
1719
Artem Bityutskiye8b81562009-01-15 17:43:23 +02001720const struct file_operations ubifs_dir_operations = {
Al Viro01122e02013-05-16 01:14:46 -04001721 .llseek = generic_file_llseek,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001722 .release = ubifs_dir_release,
1723 .read = generic_read_dir,
Al Viroc51da202016-04-30 22:37:34 -04001724 .iterate_shared = ubifs_readdir,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001725 .fsync = ubifs_fsync,
1726 .unlocked_ioctl = ubifs_ioctl,
Richard Weinbergerba40e6a2016-09-29 17:20:27 +02001727 .open = ubifs_dir_open,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001728#ifdef CONFIG_COMPAT
1729 .compat_ioctl = ubifs_compat_ioctl,
1730#endif
1731};