blob: 1f5223c9e1e2c94ac22f94de629da756fbce8e8c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ufs/namei.c
3 *
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -07004 * Migration to usage of "page cache" on May 2006 by
5 * Evgeniy Dushistov <dushistov@mail.ru> based on ext2 code base.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 1998
8 * Daniel Pirkl <daniel.pirkl@email.cz>
9 * Charles University, Faculty of Mathematics and Physics
10 *
11 * from
12 *
13 * linux/fs/ext2/namei.c
14 *
15 * Copyright (C) 1992, 1993, 1994, 1995
16 * Remy Card (card@masi.ibp.fr)
17 * Laboratoire MASI - Institut Blaise Pascal
18 * Universite Pierre et Marie Curie (Paris VI)
19 *
20 * from
21 *
22 * linux/fs/minix/namei.c
23 *
24 * Copyright (C) 1991, 1992 Linus Torvalds
25 *
26 * Big-endian to little-endian byte-swapping/bitmaps by
27 * David S. Miller (davem@caip.rutgers.edu), 1995
28 */
29
30#include <linux/time.h>
31#include <linux/fs.h>
Mike Frysingere5420592008-02-08 04:21:31 -080032
33#include "ufs_fs.h"
Christoph Hellwigbcd6d4e2007-10-16 23:26:51 -070034#include "ufs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "util.h"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static inline int ufs_add_nondir(struct dentry *dentry, struct inode *inode)
38{
39 int err = ufs_add_link(dentry, inode);
40 if (!err) {
Al Viroe4502c62014-09-26 21:17:52 -040041 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 d_instantiate(dentry, inode);
43 return 0;
44 }
Alexey Dobriyan32575452006-03-23 03:00:53 -080045 inode_dec_link_count(inode);
Al Viroe4502c62014-09-26 21:17:52 -040046 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 iput(inode);
48 return err;
49}
50
Al Viro00cd8dd2012-06-10 17:13:09 -040051static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 struct inode * inode = NULL;
54 ino_t ino;
55
56 if (dentry->d_name.len > UFS_MAXNAMLEN)
57 return ERR_PTR(-ENAMETOOLONG);
58
Arnd Bergmann788257d2011-01-24 10:14:12 +010059 lock_ufs(dir->i_sb);
Alexey Dobriyan08049702009-12-15 16:46:50 -080060 ino = ufs_inode_by_name(dir, &dentry->d_name);
Al Viro642c9372011-07-17 10:07:34 -040061 if (ino)
David Howellsb55c4602008-02-07 00:15:48 -080062 inode = ufs_iget(dir->i_sb, ino);
Arnd Bergmann788257d2011-01-24 10:14:12 +010063 unlock_ufs(dir->i_sb);
Al Viro642c9372011-07-17 10:07:34 -040064 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67/*
68 * By the time this is called, we already have created
69 * the directory cache entry for the new file, but it
70 * is so far negative - it has no inode.
71 *
72 * If the create succeeds, we fill in the inode information
73 * with d_instantiate().
74 */
Al Viro4acdaf22011-07-26 01:42:34 -040075static int ufs_create (struct inode * dir, struct dentry * dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -040076 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070078 struct inode *inode;
79 int err;
80
81 UFSD("BEGIN\n");
Christoph Hellwig907f4552010-03-03 09:05:06 -050082
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070083 inode = ufs_new_inode(dir, mode);
84 err = PTR_ERR(inode);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 if (!IS_ERR(inode)) {
87 inode->i_op = &ufs_file_inode_operations;
88 inode->i_fop = &ufs_file_operations;
89 inode->i_mapping->a_ops = &ufs_aops;
90 mark_inode_dirty(inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +010091 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 err = ufs_add_nondir(dentry, inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +010093 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070095 UFSD("END: err=%d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return err;
97}
98
Al Viro1a67aaf2011-07-26 01:52:52 -040099static int ufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct inode *inode;
102 int err;
103
104 if (!old_valid_dev(rdev))
105 return -EINVAL;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 inode = ufs_new_inode(dir, mode);
108 err = PTR_ERR(inode);
109 if (!IS_ERR(inode)) {
110 init_special_inode(inode, mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
112 mark_inode_dirty(inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100113 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 err = ufs_add_nondir(dentry, inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100115 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117 return err;
118}
119
120static int ufs_symlink (struct inode * dir, struct dentry * dentry,
121 const char * symname)
122{
123 struct super_block * sb = dir->i_sb;
124 int err = -ENAMETOOLONG;
125 unsigned l = strlen(symname)+1;
126 struct inode * inode;
127
128 if (l > sb->s_blocksize)
Josh Triplett344fe782006-07-30 03:03:59 -0700129 goto out_notlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Fabian Frederick13b987e2015-06-10 10:09:32 +1000131 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
133 err = PTR_ERR(inode);
134 if (IS_ERR(inode))
Fabian Frederick13b987e2015-06-10 10:09:32 +1000135 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
138 /* slow symlink */
Dmitry Monakhov311b95492010-04-15 00:56:58 +0200139 inode->i_op = &ufs_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 inode->i_mapping->a_ops = &ufs_aops;
141 err = page_symlink(inode, symname, l);
142 if (err)
143 goto out_fail;
144 } else {
145 /* fast symlink */
146 inode->i_op = &ufs_fast_symlink_inode_operations;
Duane Griffin723be1f2009-01-08 22:43:51 +0000147 memcpy(UFS_I(inode)->i_u1.i_symlink, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 inode->i_size = l-1;
149 }
150 mark_inode_dirty(inode);
151
152 err = ufs_add_nondir(dentry, inode);
153out:
Arnd Bergmann788257d2011-01-24 10:14:12 +0100154 unlock_ufs(dir->i_sb);
Josh Triplett344fe782006-07-30 03:03:59 -0700155out_notlocked:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return err;
157
158out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800159 inode_dec_link_count(inode);
Al Viroe4502c62014-09-26 21:17:52 -0400160 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 iput(inode);
162 goto out;
163}
164
165static int ufs_link (struct dentry * old_dentry, struct inode * dir,
166 struct dentry *dentry)
167{
David Howells2b0143b2015-03-17 22:25:59 +0000168 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int error;
170
Arnd Bergmann788257d2011-01-24 10:14:12 +0100171 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 inode->i_ctime = CURRENT_TIME_SEC;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800174 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400175 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 error = ufs_add_nondir(dentry, inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100178 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return error;
180}
181
Al Viro18bb1db2011-07-26 01:41:39 -0400182static int ufs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500185 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Fabian Frederick13b987e2015-06-10 10:09:32 +1000187 lock_ufs(dir->i_sb);
188 inode_inc_link_count(dir);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 inode = ufs_new_inode(dir, S_IFDIR|mode);
Fabian Frederick13b987e2015-06-10 10:09:32 +1000191 err = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (IS_ERR(inode))
Fabian Frederick13b987e2015-06-10 10:09:32 +1000193 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 inode->i_op = &ufs_dir_inode_operations;
196 inode->i_fop = &ufs_dir_operations;
Evgeniy Dushistov826843a2006-06-25 05:47:21 -0700197 inode->i_mapping->a_ops = &ufs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Alexey Dobriyan32575452006-03-23 03:00:53 -0800199 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 err = ufs_make_empty(inode, dir);
202 if (err)
203 goto out_fail;
204
205 err = ufs_add_link(dentry, inode);
206 if (err)
207 goto out_fail;
Arnd Bergmann788257d2011-01-24 10:14:12 +0100208 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 d_instantiate(dentry, inode);
211out:
212 return err;
213
214out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800215 inode_dec_link_count(inode);
216 inode_dec_link_count(inode);
Al Viroe4502c62014-09-26 21:17:52 -0400217 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 iput (inode);
Fabian Frederick13b987e2015-06-10 10:09:32 +1000219out_dir:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800220 inode_dec_link_count(dir);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100221 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 goto out;
223}
224
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700225static int ufs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
David Howells2b0143b2015-03-17 22:25:59 +0000227 struct inode * inode = d_inode(dentry);
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700228 struct ufs_dir_entry *de;
229 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int err = -ENOENT;
231
Alexey Dobriyan08049702009-12-15 16:46:50 -0800232 de = ufs_find_entry(dir, &dentry->d_name, &page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (!de)
234 goto out;
235
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700236 err = ufs_delete_entry(dir, de, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (err)
238 goto out;
239
240 inode->i_ctime = dir->i_ctime;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800241 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 err = 0;
243out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return err;
245}
246
247static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
248{
David Howells2b0143b2015-03-17 22:25:59 +0000249 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 int err= -ENOTEMPTY;
251
Arnd Bergmann788257d2011-01-24 10:14:12 +0100252 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (ufs_empty_dir (inode)) {
254 err = ufs_unlink(dir, dentry);
255 if (!err) {
256 inode->i_size = 0;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800257 inode_dec_link_count(inode);
258 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260 }
Arnd Bergmann788257d2011-01-24 10:14:12 +0100261 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return err;
263}
264
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700265static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
266 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
David Howells2b0143b2015-03-17 22:25:59 +0000268 struct inode *old_inode = d_inode(old_dentry);
269 struct inode *new_inode = d_inode(new_dentry);
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700270 struct page *dir_page = NULL;
271 struct ufs_dir_entry * dir_de = NULL;
272 struct page *old_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct ufs_dir_entry *old_de;
274 int err = -ENOENT;
275
Alexey Dobriyan08049702009-12-15 16:46:50 -0800276 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (!old_de)
278 goto out;
279
280 if (S_ISDIR(old_inode->i_mode)) {
281 err = -EIO;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700282 dir_de = ufs_dotdot(old_inode, &dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (!dir_de)
284 goto out_old;
285 }
286
287 if (new_inode) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700288 struct page *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct ufs_dir_entry *new_de;
290
291 err = -ENOTEMPTY;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700292 if (dir_de && !ufs_empty_dir(new_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 err = -ENOENT;
Alexey Dobriyan08049702009-12-15 16:46:50 -0800296 new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (!new_de)
298 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700299 ufs_set_link(new_dir, new_de, new_page, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 new_inode->i_ctime = CURRENT_TIME_SEC;
301 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700302 drop_nlink(new_inode);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800303 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 err = ufs_add_link(new_dentry, old_inode);
Al Viro37750cd2011-03-02 09:40:21 -0500306 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (dir_de)
Alexey Dobriyan32575452006-03-23 03:00:53 -0800309 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700312 /*
313 * Like most other Unix systems, set the ctime for inodes on a
314 * rename.
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700315 */
316 old_inode->i_ctime = CURRENT_TIME_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700318 ufs_delete_entry(old_dir, old_de, old_page);
Al Viro37750cd2011-03-02 09:40:21 -0500319 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 if (dir_de) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700322 ufs_set_link(old_inode, dir_de, dir_page, new_dir);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800323 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return 0;
326
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328out_dir:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700329 if (dir_de) {
330 kunmap(dir_page);
331 page_cache_release(dir_page);
332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333out_old:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700334 kunmap(old_page);
335 page_cache_release(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return err;
338}
339
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800340const struct inode_operations ufs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 .create = ufs_create,
342 .lookup = ufs_lookup,
343 .link = ufs_link,
344 .unlink = ufs_unlink,
345 .symlink = ufs_symlink,
346 .mkdir = ufs_mkdir,
347 .rmdir = ufs_rmdir,
348 .mknod = ufs_mknod,
349 .rename = ufs_rename,
350};