blob: 90d74b8f8eba8dacd536c74ac161cceddc241196 [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
Al Viro00cd8dd2012-06-10 17:13:09 -040049static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
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 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65/*
66 * By the time this is called, we already have created
67 * the directory cache entry for the new file, but it
68 * is so far negative - it has no inode.
69 *
70 * If the create succeeds, we fill in the inode information
71 * with d_instantiate().
72 */
Al Viro4acdaf22011-07-26 01:42:34 -040073static int ufs_create (struct inode * dir, struct dentry * dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -040074 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070076 struct inode *inode;
77 int err;
78
79 UFSD("BEGIN\n");
Christoph Hellwig907f4552010-03-03 09:05:06 -050080
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070081 inode = ufs_new_inode(dir, mode);
82 err = PTR_ERR(inode);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!IS_ERR(inode)) {
85 inode->i_op = &ufs_file_inode_operations;
86 inode->i_fop = &ufs_file_operations;
87 inode->i_mapping->a_ops = &ufs_aops;
88 mark_inode_dirty(inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +010089 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 err = ufs_add_nondir(dentry, inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +010091 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070093 UFSD("END: err=%d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return err;
95}
96
Al Viro1a67aaf2011-07-26 01:52:52 -040097static int ufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct inode *inode;
100 int err;
101
102 if (!old_valid_dev(rdev))
103 return -EINVAL;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 inode = ufs_new_inode(dir, mode);
106 err = PTR_ERR(inode);
107 if (!IS_ERR(inode)) {
108 init_special_inode(inode, mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
110 mark_inode_dirty(inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100111 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 err = ufs_add_nondir(dentry, inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100113 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115 return err;
116}
117
118static int ufs_symlink (struct inode * dir, struct dentry * dentry,
119 const char * symname)
120{
121 struct super_block * sb = dir->i_sb;
122 int err = -ENAMETOOLONG;
123 unsigned l = strlen(symname)+1;
124 struct inode * inode;
125
126 if (l > sb->s_blocksize)
Josh Triplett344fe782006-07-30 03:03:59 -0700127 goto out_notlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Arnd Bergmann788257d2011-01-24 10:14:12 +0100129 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
131 err = PTR_ERR(inode);
132 if (IS_ERR(inode))
133 goto out;
134
135 if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
136 /* slow symlink */
Dmitry Monakhov311b95492010-04-15 00:56:58 +0200137 inode->i_op = &ufs_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 inode->i_mapping->a_ops = &ufs_aops;
139 err = page_symlink(inode, symname, l);
140 if (err)
141 goto out_fail;
142 } else {
143 /* fast symlink */
144 inode->i_op = &ufs_fast_symlink_inode_operations;
Duane Griffin723be1f2009-01-08 22:43:51 +0000145 memcpy(UFS_I(inode)->i_u1.i_symlink, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 inode->i_size = l-1;
147 }
148 mark_inode_dirty(inode);
149
150 err = ufs_add_nondir(dentry, inode);
151out:
Arnd Bergmann788257d2011-01-24 10:14:12 +0100152 unlock_ufs(dir->i_sb);
Josh Triplett344fe782006-07-30 03:03:59 -0700153out_notlocked:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return err;
155
156out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800157 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 iput(inode);
159 goto out;
160}
161
162static int ufs_link (struct dentry * old_dentry, struct inode * dir,
163 struct dentry *dentry)
164{
165 struct inode *inode = old_dentry->d_inode;
166 int error;
167
Arnd Bergmann788257d2011-01-24 10:14:12 +0100168 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 inode->i_ctime = CURRENT_TIME_SEC;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800171 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400172 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 error = ufs_add_nondir(dentry, inode);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100175 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return error;
177}
178
Al Viro18bb1db2011-07-26 01:41:39 -0400179static int ufs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500182 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Arnd Bergmann788257d2011-01-24 10:14:12 +0100184 lock_ufs(dir->i_sb);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800185 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 inode = ufs_new_inode(dir, S_IFDIR|mode);
188 err = PTR_ERR(inode);
189 if (IS_ERR(inode))
190 goto out_dir;
191
192 inode->i_op = &ufs_dir_inode_operations;
193 inode->i_fop = &ufs_dir_operations;
Evgeniy Dushistov826843a2006-06-25 05:47:21 -0700194 inode->i_mapping->a_ops = &ufs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Alexey Dobriyan32575452006-03-23 03:00:53 -0800196 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 err = ufs_make_empty(inode, dir);
199 if (err)
200 goto out_fail;
201
202 err = ufs_add_link(dentry, inode);
203 if (err)
204 goto out_fail;
Arnd Bergmann788257d2011-01-24 10:14:12 +0100205 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 d_instantiate(dentry, inode);
208out:
209 return err;
210
211out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800212 inode_dec_link_count(inode);
213 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 iput (inode);
215out_dir:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800216 inode_dec_link_count(dir);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100217 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 goto out;
219}
220
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700221static int ufs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct inode * inode = dentry->d_inode;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700224 struct ufs_dir_entry *de;
225 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 int err = -ENOENT;
227
Alexey Dobriyan08049702009-12-15 16:46:50 -0800228 de = ufs_find_entry(dir, &dentry->d_name, &page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!de)
230 goto out;
231
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700232 err = ufs_delete_entry(dir, de, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (err)
234 goto out;
235
236 inode->i_ctime = dir->i_ctime;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800237 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 err = 0;
239out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return err;
241}
242
243static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
244{
245 struct inode * inode = dentry->d_inode;
246 int err= -ENOTEMPTY;
247
Arnd Bergmann788257d2011-01-24 10:14:12 +0100248 lock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (ufs_empty_dir (inode)) {
250 err = ufs_unlink(dir, dentry);
251 if (!err) {
252 inode->i_size = 0;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800253 inode_dec_link_count(inode);
254 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256 }
Arnd Bergmann788257d2011-01-24 10:14:12 +0100257 unlock_ufs(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return err;
259}
260
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700261static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
262 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 struct inode *old_inode = old_dentry->d_inode;
265 struct inode *new_inode = new_dentry->d_inode;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700266 struct page *dir_page = NULL;
267 struct ufs_dir_entry * dir_de = NULL;
268 struct page *old_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 struct ufs_dir_entry *old_de;
270 int err = -ENOENT;
271
Alexey Dobriyan08049702009-12-15 16:46:50 -0800272 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!old_de)
274 goto out;
275
276 if (S_ISDIR(old_inode->i_mode)) {
277 err = -EIO;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700278 dir_de = ufs_dotdot(old_inode, &dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!dir_de)
280 goto out_old;
281 }
282
283 if (new_inode) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700284 struct page *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 struct ufs_dir_entry *new_de;
286
287 err = -ENOTEMPTY;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700288 if (dir_de && !ufs_empty_dir(new_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 err = -ENOENT;
Alexey Dobriyan08049702009-12-15 16:46:50 -0800292 new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (!new_de)
294 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700295 ufs_set_link(new_dir, new_de, new_page, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 new_inode->i_ctime = CURRENT_TIME_SEC;
297 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700298 drop_nlink(new_inode);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800299 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 err = ufs_add_link(new_dentry, old_inode);
Al Viro37750cd2011-03-02 09:40:21 -0500302 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (dir_de)
Alexey Dobriyan32575452006-03-23 03:00:53 -0800305 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700308 /*
309 * Like most other Unix systems, set the ctime for inodes on a
310 * rename.
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700311 */
312 old_inode->i_ctime = CURRENT_TIME_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700314 ufs_delete_entry(old_dir, old_de, old_page);
Al Viro37750cd2011-03-02 09:40:21 -0500315 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 if (dir_de) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700318 ufs_set_link(old_inode, dir_de, dir_page, new_dir);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800319 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 0;
322
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324out_dir:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700325 if (dir_de) {
326 kunmap(dir_page);
327 page_cache_release(dir_page);
328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329out_old:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700330 kunmap(old_page);
331 page_cache_release(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return err;
334}
335
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800336const struct inode_operations ufs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 .create = ufs_create,
338 .lookup = ufs_lookup,
339 .link = ufs_link,
340 .unlink = ufs_unlink,
341 .symlink = ufs_symlink,
342 .mkdir = ufs_mkdir,
343 .rmdir = ufs_rmdir,
344 .mknod = ufs_mknod,
345 .rename = ufs_rename,
346};