blob: b57aab9a1184719a027715d16786a54cdbd43d70 [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) {
41 d_instantiate(dentry, inode);
42 return 0;
43 }
Alexey Dobriyan32575452006-03-23 03:00:53 -080044 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 iput(inode);
46 return err;
47}
48
49static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
50{
51 struct inode * inode = NULL;
52 ino_t ino;
53
54 if (dentry->d_name.len > UFS_MAXNAMLEN)
55 return ERR_PTR(-ENAMETOOLONG);
56
Arnd Bergmann788257d2011-01-24 10:14:12 +010057 lock_ufs(dir->i_sb);
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);
Arnd Bergmann788257d2011-01-24 10:14:12 +010061 unlock_ufs(dir->i_sb);
Al Viro642c9372011-07-17 10:07:34 -040062 if (IS_ERR(inode))
63 return ERR_CAST(inode);
64 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 */
75static int ufs_create (struct inode * dir, struct dentry * dentry, int mode,
76 struct nameidata *nd)
77{
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
99static int ufs_mknod (struct inode * dir, struct dentry *dentry, int mode, dev_t rdev)
100{
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
Arnd Bergmann788257d2011-01-24 10:14:12 +0100131 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))
135 goto out;
136
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 iput(inode);
161 goto out;
162}
163
164static int ufs_link (struct dentry * old_dentry, struct inode * dir,
165 struct dentry *dentry)
166{
167 struct inode *inode = old_dentry->d_inode;
168 int error;
169
Arnd Bergmann788257d2011-01-24 10:14:12 +0100170 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (inode->i_nlink >= UFS_LINK_MAX) {
Arnd Bergmann788257d2011-01-24 10:14:12 +0100172 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return -EMLINK;
174 }
175
176 inode->i_ctime = CURRENT_TIME_SEC;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800177 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400178 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 error = ufs_add_nondir(dentry, inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100181 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return error;
183}
184
185static int ufs_mkdir(struct inode * dir, struct dentry * dentry, int mode)
186{
187 struct inode * inode;
188 int err = -EMLINK;
189
190 if (dir->i_nlink >= UFS_LINK_MAX)
191 goto out;
192
Arnd Bergmann788257d2011-01-24 10:14:12 +0100193 lock_ufs(dir->i_sb);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800194 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 inode = ufs_new_inode(dir, S_IFDIR|mode);
197 err = PTR_ERR(inode);
198 if (IS_ERR(inode))
199 goto out_dir;
200
201 inode->i_op = &ufs_dir_inode_operations;
202 inode->i_fop = &ufs_dir_operations;
Evgeniy Dushistov826843a2006-06-25 05:47:21 -0700203 inode->i_mapping->a_ops = &ufs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alexey Dobriyan32575452006-03-23 03:00:53 -0800205 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 err = ufs_make_empty(inode, dir);
208 if (err)
209 goto out_fail;
210
211 err = ufs_add_link(dentry, inode);
212 if (err)
213 goto out_fail;
Arnd Bergmann788257d2011-01-24 10:14:12 +0100214 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 d_instantiate(dentry, inode);
217out:
218 return err;
219
220out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800221 inode_dec_link_count(inode);
222 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 iput (inode);
224out_dir:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800225 inode_dec_link_count(dir);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100226 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 goto out;
228}
229
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700230static int ufs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct inode * inode = dentry->d_inode;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700233 struct ufs_dir_entry *de;
234 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 int err = -ENOENT;
236
Alexey Dobriyan08049702009-12-15 16:46:50 -0800237 de = ufs_find_entry(dir, &dentry->d_name, &page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (!de)
239 goto out;
240
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700241 err = ufs_delete_entry(dir, de, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (err)
243 goto out;
244
245 inode->i_ctime = dir->i_ctime;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800246 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 err = 0;
248out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return err;
250}
251
252static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
253{
254 struct inode * inode = dentry->d_inode;
255 int err= -ENOTEMPTY;
256
Arnd Bergmann788257d2011-01-24 10:14:12 +0100257 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (ufs_empty_dir (inode)) {
259 err = ufs_unlink(dir, dentry);
260 if (!err) {
261 inode->i_size = 0;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800262 inode_dec_link_count(inode);
263 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265 }
Arnd Bergmann788257d2011-01-24 10:14:12 +0100266 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return err;
268}
269
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700270static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
271 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct inode *old_inode = old_dentry->d_inode;
274 struct inode *new_inode = new_dentry->d_inode;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700275 struct page *dir_page = NULL;
276 struct ufs_dir_entry * dir_de = NULL;
277 struct page *old_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct ufs_dir_entry *old_de;
279 int err = -ENOENT;
280
Alexey Dobriyan08049702009-12-15 16:46:50 -0800281 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (!old_de)
283 goto out;
284
285 if (S_ISDIR(old_inode->i_mode)) {
286 err = -EIO;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700287 dir_de = ufs_dotdot(old_inode, &dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (!dir_de)
289 goto out_old;
290 }
291
292 if (new_inode) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700293 struct page *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 struct ufs_dir_entry *new_de;
295
296 err = -ENOTEMPTY;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700297 if (dir_de && !ufs_empty_dir(new_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 err = -ENOENT;
Alexey Dobriyan08049702009-12-15 16:46:50 -0800301 new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (!new_de)
303 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700304 ufs_set_link(new_dir, new_de, new_page, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 new_inode->i_ctime = CURRENT_TIME_SEC;
306 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700307 drop_nlink(new_inode);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800308 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 } else {
310 if (dir_de) {
311 err = -EMLINK;
312 if (new_dir->i_nlink >= UFS_LINK_MAX)
313 goto out_dir;
314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 err = ufs_add_link(new_dentry, old_inode);
Al Viro37750cd2011-03-02 09:40:21 -0500316 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (dir_de)
Alexey Dobriyan32575452006-03-23 03:00:53 -0800319 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700322 /*
323 * Like most other Unix systems, set the ctime for inodes on a
324 * rename.
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700325 */
326 old_inode->i_ctime = CURRENT_TIME_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700328 ufs_delete_entry(old_dir, old_de, old_page);
Al Viro37750cd2011-03-02 09:40:21 -0500329 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 if (dir_de) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700332 ufs_set_link(old_inode, dir_de, dir_page, new_dir);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800333 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338out_dir:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700339 if (dir_de) {
340 kunmap(dir_page);
341 page_cache_release(dir_page);
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343out_old:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700344 kunmap(old_page);
345 page_cache_release(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return err;
348}
349
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800350const struct inode_operations ufs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 .create = ufs_create,
352 .lookup = ufs_lookup,
353 .link = ufs_link,
354 .unlink = ufs_unlink,
355 .symlink = ufs_symlink,
356 .mkdir = ufs_mkdir,
357 .rmdir = ufs_rmdir,
358 .mknod = ufs_mknod,
359 .rename = ufs_rename,
360};