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