Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1 | /* * 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 Viro | ad44be5 | 2011-07-26 03:12:59 -0400 | [diff] [blame] | 59 | static int inherit_flags(const struct inode *dir, umode_t mode) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 60 | { |
| 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 | */ |
| 88 | struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir, |
Al Viro | ad44be5 | 2011-07-26 03:12:59 -0400 | [diff] [blame] | 89 | umode_t mode) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 90 | { |
| 91 | struct inode *inode; |
| 92 | struct ubifs_inode *ui; |
| 93 | |
| 94 | inode = new_inode(c->vfs_sb); |
| 95 | ui = ubifs_inode(inode); |
| 96 | if (!inode) |
| 97 | return ERR_PTR(-ENOMEM); |
| 98 | |
| 99 | /* |
| 100 | * Set 'S_NOCMTIME' to prevent VFS form updating [mc]time of inodes and |
| 101 | * marking them dirty in file write path (see 'file_update_time()'). |
| 102 | * UBIFS has to fully control "clean <-> dirty" transitions of inodes |
| 103 | * to make budgeting work. |
| 104 | */ |
Artem Bityutskiy | 12e776a | 2011-05-27 15:50:39 +0300 | [diff] [blame] | 105 | inode->i_flags |= S_NOCMTIME; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 106 | |
Dmitry Monakhov | abf5d08 | 2010-03-04 17:32:21 +0300 | [diff] [blame] | 107 | inode_init_owner(inode, dir, mode); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 108 | inode->i_mtime = inode->i_atime = inode->i_ctime = |
| 109 | ubifs_current_time(inode); |
| 110 | inode->i_mapping->nrpages = 0; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 111 | |
| 112 | switch (mode & S_IFMT) { |
| 113 | case S_IFREG: |
| 114 | inode->i_mapping->a_ops = &ubifs_file_address_operations; |
| 115 | inode->i_op = &ubifs_file_inode_operations; |
| 116 | inode->i_fop = &ubifs_file_operations; |
| 117 | break; |
| 118 | case S_IFDIR: |
| 119 | inode->i_op = &ubifs_dir_inode_operations; |
| 120 | inode->i_fop = &ubifs_dir_operations; |
| 121 | inode->i_size = ui->ui_size = UBIFS_INO_NODE_SZ; |
| 122 | break; |
| 123 | case S_IFLNK: |
| 124 | inode->i_op = &ubifs_symlink_inode_operations; |
| 125 | break; |
| 126 | case S_IFSOCK: |
| 127 | case S_IFIFO: |
| 128 | case S_IFBLK: |
| 129 | case S_IFCHR: |
| 130 | inode->i_op = &ubifs_file_inode_operations; |
| 131 | break; |
| 132 | default: |
| 133 | BUG(); |
| 134 | } |
| 135 | |
| 136 | ui->flags = inherit_flags(dir, mode); |
| 137 | ubifs_set_inode_flags(inode); |
| 138 | if (S_ISREG(mode)) |
| 139 | ui->compr_type = c->default_compr; |
| 140 | else |
| 141 | ui->compr_type = UBIFS_COMPR_NONE; |
| 142 | ui->synced_i_size = 0; |
| 143 | |
| 144 | spin_lock(&c->cnt_lock); |
| 145 | /* Inode number overflow is currently not supported */ |
| 146 | if (c->highest_inum >= INUM_WARN_WATERMARK) { |
| 147 | if (c->highest_inum >= INUM_WATERMARK) { |
| 148 | spin_unlock(&c->cnt_lock); |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 149 | ubifs_err(c, "out of inode numbers"); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 150 | make_bad_inode(inode); |
| 151 | iput(inode); |
| 152 | return ERR_PTR(-EINVAL); |
| 153 | } |
Sheng Yong | 1a7e985d | 2015-04-03 03:13:42 +0000 | [diff] [blame] | 154 | ubifs_warn(c, "running out of inode numbers (current %lu, max %u)", |
Artem Bityutskiy | e84461a | 2008-10-29 12:08:43 +0200 | [diff] [blame] | 155 | (unsigned long)c->highest_inum, INUM_WATERMARK); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | inode->i_ino = ++c->highest_inum; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 159 | /* |
| 160 | * The creation sequence number remains with this inode for its |
| 161 | * lifetime. All nodes for this inode have a greater sequence number, |
| 162 | * and so it is possible to distinguish obsolete nodes belonging to a |
| 163 | * previous incarnation of the same inode number - for example, for the |
| 164 | * purpose of rebuilding the index. |
| 165 | */ |
| 166 | ui->creat_sqnum = ++c->max_sqnum; |
| 167 | spin_unlock(&c->cnt_lock); |
| 168 | return inode; |
| 169 | } |
| 170 | |
Artem Bityutskiy | bb2615d | 2011-05-31 17:47:53 +0300 | [diff] [blame] | 171 | static int dbg_check_name(const struct ubifs_info *c, |
| 172 | const struct ubifs_dent_node *dent, |
| 173 | const struct qstr *nm) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 174 | { |
Artem Bityutskiy | 2b1844a | 2011-06-03 08:31:29 +0300 | [diff] [blame] | 175 | if (!dbg_is_chk_gen(c)) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 176 | return 0; |
| 177 | if (le16_to_cpu(dent->nlen) != nm->len) |
| 178 | return -EINVAL; |
| 179 | if (memcmp(dent->name, nm->name, nm->len)) |
| 180 | return -EINVAL; |
| 181 | return 0; |
| 182 | } |
| 183 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 184 | static struct dentry *ubifs_lookup(struct inode *dir, struct dentry *dentry, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 185 | unsigned int flags) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 186 | { |
| 187 | int err; |
| 188 | union ubifs_key key; |
| 189 | struct inode *inode = NULL; |
| 190 | struct ubifs_dent_node *dent; |
| 191 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
| 192 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 193 | dbg_gen("'%pd' in dir ino %lu", dentry, dir->i_ino); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 194 | |
| 195 | if (dentry->d_name.len > UBIFS_MAX_NLEN) |
| 196 | return ERR_PTR(-ENAMETOOLONG); |
| 197 | |
| 198 | dent = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS); |
| 199 | if (!dent) |
| 200 | return ERR_PTR(-ENOMEM); |
| 201 | |
| 202 | dent_key_init(c, &key, dir->i_ino, &dentry->d_name); |
| 203 | |
| 204 | err = ubifs_tnc_lookup_nm(c, &key, dent, &dentry->d_name); |
| 205 | if (err) { |
Artem Bityutskiy | 720b499 | 2008-08-13 16:16:31 +0300 | [diff] [blame] | 206 | if (err == -ENOENT) { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 207 | dbg_gen("not found"); |
| 208 | goto done; |
| 209 | } |
| 210 | goto out; |
| 211 | } |
| 212 | |
Artem Bityutskiy | bb2615d | 2011-05-31 17:47:53 +0300 | [diff] [blame] | 213 | if (dbg_check_name(c, dent, &dentry->d_name)) { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 214 | err = -EINVAL; |
| 215 | goto out; |
| 216 | } |
| 217 | |
| 218 | inode = ubifs_iget(dir->i_sb, le64_to_cpu(dent->inum)); |
| 219 | if (IS_ERR(inode)) { |
| 220 | /* |
| 221 | * This should not happen. Probably the file-system needs |
| 222 | * checking. |
| 223 | */ |
| 224 | err = PTR_ERR(inode); |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 225 | ubifs_err(c, "dead directory entry '%pd', error %d", |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 226 | dentry, err); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 227 | ubifs_ro_mode(c, err); |
| 228 | goto out; |
| 229 | } |
| 230 | |
| 231 | done: |
| 232 | kfree(dent); |
| 233 | /* |
| 234 | * Note, d_splice_alias() would be required instead if we supported |
| 235 | * NFS. |
| 236 | */ |
| 237 | d_add(dentry, inode); |
| 238 | return NULL; |
| 239 | |
| 240 | out: |
| 241 | kfree(dent); |
| 242 | return ERR_PTR(err); |
| 243 | } |
| 244 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 245 | static int ubifs_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 246 | bool excl) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 247 | { |
| 248 | struct inode *inode; |
| 249 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
| 250 | int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len); |
| 251 | struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1, |
| 252 | .dirtied_ino = 1 }; |
| 253 | struct ubifs_inode *dir_ui = ubifs_inode(dir); |
| 254 | |
| 255 | /* |
| 256 | * Budget request settings: new inode, new direntry, changing the |
| 257 | * parent directory inode. |
| 258 | */ |
| 259 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 260 | dbg_gen("dent '%pd', mode %#hx in dir ino %lu", |
| 261 | dentry, mode, dir->i_ino); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 262 | |
| 263 | err = ubifs_budget_space(c, &req); |
| 264 | if (err) |
| 265 | return err; |
| 266 | |
| 267 | inode = ubifs_new_inode(c, dir, mode); |
| 268 | if (IS_ERR(inode)) { |
| 269 | err = PTR_ERR(inode); |
| 270 | goto out_budg; |
| 271 | } |
| 272 | |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 273 | err = ubifs_init_security(dir, inode, &dentry->d_name); |
| 274 | if (err) |
Taesoo Kim | 9401a79 | 2015-03-25 09:53:37 +0100 | [diff] [blame] | 275 | goto out_inode; |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 276 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 277 | mutex_lock(&dir_ui->ui_mutex); |
| 278 | dir->i_size += sz_change; |
| 279 | dir_ui->ui_size = dir->i_size; |
| 280 | dir->i_mtime = dir->i_ctime = inode->i_ctime; |
| 281 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0); |
| 282 | if (err) |
| 283 | goto out_cancel; |
| 284 | mutex_unlock(&dir_ui->ui_mutex); |
| 285 | |
| 286 | ubifs_release_budget(c, &req); |
| 287 | insert_inode_hash(inode); |
| 288 | d_instantiate(dentry, inode); |
| 289 | return 0; |
| 290 | |
| 291 | out_cancel: |
| 292 | dir->i_size -= sz_change; |
| 293 | dir_ui->ui_size = dir->i_size; |
| 294 | mutex_unlock(&dir_ui->ui_mutex); |
Taesoo Kim | 9401a79 | 2015-03-25 09:53:37 +0100 | [diff] [blame] | 295 | out_inode: |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 296 | make_bad_inode(inode); |
| 297 | iput(inode); |
| 298 | out_budg: |
| 299 | ubifs_release_budget(c, &req); |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 300 | ubifs_err(c, "cannot create regular file, error %d", err); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 301 | return err; |
| 302 | } |
| 303 | |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 304 | static int do_tmpfile(struct inode *dir, struct dentry *dentry, |
| 305 | umode_t mode, struct inode **whiteout) |
Richard Weinberger | 474b937 | 2016-09-14 22:28:49 +0200 | [diff] [blame] | 306 | { |
| 307 | struct inode *inode; |
| 308 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
| 309 | struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1}; |
| 310 | struct ubifs_budget_req ino_req = { .dirtied_ino = 1 }; |
| 311 | struct ubifs_inode *ui, *dir_ui = ubifs_inode(dir); |
| 312 | int err, instantiated = 0; |
| 313 | |
| 314 | /* |
| 315 | * Budget request settings: new dirty inode, new direntry, |
| 316 | * budget for dirtied inode will be released via writeback. |
| 317 | */ |
| 318 | |
| 319 | dbg_gen("dent '%pd', mode %#hx in dir ino %lu", |
| 320 | dentry, mode, dir->i_ino); |
| 321 | |
| 322 | err = ubifs_budget_space(c, &req); |
| 323 | if (err) |
| 324 | return err; |
| 325 | |
| 326 | err = ubifs_budget_space(c, &ino_req); |
| 327 | if (err) { |
| 328 | ubifs_release_budget(c, &req); |
| 329 | return err; |
| 330 | } |
| 331 | |
| 332 | inode = ubifs_new_inode(c, dir, mode); |
| 333 | if (IS_ERR(inode)) { |
| 334 | err = PTR_ERR(inode); |
| 335 | goto out_budg; |
| 336 | } |
| 337 | ui = ubifs_inode(inode); |
| 338 | |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 339 | if (whiteout) { |
| 340 | init_special_inode(inode, inode->i_mode, WHITEOUT_DEV); |
| 341 | ubifs_assert(inode->i_op == &ubifs_file_inode_operations); |
| 342 | } |
| 343 | |
Richard Weinberger | 474b937 | 2016-09-14 22:28:49 +0200 | [diff] [blame] | 344 | err = ubifs_init_security(dir, inode, &dentry->d_name); |
| 345 | if (err) |
| 346 | goto out_inode; |
| 347 | |
| 348 | mutex_lock(&ui->ui_mutex); |
| 349 | insert_inode_hash(inode); |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 350 | |
| 351 | if (whiteout) { |
| 352 | mark_inode_dirty(inode); |
| 353 | drop_nlink(inode); |
| 354 | *whiteout = inode; |
| 355 | } else { |
| 356 | d_tmpfile(dentry, inode); |
| 357 | } |
Richard Weinberger | 474b937 | 2016-09-14 22:28:49 +0200 | [diff] [blame] | 358 | ubifs_assert(ui->dirty); |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 359 | |
Richard Weinberger | 474b937 | 2016-09-14 22:28:49 +0200 | [diff] [blame] | 360 | instantiated = 1; |
| 361 | mutex_unlock(&ui->ui_mutex); |
| 362 | |
| 363 | mutex_lock(&dir_ui->ui_mutex); |
| 364 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 1, 0); |
| 365 | if (err) |
| 366 | goto out_cancel; |
| 367 | mutex_unlock(&dir_ui->ui_mutex); |
| 368 | |
| 369 | ubifs_release_budget(c, &req); |
| 370 | |
| 371 | return 0; |
| 372 | |
| 373 | out_cancel: |
| 374 | mutex_unlock(&dir_ui->ui_mutex); |
| 375 | out_inode: |
| 376 | make_bad_inode(inode); |
| 377 | if (!instantiated) |
| 378 | iput(inode); |
| 379 | out_budg: |
| 380 | ubifs_release_budget(c, &req); |
| 381 | if (!instantiated) |
| 382 | ubifs_release_budget(c, &ino_req); |
| 383 | ubifs_err(c, "cannot create temporary file, error %d", err); |
| 384 | return err; |
| 385 | } |
| 386 | |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 387 | static int ubifs_tmpfile(struct inode *dir, struct dentry *dentry, |
| 388 | umode_t mode) |
| 389 | { |
| 390 | return do_tmpfile(dir, dentry, mode, NULL); |
| 391 | } |
| 392 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 393 | /** |
| 394 | * vfs_dent_type - get VFS directory entry type. |
| 395 | * @type: UBIFS directory entry type |
| 396 | * |
| 397 | * This function converts UBIFS directory entry type into VFS directory entry |
| 398 | * type. |
| 399 | */ |
| 400 | static unsigned int vfs_dent_type(uint8_t type) |
| 401 | { |
| 402 | switch (type) { |
| 403 | case UBIFS_ITYPE_REG: |
| 404 | return DT_REG; |
| 405 | case UBIFS_ITYPE_DIR: |
| 406 | return DT_DIR; |
| 407 | case UBIFS_ITYPE_LNK: |
| 408 | return DT_LNK; |
| 409 | case UBIFS_ITYPE_BLK: |
| 410 | return DT_BLK; |
| 411 | case UBIFS_ITYPE_CHR: |
| 412 | return DT_CHR; |
| 413 | case UBIFS_ITYPE_FIFO: |
| 414 | return DT_FIFO; |
| 415 | case UBIFS_ITYPE_SOCK: |
| 416 | return DT_SOCK; |
| 417 | default: |
| 418 | BUG(); |
| 419 | } |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | /* |
| 424 | * The classical Unix view for directory is that it is a linear array of |
| 425 | * (name, inode number) entries. Linux/VFS assumes this model as well. |
| 426 | * Particularly, 'readdir()' call wants us to return a directory entry offset |
| 427 | * which later may be used to continue 'readdir()'ing the directory or to |
| 428 | * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this |
| 429 | * model because directory entries are identified by keys, which may collide. |
| 430 | * |
| 431 | * UBIFS uses directory entry hash value for directory offsets, so |
| 432 | * 'seekdir()'/'telldir()' may not always work because of possible key |
| 433 | * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work |
| 434 | * properly by means of saving full directory entry name in the private field |
| 435 | * of the file description object. |
| 436 | * |
| 437 | * This means that UBIFS cannot support NFS which requires full |
| 438 | * 'seekdir()'/'telldir()' support. |
| 439 | */ |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 440 | static int ubifs_readdir(struct file *file, struct dir_context *ctx) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 441 | { |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 442 | int err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 443 | struct qstr nm; |
| 444 | union ubifs_key key; |
| 445 | struct ubifs_dent_node *dent; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 446 | struct inode *dir = file_inode(file); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 447 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
| 448 | |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 449 | dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, ctx->pos); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 450 | |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 451 | if (ctx->pos > UBIFS_S_KEY_HASH_MASK || ctx->pos == 2) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 452 | /* |
| 453 | * The directory was seek'ed to a senseless position or there |
| 454 | * are no more entries. |
| 455 | */ |
| 456 | return 0; |
| 457 | |
Artem Bityutskiy | 605c912 | 2013-06-28 14:15:15 +0300 | [diff] [blame] | 458 | if (file->f_version == 0) { |
| 459 | /* |
| 460 | * The file was seek'ed, which means that @file->private_data |
| 461 | * is now invalid. This may also be just the first |
| 462 | * 'ubifs_readdir()' invocation, in which case |
| 463 | * @file->private_data is NULL, and the below code is |
| 464 | * basically a no-op. |
| 465 | */ |
| 466 | kfree(file->private_data); |
| 467 | file->private_data = NULL; |
| 468 | } |
| 469 | |
| 470 | /* |
| 471 | * 'generic_file_llseek()' unconditionally sets @file->f_version to |
| 472 | * zero, and we use this for detecting whether the file was seek'ed. |
| 473 | */ |
| 474 | file->f_version = 1; |
| 475 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 476 | /* File positions 0 and 1 correspond to "." and ".." */ |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 477 | if (ctx->pos < 2) { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 478 | ubifs_assert(!file->private_data); |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 479 | if (!dir_emit_dots(file, ctx)) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 480 | return 0; |
| 481 | |
| 482 | /* Find the first entry in TNC and save it */ |
| 483 | lowest_dent_key(c, &key, dir->i_ino); |
| 484 | nm.name = NULL; |
| 485 | dent = ubifs_tnc_next_ent(c, &key, &nm); |
| 486 | if (IS_ERR(dent)) { |
| 487 | err = PTR_ERR(dent); |
| 488 | goto out; |
| 489 | } |
| 490 | |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 491 | ctx->pos = key_hash_flash(c, &dent->key); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 492 | file->private_data = dent; |
| 493 | } |
| 494 | |
| 495 | dent = file->private_data; |
| 496 | if (!dent) { |
| 497 | /* |
| 498 | * The directory was seek'ed to and is now readdir'ed. |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 499 | * Find the entry corresponding to @ctx->pos or the closest one. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 500 | */ |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 501 | dent_key_init_hash(c, &key, dir->i_ino, ctx->pos); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 502 | nm.name = NULL; |
| 503 | dent = ubifs_tnc_next_ent(c, &key, &nm); |
| 504 | if (IS_ERR(dent)) { |
| 505 | err = PTR_ERR(dent); |
| 506 | goto out; |
| 507 | } |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 508 | ctx->pos = key_hash_flash(c, &dent->key); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 509 | file->private_data = dent; |
| 510 | } |
| 511 | |
| 512 | while (1) { |
| 513 | dbg_gen("feed '%s', ino %llu, new f_pos %#x", |
Alexander Beregalov | 7424bac | 2008-09-17 22:09:41 +0400 | [diff] [blame] | 514 | dent->name, (unsigned long long)le64_to_cpu(dent->inum), |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 515 | key_hash_flash(c, &dent->key)); |
Harvey Harrison | 0ecb952 | 2008-10-24 10:52:57 -0700 | [diff] [blame] | 516 | ubifs_assert(le64_to_cpu(dent->ch.sqnum) > |
| 517 | ubifs_inode(dir)->creat_sqnum); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 518 | |
| 519 | nm.len = le16_to_cpu(dent->nlen); |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 520 | if (!dir_emit(ctx, dent->name, nm.len, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 521 | le64_to_cpu(dent->inum), |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 522 | vfs_dent_type(dent->type))) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 523 | return 0; |
| 524 | |
| 525 | /* Switch to the next entry */ |
| 526 | key_read(c, &dent->key, &key); |
| 527 | nm.name = dent->name; |
| 528 | dent = ubifs_tnc_next_ent(c, &key, &nm); |
| 529 | if (IS_ERR(dent)) { |
| 530 | err = PTR_ERR(dent); |
| 531 | goto out; |
| 532 | } |
| 533 | |
| 534 | kfree(file->private_data); |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 535 | ctx->pos = key_hash_flash(c, &dent->key); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 536 | file->private_data = dent; |
| 537 | cond_resched(); |
| 538 | } |
| 539 | |
| 540 | out: |
Richard Weinberger | aeeb14f | 2015-10-12 23:35:36 +0200 | [diff] [blame] | 541 | kfree(file->private_data); |
| 542 | file->private_data = NULL; |
| 543 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 544 | if (err != -ENOENT) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 545 | ubifs_err(c, "cannot find next direntry, error %d", err); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 546 | return err; |
| 547 | } |
| 548 | |
Artem Bityutskiy | 605c912 | 2013-06-28 14:15:15 +0300 | [diff] [blame] | 549 | /* 2 is a special value indicating that there are no more direntries */ |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 550 | ctx->pos = 2; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 551 | return 0; |
| 552 | } |
| 553 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 554 | /* Free saved readdir() state when the directory is closed */ |
| 555 | static int ubifs_dir_release(struct inode *dir, struct file *file) |
| 556 | { |
| 557 | kfree(file->private_data); |
| 558 | file->private_data = NULL; |
| 559 | return 0; |
| 560 | } |
| 561 | |
| 562 | /** |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 563 | * lock_2_inodes - a wrapper for locking two UBIFS inodes. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 564 | * @inode1: first inode |
| 565 | * @inode2: second inode |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 566 | * |
| 567 | * We do not implement any tricks to guarantee strict lock ordering, because |
| 568 | * VFS has already done it for us on the @i_mutex. So this is just a simple |
| 569 | * wrapper function. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 570 | */ |
| 571 | static void lock_2_inodes(struct inode *inode1, struct inode *inode2) |
| 572 | { |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 573 | mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1); |
| 574 | mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | /** |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 578 | * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 579 | * @inode1: first inode |
| 580 | * @inode2: second inode |
| 581 | */ |
| 582 | static void unlock_2_inodes(struct inode *inode1, struct inode *inode2) |
| 583 | { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 584 | mutex_unlock(&ubifs_inode(inode2)->ui_mutex); |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 585 | mutex_unlock(&ubifs_inode(inode1)->ui_mutex); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | static int ubifs_link(struct dentry *old_dentry, struct inode *dir, |
| 589 | struct dentry *dentry) |
| 590 | { |
| 591 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 592 | struct inode *inode = d_inode(old_dentry); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 593 | struct ubifs_inode *ui = ubifs_inode(inode); |
| 594 | struct ubifs_inode *dir_ui = ubifs_inode(dir); |
| 595 | int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len); |
| 596 | struct ubifs_budget_req req = { .new_dent = 1, .dirtied_ino = 2, |
Artem Bityutskiy | dab4b4d | 2008-07-24 14:52:45 +0300 | [diff] [blame] | 597 | .dirtied_ino_d = ALIGN(ui->data_len, 8) }; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 598 | |
| 599 | /* |
| 600 | * Budget request settings: new direntry, changing the target inode, |
| 601 | * changing the parent inode. |
| 602 | */ |
| 603 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 604 | dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu", |
| 605 | dentry, inode->i_ino, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 606 | inode->i_nlink, dir->i_ino); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 607 | ubifs_assert(inode_is_locked(dir)); |
| 608 | ubifs_assert(inode_is_locked(inode)); |
Hunter Adrian | 8b3884a | 2009-05-14 06:32:30 +0200 | [diff] [blame] | 609 | |
Artem Bityutskiy | d808efb | 2011-05-31 18:14:38 +0300 | [diff] [blame] | 610 | err = dbg_check_synced_i_size(c, inode); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 611 | if (err) |
| 612 | return err; |
| 613 | |
| 614 | err = ubifs_budget_space(c, &req); |
| 615 | if (err) |
| 616 | return err; |
| 617 | |
| 618 | lock_2_inodes(dir, inode); |
| 619 | inc_nlink(inode); |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 620 | ihold(inode); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 621 | inode->i_ctime = ubifs_current_time(inode); |
| 622 | dir->i_size += sz_change; |
| 623 | dir_ui->ui_size = dir->i_size; |
| 624 | dir->i_mtime = dir->i_ctime = inode->i_ctime; |
| 625 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0); |
| 626 | if (err) |
| 627 | goto out_cancel; |
| 628 | unlock_2_inodes(dir, inode); |
| 629 | |
| 630 | ubifs_release_budget(c, &req); |
| 631 | d_instantiate(dentry, inode); |
| 632 | return 0; |
| 633 | |
| 634 | out_cancel: |
| 635 | dir->i_size -= sz_change; |
| 636 | dir_ui->ui_size = dir->i_size; |
| 637 | drop_nlink(inode); |
| 638 | unlock_2_inodes(dir, inode); |
| 639 | ubifs_release_budget(c, &req); |
| 640 | iput(inode); |
| 641 | return err; |
| 642 | } |
| 643 | |
| 644 | static int ubifs_unlink(struct inode *dir, struct dentry *dentry) |
| 645 | { |
| 646 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 647 | struct inode *inode = d_inode(dentry); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 648 | struct ubifs_inode *dir_ui = ubifs_inode(dir); |
| 649 | int sz_change = CALC_DENT_SIZE(dentry->d_name.len); |
| 650 | int err, budgeted = 1; |
| 651 | struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 }; |
Artem Bityutskiy | c43be10 | 2012-02-07 10:58:51 +0200 | [diff] [blame] | 652 | unsigned int saved_nlink = inode->i_nlink; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 653 | |
| 654 | /* |
| 655 | * Budget request settings: deletion direntry, deletion inode (+1 for |
| 656 | * @dirtied_ino), changing the parent directory inode. If budgeting |
| 657 | * fails, go ahead anyway because we have extra space reserved for |
| 658 | * deletions. |
| 659 | */ |
| 660 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 661 | dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu", |
| 662 | dentry, inode->i_ino, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 663 | inode->i_nlink, dir->i_ino); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 664 | ubifs_assert(inode_is_locked(dir)); |
| 665 | ubifs_assert(inode_is_locked(inode)); |
Artem Bityutskiy | d808efb | 2011-05-31 18:14:38 +0300 | [diff] [blame] | 666 | err = dbg_check_synced_i_size(c, inode); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 667 | if (err) |
| 668 | return err; |
| 669 | |
| 670 | err = ubifs_budget_space(c, &req); |
| 671 | if (err) { |
| 672 | if (err != -ENOSPC) |
| 673 | return err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 674 | budgeted = 0; |
| 675 | } |
| 676 | |
| 677 | lock_2_inodes(dir, inode); |
| 678 | inode->i_ctime = ubifs_current_time(dir); |
| 679 | drop_nlink(inode); |
| 680 | dir->i_size -= sz_change; |
| 681 | dir_ui->ui_size = dir->i_size; |
| 682 | dir->i_mtime = dir->i_ctime = inode->i_ctime; |
| 683 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 1, 0); |
| 684 | if (err) |
| 685 | goto out_cancel; |
| 686 | unlock_2_inodes(dir, inode); |
| 687 | |
| 688 | if (budgeted) |
| 689 | ubifs_release_budget(c, &req); |
| 690 | else { |
| 691 | /* We've deleted something - clean the "no space" flags */ |
Artem Bityutskiy | b137545 | 2011-03-29 18:04:05 +0300 | [diff] [blame] | 692 | c->bi.nospace = c->bi.nospace_rp = 0; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 693 | smp_wmb(); |
| 694 | } |
| 695 | return 0; |
| 696 | |
| 697 | out_cancel: |
| 698 | dir->i_size += sz_change; |
| 699 | dir_ui->ui_size = dir->i_size; |
Artem Bityutskiy | c43be10 | 2012-02-07 10:58:51 +0200 | [diff] [blame] | 700 | set_nlink(inode, saved_nlink); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 701 | unlock_2_inodes(dir, inode); |
| 702 | if (budgeted) |
| 703 | ubifs_release_budget(c, &req); |
| 704 | return err; |
| 705 | } |
| 706 | |
| 707 | /** |
| 708 | * check_dir_empty - check if a directory is empty or not. |
| 709 | * @c: UBIFS file-system description object |
| 710 | * @dir: VFS inode object of the directory to check |
| 711 | * |
| 712 | * This function checks if directory @dir is empty. Returns zero if the |
| 713 | * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes |
| 714 | * in case of of errors. |
| 715 | */ |
| 716 | static int check_dir_empty(struct ubifs_info *c, struct inode *dir) |
| 717 | { |
| 718 | struct qstr nm = { .name = NULL }; |
| 719 | struct ubifs_dent_node *dent; |
| 720 | union ubifs_key key; |
| 721 | int err; |
| 722 | |
| 723 | lowest_dent_key(c, &key, dir->i_ino); |
| 724 | dent = ubifs_tnc_next_ent(c, &key, &nm); |
| 725 | if (IS_ERR(dent)) { |
| 726 | err = PTR_ERR(dent); |
| 727 | if (err == -ENOENT) |
| 728 | err = 0; |
| 729 | } else { |
| 730 | kfree(dent); |
| 731 | err = -ENOTEMPTY; |
| 732 | } |
| 733 | return err; |
| 734 | } |
| 735 | |
| 736 | static int ubifs_rmdir(struct inode *dir, struct dentry *dentry) |
| 737 | { |
| 738 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 739 | struct inode *inode = d_inode(dentry); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 740 | int sz_change = CALC_DENT_SIZE(dentry->d_name.len); |
| 741 | int err, budgeted = 1; |
| 742 | struct ubifs_inode *dir_ui = ubifs_inode(dir); |
| 743 | struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 }; |
| 744 | |
| 745 | /* |
| 746 | * Budget request settings: deletion direntry, deletion inode and |
| 747 | * changing the parent inode. If budgeting fails, go ahead anyway |
| 748 | * because we have extra space reserved for deletions. |
| 749 | */ |
| 750 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 751 | dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry, |
| 752 | inode->i_ino, dir->i_ino); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 753 | ubifs_assert(inode_is_locked(dir)); |
| 754 | ubifs_assert(inode_is_locked(inode)); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 755 | err = check_dir_empty(c, d_inode(dentry)); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 756 | if (err) |
| 757 | return err; |
| 758 | |
| 759 | err = ubifs_budget_space(c, &req); |
| 760 | if (err) { |
| 761 | if (err != -ENOSPC) |
| 762 | return err; |
| 763 | budgeted = 0; |
| 764 | } |
| 765 | |
| 766 | lock_2_inodes(dir, inode); |
| 767 | inode->i_ctime = ubifs_current_time(dir); |
| 768 | clear_nlink(inode); |
| 769 | drop_nlink(dir); |
| 770 | dir->i_size -= sz_change; |
| 771 | dir_ui->ui_size = dir->i_size; |
| 772 | dir->i_mtime = dir->i_ctime = inode->i_ctime; |
| 773 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 1, 0); |
| 774 | if (err) |
| 775 | goto out_cancel; |
| 776 | unlock_2_inodes(dir, inode); |
| 777 | |
| 778 | if (budgeted) |
| 779 | ubifs_release_budget(c, &req); |
| 780 | else { |
| 781 | /* We've deleted something - clean the "no space" flags */ |
Artem Bityutskiy | b137545 | 2011-03-29 18:04:05 +0300 | [diff] [blame] | 782 | c->bi.nospace = c->bi.nospace_rp = 0; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 783 | smp_wmb(); |
| 784 | } |
| 785 | return 0; |
| 786 | |
| 787 | out_cancel: |
| 788 | dir->i_size += sz_change; |
| 789 | dir_ui->ui_size = dir->i_size; |
| 790 | inc_nlink(dir); |
Artem Bityutskiy | c43be10 | 2012-02-07 10:58:51 +0200 | [diff] [blame] | 791 | set_nlink(inode, 2); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 792 | unlock_2_inodes(dir, inode); |
| 793 | if (budgeted) |
| 794 | ubifs_release_budget(c, &req); |
| 795 | return err; |
| 796 | } |
| 797 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 798 | static int ubifs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 799 | { |
| 800 | struct inode *inode; |
| 801 | struct ubifs_inode *dir_ui = ubifs_inode(dir); |
| 802 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
| 803 | int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len); |
Artem Bityutskiy | 182854b | 2008-07-18 18:54:29 +0300 | [diff] [blame] | 804 | struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1 }; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 805 | |
| 806 | /* |
| 807 | * Budget request settings: new inode, new direntry and changing parent |
| 808 | * directory inode. |
| 809 | */ |
| 810 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 811 | dbg_gen("dent '%pd', mode %#hx in dir ino %lu", |
| 812 | dentry, mode, dir->i_ino); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 813 | |
| 814 | err = ubifs_budget_space(c, &req); |
| 815 | if (err) |
| 816 | return err; |
| 817 | |
| 818 | inode = ubifs_new_inode(c, dir, S_IFDIR | mode); |
| 819 | if (IS_ERR(inode)) { |
| 820 | err = PTR_ERR(inode); |
| 821 | goto out_budg; |
| 822 | } |
| 823 | |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 824 | err = ubifs_init_security(dir, inode, &dentry->d_name); |
| 825 | if (err) |
Taesoo Kim | 9401a79 | 2015-03-25 09:53:37 +0100 | [diff] [blame] | 826 | goto out_inode; |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 827 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 828 | mutex_lock(&dir_ui->ui_mutex); |
| 829 | insert_inode_hash(inode); |
| 830 | inc_nlink(inode); |
| 831 | inc_nlink(dir); |
| 832 | dir->i_size += sz_change; |
| 833 | dir_ui->ui_size = dir->i_size; |
| 834 | dir->i_mtime = dir->i_ctime = inode->i_ctime; |
| 835 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0); |
| 836 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 837 | ubifs_err(c, "cannot create directory, error %d", err); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 838 | goto out_cancel; |
| 839 | } |
| 840 | mutex_unlock(&dir_ui->ui_mutex); |
| 841 | |
| 842 | ubifs_release_budget(c, &req); |
| 843 | d_instantiate(dentry, inode); |
| 844 | return 0; |
| 845 | |
| 846 | out_cancel: |
| 847 | dir->i_size -= sz_change; |
| 848 | dir_ui->ui_size = dir->i_size; |
| 849 | drop_nlink(dir); |
| 850 | mutex_unlock(&dir_ui->ui_mutex); |
Taesoo Kim | 9401a79 | 2015-03-25 09:53:37 +0100 | [diff] [blame] | 851 | out_inode: |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 852 | make_bad_inode(inode); |
| 853 | iput(inode); |
| 854 | out_budg: |
| 855 | ubifs_release_budget(c, &req); |
| 856 | return err; |
| 857 | } |
| 858 | |
| 859 | static int ubifs_mknod(struct inode *dir, struct dentry *dentry, |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 860 | umode_t mode, dev_t rdev) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 861 | { |
| 862 | struct inode *inode; |
| 863 | struct ubifs_inode *ui; |
| 864 | struct ubifs_inode *dir_ui = ubifs_inode(dir); |
| 865 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
| 866 | union ubifs_dev_desc *dev = NULL; |
| 867 | int sz_change = CALC_DENT_SIZE(dentry->d_name.len); |
| 868 | int err, devlen = 0; |
| 869 | struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1, |
Artem Bityutskiy | dab4b4d | 2008-07-24 14:52:45 +0300 | [diff] [blame] | 870 | .new_ino_d = ALIGN(devlen, 8), |
| 871 | .dirtied_ino = 1 }; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 872 | |
| 873 | /* |
| 874 | * Budget request settings: new inode, new direntry and changing parent |
| 875 | * directory inode. |
| 876 | */ |
| 877 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 878 | dbg_gen("dent '%pd' in dir ino %lu", dentry, dir->i_ino); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 879 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 880 | if (S_ISBLK(mode) || S_ISCHR(mode)) { |
| 881 | dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS); |
| 882 | if (!dev) |
| 883 | return -ENOMEM; |
| 884 | devlen = ubifs_encode_dev(dev, rdev); |
| 885 | } |
| 886 | |
| 887 | err = ubifs_budget_space(c, &req); |
| 888 | if (err) { |
| 889 | kfree(dev); |
| 890 | return err; |
| 891 | } |
| 892 | |
| 893 | inode = ubifs_new_inode(c, dir, mode); |
| 894 | if (IS_ERR(inode)) { |
| 895 | kfree(dev); |
| 896 | err = PTR_ERR(inode); |
| 897 | goto out_budg; |
| 898 | } |
| 899 | |
| 900 | init_special_inode(inode, inode->i_mode, rdev); |
| 901 | inode->i_size = ubifs_inode(inode)->ui_size = devlen; |
| 902 | ui = ubifs_inode(inode); |
| 903 | ui->data = dev; |
| 904 | ui->data_len = devlen; |
| 905 | |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 906 | err = ubifs_init_security(dir, inode, &dentry->d_name); |
| 907 | if (err) |
Taesoo Kim | 9401a79 | 2015-03-25 09:53:37 +0100 | [diff] [blame] | 908 | goto out_inode; |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 909 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 910 | mutex_lock(&dir_ui->ui_mutex); |
| 911 | dir->i_size += sz_change; |
| 912 | dir_ui->ui_size = dir->i_size; |
| 913 | dir->i_mtime = dir->i_ctime = inode->i_ctime; |
| 914 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0); |
| 915 | if (err) |
| 916 | goto out_cancel; |
| 917 | mutex_unlock(&dir_ui->ui_mutex); |
| 918 | |
| 919 | ubifs_release_budget(c, &req); |
| 920 | insert_inode_hash(inode); |
| 921 | d_instantiate(dentry, inode); |
| 922 | return 0; |
| 923 | |
| 924 | out_cancel: |
| 925 | dir->i_size -= sz_change; |
| 926 | dir_ui->ui_size = dir->i_size; |
| 927 | mutex_unlock(&dir_ui->ui_mutex); |
Taesoo Kim | 9401a79 | 2015-03-25 09:53:37 +0100 | [diff] [blame] | 928 | out_inode: |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 929 | make_bad_inode(inode); |
| 930 | iput(inode); |
| 931 | out_budg: |
| 932 | ubifs_release_budget(c, &req); |
| 933 | return err; |
| 934 | } |
| 935 | |
| 936 | static int ubifs_symlink(struct inode *dir, struct dentry *dentry, |
| 937 | const char *symname) |
| 938 | { |
| 939 | struct inode *inode; |
| 940 | struct ubifs_inode *ui; |
| 941 | struct ubifs_inode *dir_ui = ubifs_inode(dir); |
| 942 | struct ubifs_info *c = dir->i_sb->s_fs_info; |
| 943 | int err, len = strlen(symname); |
| 944 | int sz_change = CALC_DENT_SIZE(dentry->d_name.len); |
| 945 | struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1, |
Artem Bityutskiy | dab4b4d | 2008-07-24 14:52:45 +0300 | [diff] [blame] | 946 | .new_ino_d = ALIGN(len, 8), |
| 947 | .dirtied_ino = 1 }; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 948 | |
| 949 | /* |
| 950 | * Budget request settings: new inode, new direntry and changing parent |
| 951 | * directory inode. |
| 952 | */ |
| 953 | |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 954 | dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry, |
| 955 | symname, dir->i_ino); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 956 | |
| 957 | if (len > UBIFS_MAX_INO_DATA) |
| 958 | return -ENAMETOOLONG; |
| 959 | |
| 960 | err = ubifs_budget_space(c, &req); |
| 961 | if (err) |
| 962 | return err; |
| 963 | |
| 964 | inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO); |
| 965 | if (IS_ERR(inode)) { |
| 966 | err = PTR_ERR(inode); |
| 967 | goto out_budg; |
| 968 | } |
| 969 | |
| 970 | ui = ubifs_inode(inode); |
| 971 | ui->data = kmalloc(len + 1, GFP_NOFS); |
| 972 | if (!ui->data) { |
| 973 | err = -ENOMEM; |
| 974 | goto out_inode; |
| 975 | } |
| 976 | |
| 977 | memcpy(ui->data, symname, len); |
| 978 | ((char *)ui->data)[len] = '\0'; |
Al Viro | 0f301bd | 2015-05-02 10:35:42 -0400 | [diff] [blame] | 979 | inode->i_link = ui->data; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 980 | /* |
| 981 | * The terminating zero byte is not written to the flash media and it |
| 982 | * is put just to make later in-memory string processing simpler. Thus, |
| 983 | * data length is @len, not @len + %1. |
| 984 | */ |
| 985 | ui->data_len = len; |
| 986 | inode->i_size = ubifs_inode(inode)->ui_size = len; |
| 987 | |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 988 | err = ubifs_init_security(dir, inode, &dentry->d_name); |
| 989 | if (err) |
Taesoo Kim | 9401a79 | 2015-03-25 09:53:37 +0100 | [diff] [blame] | 990 | goto out_inode; |
Subodh Nijsure | d7f0b70 | 2014-10-31 13:50:30 -0500 | [diff] [blame] | 991 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 992 | mutex_lock(&dir_ui->ui_mutex); |
| 993 | dir->i_size += sz_change; |
| 994 | dir_ui->ui_size = dir->i_size; |
| 995 | dir->i_mtime = dir->i_ctime = inode->i_ctime; |
| 996 | err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0); |
| 997 | if (err) |
| 998 | goto out_cancel; |
| 999 | mutex_unlock(&dir_ui->ui_mutex); |
| 1000 | |
| 1001 | ubifs_release_budget(c, &req); |
| 1002 | insert_inode_hash(inode); |
| 1003 | d_instantiate(dentry, inode); |
| 1004 | return 0; |
| 1005 | |
| 1006 | out_cancel: |
| 1007 | dir->i_size -= sz_change; |
| 1008 | dir_ui->ui_size = dir->i_size; |
| 1009 | mutex_unlock(&dir_ui->ui_mutex); |
| 1010 | out_inode: |
| 1011 | make_bad_inode(inode); |
| 1012 | iput(inode); |
| 1013 | out_budg: |
| 1014 | ubifs_release_budget(c, &req); |
| 1015 | return err; |
| 1016 | } |
| 1017 | |
| 1018 | /** |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1019 | * lock_4_inodes - a wrapper for locking three UBIFS inodes. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1020 | * @inode1: first inode |
| 1021 | * @inode2: second inode |
| 1022 | * @inode3: third inode |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1023 | * @inode4: fouth inode |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1024 | * |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 1025 | * This function is used for 'ubifs_rename()' and @inode1 may be the same as |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1026 | * @inode2 whereas @inode3 and @inode4 may be %NULL. |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 1027 | * |
| 1028 | * We do not implement any tricks to guarantee strict lock ordering, because |
| 1029 | * VFS has already done it for us on the @i_mutex. So this is just a simple |
| 1030 | * wrapper function. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1031 | */ |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1032 | static void lock_4_inodes(struct inode *inode1, struct inode *inode2, |
| 1033 | struct inode *inode3, struct inode *inode4) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1034 | { |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 1035 | mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1); |
| 1036 | if (inode2 != inode1) |
| 1037 | mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2); |
| 1038 | if (inode3) |
| 1039 | mutex_lock_nested(&ubifs_inode(inode3)->ui_mutex, WB_MUTEX_3); |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1040 | if (inode4) |
| 1041 | mutex_lock_nested(&ubifs_inode(inode4)->ui_mutex, WB_MUTEX_4); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1042 | } |
| 1043 | |
| 1044 | /** |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1045 | * unlock_4_inodes - a wrapper for unlocking three UBIFS inodes for rename. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1046 | * @inode1: first inode |
| 1047 | * @inode2: second inode |
| 1048 | * @inode3: third inode |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1049 | * @inode4: fouth inode |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1050 | */ |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1051 | static void unlock_4_inodes(struct inode *inode1, struct inode *inode2, |
| 1052 | struct inode *inode3, struct inode *inode4) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1053 | { |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1054 | if (inode4) |
| 1055 | mutex_unlock(&ubifs_inode(inode4)->ui_mutex); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1056 | if (inode3) |
| 1057 | mutex_unlock(&ubifs_inode(inode3)->ui_mutex); |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 1058 | if (inode1 != inode2) |
| 1059 | mutex_unlock(&ubifs_inode(inode2)->ui_mutex); |
| 1060 | mutex_unlock(&ubifs_inode(inode1)->ui_mutex); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | static int ubifs_rename(struct inode *old_dir, struct dentry *old_dentry, |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1064 | struct inode *new_dir, struct dentry *new_dentry, |
| 1065 | unsigned int flags) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1066 | { |
| 1067 | struct ubifs_info *c = old_dir->i_sb->s_fs_info; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1068 | struct inode *old_inode = d_inode(old_dentry); |
| 1069 | struct inode *new_inode = d_inode(new_dentry); |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1070 | struct inode *whiteout = NULL; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1071 | struct ubifs_inode *old_inode_ui = ubifs_inode(old_inode); |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1072 | struct ubifs_inode *whiteout_ui = NULL; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1073 | int err, release, sync = 0, move = (new_dir != old_dir); |
| 1074 | int is_dir = S_ISDIR(old_inode->i_mode); |
| 1075 | int unlink = !!new_inode; |
| 1076 | int new_sz = CALC_DENT_SIZE(new_dentry->d_name.len); |
| 1077 | int old_sz = CALC_DENT_SIZE(old_dentry->d_name.len); |
| 1078 | struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1, |
| 1079 | .dirtied_ino = 3 }; |
| 1080 | struct ubifs_budget_req ino_req = { .dirtied_ino = 1, |
Artem Bityutskiy | dab4b4d | 2008-07-24 14:52:45 +0300 | [diff] [blame] | 1081 | .dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) }; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1082 | struct timespec time; |
Alexandre Pereira da Silva | 782759b | 2012-06-25 17:47:49 -0300 | [diff] [blame] | 1083 | unsigned int uninitialized_var(saved_nlink); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1084 | |
| 1085 | /* |
| 1086 | * Budget request settings: deletion direntry, new direntry, removing |
| 1087 | * the old inode, and changing old and new parent directory inodes. |
| 1088 | * |
| 1089 | * However, this operation also marks the target inode as dirty and |
| 1090 | * does not write it, so we allocate budget for the target inode |
| 1091 | * separately. |
| 1092 | */ |
| 1093 | |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1094 | dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu flags 0x%x", |
Al Viro | 4cb2a01 | 2013-09-16 10:58:53 -0400 | [diff] [blame] | 1095 | old_dentry, old_inode->i_ino, old_dir->i_ino, |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1096 | new_dentry, new_dir->i_ino, flags); |
| 1097 | |
| 1098 | if (flags & ~(RENAME_NOREPLACE | RENAME_WHITEOUT)) |
| 1099 | return -EINVAL; |
| 1100 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 1101 | ubifs_assert(inode_is_locked(old_dir)); |
| 1102 | ubifs_assert(inode_is_locked(new_dir)); |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 1103 | if (unlink) |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 1104 | ubifs_assert(inode_is_locked(new_inode)); |
Artem Bityutskiy | 82c1593 | 2009-01-20 16:46:02 +0200 | [diff] [blame] | 1105 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1106 | if (unlink && is_dir) { |
| 1107 | err = check_dir_empty(c, new_inode); |
| 1108 | if (err) |
| 1109 | return err; |
| 1110 | } |
| 1111 | |
| 1112 | err = ubifs_budget_space(c, &req); |
| 1113 | if (err) |
| 1114 | return err; |
| 1115 | err = ubifs_budget_space(c, &ino_req); |
| 1116 | if (err) { |
| 1117 | ubifs_release_budget(c, &req); |
| 1118 | return err; |
| 1119 | } |
| 1120 | |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1121 | if (flags & RENAME_WHITEOUT) { |
| 1122 | union ubifs_dev_desc *dev = NULL; |
| 1123 | |
| 1124 | dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS); |
| 1125 | if (!dev) { |
| 1126 | ubifs_release_budget(c, &req); |
| 1127 | ubifs_release_budget(c, &ino_req); |
| 1128 | return -ENOMEM; |
| 1129 | } |
| 1130 | |
| 1131 | err = do_tmpfile(old_dir, old_dentry, S_IFCHR | WHITEOUT_MODE, &whiteout); |
| 1132 | if (err) { |
| 1133 | ubifs_release_budget(c, &req); |
| 1134 | ubifs_release_budget(c, &ino_req); |
| 1135 | kfree(dev); |
| 1136 | return err; |
| 1137 | } |
| 1138 | |
| 1139 | whiteout->i_state |= I_LINKABLE; |
| 1140 | whiteout_ui = ubifs_inode(whiteout); |
| 1141 | whiteout_ui->data = dev; |
| 1142 | whiteout_ui->data_len = ubifs_encode_dev(dev, MKDEV(0, 0)); |
| 1143 | ubifs_assert(!whiteout_ui->dirty); |
| 1144 | } |
| 1145 | |
| 1146 | lock_4_inodes(old_dir, new_dir, new_inode, whiteout); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1147 | |
| 1148 | /* |
| 1149 | * Like most other Unix systems, set the @i_ctime for inodes on a |
| 1150 | * rename. |
| 1151 | */ |
| 1152 | time = ubifs_current_time(old_dir); |
| 1153 | old_inode->i_ctime = time; |
| 1154 | |
| 1155 | /* We must adjust parent link count when renaming directories */ |
| 1156 | if (is_dir) { |
| 1157 | if (move) { |
| 1158 | /* |
| 1159 | * @old_dir loses a link because we are moving |
| 1160 | * @old_inode to a different directory. |
| 1161 | */ |
| 1162 | drop_nlink(old_dir); |
| 1163 | /* |
| 1164 | * @new_dir only gains a link if we are not also |
| 1165 | * overwriting an existing directory. |
| 1166 | */ |
| 1167 | if (!unlink) |
| 1168 | inc_nlink(new_dir); |
| 1169 | } else { |
| 1170 | /* |
| 1171 | * @old_inode is not moving to a different directory, |
| 1172 | * but @old_dir still loses a link if we are |
| 1173 | * overwriting an existing directory. |
| 1174 | */ |
| 1175 | if (unlink) |
| 1176 | drop_nlink(old_dir); |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | old_dir->i_size -= old_sz; |
| 1181 | ubifs_inode(old_dir)->ui_size = old_dir->i_size; |
| 1182 | old_dir->i_mtime = old_dir->i_ctime = time; |
| 1183 | new_dir->i_mtime = new_dir->i_ctime = time; |
| 1184 | |
| 1185 | /* |
| 1186 | * And finally, if we unlinked a direntry which happened to have the |
| 1187 | * same name as the moved direntry, we have to decrement @i_nlink of |
| 1188 | * the unlinked inode and change its ctime. |
| 1189 | */ |
| 1190 | if (unlink) { |
| 1191 | /* |
| 1192 | * Directories cannot have hard-links, so if this is a |
Artem Bityutskiy | c43be10 | 2012-02-07 10:58:51 +0200 | [diff] [blame] | 1193 | * directory, just clear @i_nlink. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1194 | */ |
Artem Bityutskiy | c43be10 | 2012-02-07 10:58:51 +0200 | [diff] [blame] | 1195 | saved_nlink = new_inode->i_nlink; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1196 | if (is_dir) |
Artem Bityutskiy | c43be10 | 2012-02-07 10:58:51 +0200 | [diff] [blame] | 1197 | clear_nlink(new_inode); |
| 1198 | else |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1199 | drop_nlink(new_inode); |
| 1200 | new_inode->i_ctime = time; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1201 | } else { |
| 1202 | new_dir->i_size += new_sz; |
| 1203 | ubifs_inode(new_dir)->ui_size = new_dir->i_size; |
| 1204 | } |
| 1205 | |
| 1206 | /* |
| 1207 | * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode |
| 1208 | * is dirty, because this will be done later on at the end of |
| 1209 | * 'ubifs_rename()'. |
| 1210 | */ |
| 1211 | if (IS_SYNC(old_inode)) { |
| 1212 | sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir); |
| 1213 | if (unlink && IS_SYNC(new_inode)) |
| 1214 | sync = 1; |
| 1215 | } |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1216 | |
| 1217 | if (whiteout) { |
| 1218 | struct ubifs_budget_req wht_req = { .dirtied_ino = 1, |
| 1219 | .dirtied_ino_d = \ |
| 1220 | ALIGN(ubifs_inode(whiteout)->data_len, 8) }; |
| 1221 | |
| 1222 | err = ubifs_budget_space(c, &wht_req); |
| 1223 | if (err) { |
| 1224 | ubifs_release_budget(c, &req); |
| 1225 | ubifs_release_budget(c, &ino_req); |
| 1226 | kfree(whiteout_ui->data); |
| 1227 | whiteout_ui->data_len = 0; |
| 1228 | iput(whiteout); |
| 1229 | return err; |
| 1230 | } |
| 1231 | |
| 1232 | inc_nlink(whiteout); |
| 1233 | mark_inode_dirty(whiteout); |
| 1234 | whiteout->i_state &= ~I_LINKABLE; |
| 1235 | iput(whiteout); |
| 1236 | } |
| 1237 | |
| 1238 | err = ubifs_jnl_rename(c, old_dir, old_dentry, new_dir, new_dentry, whiteout, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1239 | sync); |
| 1240 | if (err) |
| 1241 | goto out_cancel; |
| 1242 | |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1243 | unlock_4_inodes(old_dir, new_dir, new_inode, whiteout); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1244 | ubifs_release_budget(c, &req); |
| 1245 | |
| 1246 | mutex_lock(&old_inode_ui->ui_mutex); |
| 1247 | release = old_inode_ui->dirty; |
| 1248 | mark_inode_dirty_sync(old_inode); |
| 1249 | mutex_unlock(&old_inode_ui->ui_mutex); |
| 1250 | |
| 1251 | if (release) |
| 1252 | ubifs_release_budget(c, &ino_req); |
| 1253 | if (IS_SYNC(old_inode)) |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 1254 | err = old_inode->i_sb->s_op->write_inode(old_inode, NULL); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1255 | return err; |
| 1256 | |
| 1257 | out_cancel: |
| 1258 | if (unlink) { |
Artem Bityutskiy | c43be10 | 2012-02-07 10:58:51 +0200 | [diff] [blame] | 1259 | set_nlink(new_inode, saved_nlink); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1260 | } else { |
| 1261 | new_dir->i_size -= new_sz; |
| 1262 | ubifs_inode(new_dir)->ui_size = new_dir->i_size; |
| 1263 | } |
| 1264 | old_dir->i_size += old_sz; |
| 1265 | ubifs_inode(old_dir)->ui_size = old_dir->i_size; |
| 1266 | if (is_dir) { |
| 1267 | if (move) { |
| 1268 | inc_nlink(old_dir); |
| 1269 | if (!unlink) |
| 1270 | drop_nlink(new_dir); |
| 1271 | } else { |
| 1272 | if (unlink) |
| 1273 | inc_nlink(old_dir); |
| 1274 | } |
| 1275 | } |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1276 | if (whiteout) { |
| 1277 | drop_nlink(whiteout); |
| 1278 | iput(whiteout); |
| 1279 | } |
| 1280 | unlock_4_inodes(old_dir, new_dir, new_inode, whiteout); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1281 | ubifs_release_budget(c, &ino_req); |
| 1282 | ubifs_release_budget(c, &req); |
| 1283 | return err; |
| 1284 | } |
| 1285 | |
| 1286 | int ubifs_getattr(struct vfsmount *mnt, struct dentry *dentry, |
| 1287 | struct kstat *stat) |
| 1288 | { |
| 1289 | loff_t size; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1290 | struct inode *inode = d_inode(dentry); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1291 | struct ubifs_inode *ui = ubifs_inode(inode); |
| 1292 | |
| 1293 | mutex_lock(&ui->ui_mutex); |
Al Viro | 6d42e7e | 2012-04-02 14:25:07 -0400 | [diff] [blame] | 1294 | generic_fillattr(inode, stat); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1295 | stat->blksize = UBIFS_BLOCK_SIZE; |
| 1296 | stat->size = ui->ui_size; |
| 1297 | |
| 1298 | /* |
| 1299 | * Unfortunately, the 'stat()' system call was designed for block |
| 1300 | * device based file systems, and it is not appropriate for UBIFS, |
| 1301 | * because UBIFS does not have notion of "block". For example, it is |
| 1302 | * difficult to tell how many block a directory takes - it actually |
| 1303 | * takes less than 300 bytes, but we have to round it to block size, |
| 1304 | * which introduces large mistake. This makes utilities like 'du' to |
| 1305 | * report completely senseless numbers. This is the reason why UBIFS |
| 1306 | * goes the same way as JFFS2 - it reports zero blocks for everything |
| 1307 | * but regular files, which makes more sense than reporting completely |
| 1308 | * wrong sizes. |
| 1309 | */ |
| 1310 | if (S_ISREG(inode->i_mode)) { |
| 1311 | size = ui->xattr_size; |
| 1312 | size += stat->size; |
| 1313 | size = ALIGN(size, UBIFS_BLOCK_SIZE); |
| 1314 | /* |
| 1315 | * Note, user-space expects 512-byte blocks count irrespectively |
| 1316 | * of what was reported in @stat->size. |
| 1317 | */ |
| 1318 | stat->blocks = size >> 9; |
| 1319 | } else |
| 1320 | stat->blocks = 0; |
| 1321 | mutex_unlock(&ui->ui_mutex); |
| 1322 | return 0; |
| 1323 | } |
| 1324 | |
Artem Bityutskiy | e8b8156 | 2009-01-15 17:43:23 +0200 | [diff] [blame] | 1325 | const struct inode_operations ubifs_dir_inode_operations = { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1326 | .lookup = ubifs_lookup, |
| 1327 | .create = ubifs_create, |
| 1328 | .link = ubifs_link, |
| 1329 | .symlink = ubifs_symlink, |
| 1330 | .unlink = ubifs_unlink, |
| 1331 | .mkdir = ubifs_mkdir, |
| 1332 | .rmdir = ubifs_rmdir, |
| 1333 | .mknod = ubifs_mknod, |
Richard Weinberger | 9e0a1ff | 2016-09-14 22:28:50 +0200 | [diff] [blame^] | 1334 | .rename2 = ubifs_rename, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1335 | .setattr = ubifs_setattr, |
| 1336 | .getattr = ubifs_getattr, |
Andreas Gruenbacher | 2b88fc2 | 2016-04-22 19:14:00 +0200 | [diff] [blame] | 1337 | .setxattr = generic_setxattr, |
| 1338 | .getxattr = generic_getxattr, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1339 | .listxattr = ubifs_listxattr, |
Andreas Gruenbacher | 2b88fc2 | 2016-04-22 19:14:00 +0200 | [diff] [blame] | 1340 | .removexattr = generic_removexattr, |
Dongsheng Yang | 8c1c5f2 | 2015-11-07 12:46:11 +0800 | [diff] [blame] | 1341 | #ifdef CONFIG_UBIFS_ATIME_SUPPORT |
| 1342 | .update_time = ubifs_update_time, |
| 1343 | #endif |
Richard Weinberger | 474b937 | 2016-09-14 22:28:49 +0200 | [diff] [blame] | 1344 | .tmpfile = ubifs_tmpfile, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1345 | }; |
| 1346 | |
Artem Bityutskiy | e8b8156 | 2009-01-15 17:43:23 +0200 | [diff] [blame] | 1347 | const struct file_operations ubifs_dir_operations = { |
Al Viro | 01122e0 | 2013-05-16 01:14:46 -0400 | [diff] [blame] | 1348 | .llseek = generic_file_llseek, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1349 | .release = ubifs_dir_release, |
| 1350 | .read = generic_read_dir, |
Al Viro | c51da20 | 2016-04-30 22:37:34 -0400 | [diff] [blame] | 1351 | .iterate_shared = ubifs_readdir, |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1352 | .fsync = ubifs_fsync, |
| 1353 | .unlocked_ioctl = ubifs_ioctl, |
| 1354 | #ifdef CONFIG_COMPAT |
| 1355 | .compat_ioctl = ubifs_compat_ioctl, |
| 1356 | #endif |
| 1357 | }; |