blob: 9ef40f100415cebf9ebeeade4467897cb62979bc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/ufs/namei.c
4 *
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -07005 * Migration to usage of "page cache" on May 2006 by
6 * Evgeniy Dushistov <dushistov@mail.ru> based on ext2 code base.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Copyright (C) 1998
9 * Daniel Pirkl <daniel.pirkl@email.cz>
10 * Charles University, Faculty of Mathematics and Physics
11 *
12 * from
13 *
14 * linux/fs/ext2/namei.c
15 *
16 * Copyright (C) 1992, 1993, 1994, 1995
17 * Remy Card (card@masi.ibp.fr)
18 * Laboratoire MASI - Institut Blaise Pascal
19 * Universite Pierre et Marie Curie (Paris VI)
20 *
21 * from
22 *
23 * linux/fs/minix/namei.c
24 *
25 * Copyright (C) 1991, 1992 Linus Torvalds
26 *
27 * Big-endian to little-endian byte-swapping/bitmaps by
28 * David S. Miller (davem@caip.rutgers.edu), 1995
29 */
30
31#include <linux/time.h>
32#include <linux/fs.h>
Mike Frysingere5420592008-02-08 04:21:31 -080033
34#include "ufs_fs.h"
Christoph Hellwigbcd6d4e2007-10-16 23:26:51 -070035#include "ufs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "util.h"
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static inline int ufs_add_nondir(struct dentry *dentry, struct inode *inode)
39{
40 int err = ufs_add_link(dentry, inode);
41 if (!err) {
Al Viro1e2e5472018-05-04 08:23:01 -040042 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 return 0;
44 }
Alexey Dobriyan32575452006-03-23 03:00:53 -080045 inode_dec_link_count(inode);
Al Virodd549922018-05-16 12:22:50 -040046 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return err;
48}
49
Al Viro00cd8dd2012-06-10 17:13:09 -040050static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 struct inode * inode = NULL;
53 ino_t ino;
54
55 if (dentry->d_name.len > UFS_MAXNAMLEN)
56 return ERR_PTR(-ENAMETOOLONG);
57
Alexey Dobriyan08049702009-12-15 16:46:50 -080058 ino = ufs_inode_by_name(dir, &dentry->d_name);
Al Viro642c9372011-07-17 10:07:34 -040059 if (ino)
David Howellsb55c4602008-02-07 00:15:48 -080060 inode = ufs_iget(dir->i_sb, ino);
Al Viro642c9372011-07-17 10:07:34 -040061 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
64/*
65 * By the time this is called, we already have created
66 * the directory cache entry for the new file, but it
67 * is so far negative - it has no inode.
68 *
69 * If the create succeeds, we fill in the inode information
70 * with d_instantiate().
71 */
Al Viro4acdaf22011-07-26 01:42:34 -040072static int ufs_create (struct inode * dir, struct dentry * dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -040073 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070075 struct inode *inode;
Christoph Hellwig907f4552010-03-03 09:05:06 -050076
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070077 inode = ufs_new_inode(dir, mode);
Al Viroa50e4a02015-06-16 01:50:43 -040078 if (IS_ERR(inode))
79 return PTR_ERR(inode);
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070080
Al Viroa50e4a02015-06-16 01:50:43 -040081 inode->i_op = &ufs_file_inode_operations;
82 inode->i_fop = &ufs_file_operations;
83 inode->i_mapping->a_ops = &ufs_aops;
84 mark_inode_dirty(inode);
85 return ufs_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Al Viro1a67aaf2011-07-26 01:52:52 -040088static int ufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 struct inode *inode;
91 int err;
92
93 if (!old_valid_dev(rdev))
94 return -EINVAL;
Christoph Hellwig907f4552010-03-03 09:05:06 -050095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 inode = ufs_new_inode(dir, mode);
97 err = PTR_ERR(inode);
98 if (!IS_ERR(inode)) {
99 init_special_inode(inode, mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
101 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 err = ufs_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104 return err;
105}
106
107static int ufs_symlink (struct inode * dir, struct dentry * dentry,
108 const char * symname)
109{
110 struct super_block * sb = dir->i_sb;
Al Viroa50e4a02015-06-16 01:50:43 -0400111 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 unsigned l = strlen(symname)+1;
113 struct inode * inode;
114
115 if (l > sb->s_blocksize)
Al Viroa50e4a02015-06-16 01:50:43 -0400116 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
119 err = PTR_ERR(inode);
120 if (IS_ERR(inode))
Al Viroa50e4a02015-06-16 01:50:43 -0400121 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
124 /* slow symlink */
Al Viro9cdce3c2015-11-15 18:24:17 -0500125 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500126 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 inode->i_mapping->a_ops = &ufs_aops;
128 err = page_symlink(inode, symname, l);
129 if (err)
130 goto out_fail;
131 } else {
132 /* fast symlink */
Al Viro9cdce3c2015-11-15 18:24:17 -0500133 inode->i_op = &simple_symlink_inode_operations;
Al Viro4b8061a2015-05-02 10:28:56 -0400134 inode->i_link = (char *)UFS_I(inode)->i_u1.i_symlink;
135 memcpy(inode->i_link, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 inode->i_size = l-1;
137 }
138 mark_inode_dirty(inode);
139
Al Viroa50e4a02015-06-16 01:50:43 -0400140 return ufs_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800143 inode_dec_link_count(inode);
Al Virodd549922018-05-16 12:22:50 -0400144 discard_new_inode(inode);
Al Viroa50e4a02015-06-16 01:50:43 -0400145 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148static int ufs_link (struct dentry * old_dentry, struct inode * dir,
149 struct dentry *dentry)
150{
David Howells2b0143b2015-03-17 22:25:59 +0000151 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int error;
153
Deepa Dinamani02027d42016-09-14 07:48:05 -0700154 inode->i_ctime = current_time(inode);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800155 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400156 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Jan Kara12ecbb42015-06-01 14:52:04 +0200158 error = ufs_add_link(dentry, inode);
159 if (error) {
160 inode_dec_link_count(inode);
161 iput(inode);
162 } else
163 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return error;
165}
166
Al Viro18bb1db2011-07-26 01:41:39 -0400167static int ufs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500170 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Fabian Frederick13b987e2015-06-10 10:09:32 +1000172 inode_inc_link_count(dir);
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 inode = ufs_new_inode(dir, S_IFDIR|mode);
Fabian Frederick13b987e2015-06-10 10:09:32 +1000175 err = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (IS_ERR(inode))
Fabian Frederick13b987e2015-06-10 10:09:32 +1000177 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 inode->i_op = &ufs_dir_inode_operations;
180 inode->i_fop = &ufs_dir_operations;
Evgeniy Dushistov826843a2006-06-25 05:47:21 -0700181 inode->i_mapping->a_ops = &ufs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Alexey Dobriyan32575452006-03-23 03:00:53 -0800183 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 err = ufs_make_empty(inode, dir);
186 if (err)
187 goto out_fail;
188
189 err = ufs_add_link(dentry, inode);
190 if (err)
191 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Al Viro1e2e5472018-05-04 08:23:01 -0400193 d_instantiate_new(dentry, inode);
Al Viroa50e4a02015-06-16 01:50:43 -0400194 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800197 inode_dec_link_count(inode);
198 inode_dec_link_count(inode);
Al Virodd549922018-05-16 12:22:50 -0400199 discard_new_inode(inode);
Fabian Frederick13b987e2015-06-10 10:09:32 +1000200out_dir:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800201 inode_dec_link_count(dir);
Al Viroa50e4a02015-06-16 01:50:43 -0400202 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700205static int ufs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
David Howells2b0143b2015-03-17 22:25:59 +0000207 struct inode * inode = d_inode(dentry);
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700208 struct ufs_dir_entry *de;
209 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int err = -ENOENT;
211
Alexey Dobriyan08049702009-12-15 16:46:50 -0800212 de = ufs_find_entry(dir, &dentry->d_name, &page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (!de)
214 goto out;
215
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700216 err = ufs_delete_entry(dir, de, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (err)
218 goto out;
219
220 inode->i_ctime = dir->i_ctime;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800221 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 err = 0;
223out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return err;
225}
226
227static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
228{
David Howells2b0143b2015-03-17 22:25:59 +0000229 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int err= -ENOTEMPTY;
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (ufs_empty_dir (inode)) {
233 err = ufs_unlink(dir, dentry);
234 if (!err) {
235 inode->i_size = 0;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800236 inode_dec_link_count(inode);
237 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return err;
241}
242
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700243static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200244 struct inode *new_dir, struct dentry *new_dentry,
245 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
David Howells2b0143b2015-03-17 22:25:59 +0000247 struct inode *old_inode = d_inode(old_dentry);
248 struct inode *new_inode = d_inode(new_dentry);
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700249 struct page *dir_page = NULL;
250 struct ufs_dir_entry * dir_de = NULL;
251 struct page *old_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct ufs_dir_entry *old_de;
253 int err = -ENOENT;
254
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200255 if (flags & ~RENAME_NOREPLACE)
256 return -EINVAL;
257
Alexey Dobriyan08049702009-12-15 16:46:50 -0800258 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (!old_de)
260 goto out;
261
262 if (S_ISDIR(old_inode->i_mode)) {
263 err = -EIO;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700264 dir_de = ufs_dotdot(old_inode, &dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (!dir_de)
266 goto out_old;
267 }
268
269 if (new_inode) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700270 struct page *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct ufs_dir_entry *new_de;
272
273 err = -ENOTEMPTY;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700274 if (dir_de && !ufs_empty_dir(new_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 err = -ENOENT;
Alexey Dobriyan08049702009-12-15 16:46:50 -0800278 new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!new_de)
280 goto out_dir;
Al Viro70d45cd2015-06-16 01:56:23 -0400281 ufs_set_link(new_dir, new_de, new_page, old_inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700282 new_inode->i_ctime = current_time(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700284 drop_nlink(new_inode);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800285 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 err = ufs_add_link(new_dentry, old_inode);
Al Viro37750cd2011-03-02 09:40:21 -0500288 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (dir_de)
Alexey Dobriyan32575452006-03-23 03:00:53 -0800291 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700294 /*
295 * Like most other Unix systems, set the ctime for inodes on a
296 * rename.
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700297 */
Deepa Dinamani02027d42016-09-14 07:48:05 -0700298 old_inode->i_ctime = current_time(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700300 ufs_delete_entry(old_dir, old_de, old_page);
Al Viro37750cd2011-03-02 09:40:21 -0500301 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 if (dir_de) {
Al Viro70d45cd2015-06-16 01:56:23 -0400304 if (old_dir != new_dir)
305 ufs_set_link(old_inode, dir_de, dir_page, new_dir, 0);
306 else {
307 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300308 put_page(dir_page);
Al Viro70d45cd2015-06-16 01:56:23 -0400309 }
Alexey Dobriyan32575452006-03-23 03:00:53 -0800310 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return 0;
313
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315out_dir:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700316 if (dir_de) {
317 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300318 put_page(dir_page);
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320out_old:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700321 kunmap(old_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300322 put_page(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return err;
325}
326
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800327const struct inode_operations ufs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 .create = ufs_create,
329 .lookup = ufs_lookup,
330 .link = ufs_link,
331 .unlink = ufs_unlink,
332 .symlink = ufs_symlink,
333 .mkdir = ufs_mkdir,
334 .rmdir = ufs_rmdir,
335 .mknod = ufs_mknod,
336 .rename = ufs_rename,
337};