blob: e3a9b1fac75a2c4f6d04c94f6c22bb39d530d523 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/smp_lock.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) {
42 d_instantiate(dentry, inode);
43 return 0;
44 }
Alexey Dobriyan32575452006-03-23 03:00:53 -080045 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 iput(inode);
47 return err;
48}
49
50static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
51{
52 struct inode * inode = NULL;
53 ino_t ino;
54
55 if (dentry->d_name.len > UFS_MAXNAMLEN)
56 return ERR_PTR(-ENAMETOOLONG);
57
58 lock_kernel();
59 ino = ufs_inode_by_name(dir, dentry);
60 if (ino) {
David Howellsb55c4602008-02-07 00:15:48 -080061 inode = ufs_iget(dir->i_sb, ino);
62 if (IS_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 unlock_kernel();
David Howellsb55c4602008-02-07 00:15:48 -080064 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66 }
67 unlock_kernel();
68 d_add(dentry, inode);
69 return NULL;
70}
71
72/*
73 * By the time this is called, we already have created
74 * the directory cache entry for the new file, but it
75 * is so far negative - it has no inode.
76 *
77 * If the create succeeds, we fill in the inode information
78 * with d_instantiate().
79 */
80static int ufs_create (struct inode * dir, struct dentry * dentry, int mode,
81 struct nameidata *nd)
82{
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070083 struct inode *inode;
84 int err;
85
86 UFSD("BEGIN\n");
87 inode = ufs_new_inode(dir, mode);
88 err = PTR_ERR(inode);
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (!IS_ERR(inode)) {
91 inode->i_op = &ufs_file_inode_operations;
92 inode->i_fop = &ufs_file_operations;
93 inode->i_mapping->a_ops = &ufs_aops;
94 mark_inode_dirty(inode);
95 lock_kernel();
96 err = ufs_add_nondir(dentry, inode);
97 unlock_kernel();
98 }
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -070099 UFSD("END: err=%d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return err;
101}
102
103static int ufs_mknod (struct inode * dir, struct dentry *dentry, int mode, dev_t rdev)
104{
105 struct inode *inode;
106 int err;
107
108 if (!old_valid_dev(rdev))
109 return -EINVAL;
110 inode = ufs_new_inode(dir, mode);
111 err = PTR_ERR(inode);
112 if (!IS_ERR(inode)) {
113 init_special_inode(inode, mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
115 mark_inode_dirty(inode);
116 lock_kernel();
117 err = ufs_add_nondir(dentry, inode);
118 unlock_kernel();
119 }
120 return err;
121}
122
123static int ufs_symlink (struct inode * dir, struct dentry * dentry,
124 const char * symname)
125{
126 struct super_block * sb = dir->i_sb;
127 int err = -ENAMETOOLONG;
128 unsigned l = strlen(symname)+1;
129 struct inode * inode;
130
131 if (l > sb->s_blocksize)
Josh Triplett344fe782006-07-30 03:03:59 -0700132 goto out_notlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 lock_kernel();
135 inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
136 err = PTR_ERR(inode);
137 if (IS_ERR(inode))
138 goto out;
139
140 if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
141 /* slow symlink */
142 inode->i_op = &page_symlink_inode_operations;
143 inode->i_mapping->a_ops = &ufs_aops;
144 err = page_symlink(inode, symname, l);
145 if (err)
146 goto out_fail;
147 } else {
148 /* fast symlink */
149 inode->i_op = &ufs_fast_symlink_inode_operations;
150 memcpy((char*)&UFS_I(inode)->i_u1.i_data,symname,l);
151 inode->i_size = l-1;
152 }
153 mark_inode_dirty(inode);
154
155 err = ufs_add_nondir(dentry, inode);
156out:
157 unlock_kernel();
Josh Triplett344fe782006-07-30 03:03:59 -0700158out_notlocked:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return err;
160
161out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800162 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 iput(inode);
164 goto out;
165}
166
167static int ufs_link (struct dentry * old_dentry, struct inode * dir,
168 struct dentry *dentry)
169{
170 struct inode *inode = old_dentry->d_inode;
171 int error;
172
173 lock_kernel();
174 if (inode->i_nlink >= UFS_LINK_MAX) {
175 unlock_kernel();
176 return -EMLINK;
177 }
178
179 inode->i_ctime = CURRENT_TIME_SEC;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800180 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 atomic_inc(&inode->i_count);
182
183 error = ufs_add_nondir(dentry, inode);
184 unlock_kernel();
185 return error;
186}
187
188static int ufs_mkdir(struct inode * dir, struct dentry * dentry, int mode)
189{
190 struct inode * inode;
191 int err = -EMLINK;
192
193 if (dir->i_nlink >= UFS_LINK_MAX)
194 goto out;
195
196 lock_kernel();
Alexey Dobriyan32575452006-03-23 03:00:53 -0800197 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 inode = ufs_new_inode(dir, S_IFDIR|mode);
200 err = PTR_ERR(inode);
201 if (IS_ERR(inode))
202 goto out_dir;
203
204 inode->i_op = &ufs_dir_inode_operations;
205 inode->i_fop = &ufs_dir_operations;
Evgeniy Dushistov826843a2006-06-25 05:47:21 -0700206 inode->i_mapping->a_ops = &ufs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Alexey Dobriyan32575452006-03-23 03:00:53 -0800208 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 err = ufs_make_empty(inode, dir);
211 if (err)
212 goto out_fail;
213
214 err = ufs_add_link(dentry, inode);
215 if (err)
216 goto out_fail;
217 unlock_kernel();
218
219 d_instantiate(dentry, inode);
220out:
221 return err;
222
223out_fail:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800224 inode_dec_link_count(inode);
225 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 iput (inode);
227out_dir:
Alexey Dobriyan32575452006-03-23 03:00:53 -0800228 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 unlock_kernel();
230 goto out;
231}
232
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700233static int ufs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 struct inode * inode = dentry->d_inode;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700236 struct ufs_dir_entry *de;
237 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 int err = -ENOENT;
239
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700240 de = ufs_find_entry(dir, dentry, &page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!de)
242 goto out;
243
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700244 err = ufs_delete_entry(dir, de, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (err)
246 goto out;
247
248 inode->i_ctime = dir->i_ctime;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800249 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 err = 0;
251out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return err;
253}
254
255static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
256{
257 struct inode * inode = dentry->d_inode;
258 int err= -ENOTEMPTY;
259
260 lock_kernel();
261 if (ufs_empty_dir (inode)) {
262 err = ufs_unlink(dir, dentry);
263 if (!err) {
264 inode->i_size = 0;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800265 inode_dec_link_count(inode);
266 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268 }
269 unlock_kernel();
270 return err;
271}
272
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700273static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
274 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct inode *old_inode = old_dentry->d_inode;
277 struct inode *new_inode = new_dentry->d_inode;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700278 struct page *dir_page = NULL;
279 struct ufs_dir_entry * dir_de = NULL;
280 struct page *old_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct ufs_dir_entry *old_de;
282 int err = -ENOENT;
283
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700284 old_de = ufs_find_entry(old_dir, old_dentry, &old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!old_de)
286 goto out;
287
288 if (S_ISDIR(old_inode->i_mode)) {
289 err = -EIO;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700290 dir_de = ufs_dotdot(old_inode, &dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (!dir_de)
292 goto out_old;
293 }
294
295 if (new_inode) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700296 struct page *new_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 struct ufs_dir_entry *new_de;
298
299 err = -ENOTEMPTY;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700300 if (dir_de && !ufs_empty_dir(new_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 goto out_dir;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 err = -ENOENT;
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700304 new_de = ufs_find_entry(new_dir, new_dentry, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!new_de)
306 goto out_dir;
Alexey Dobriyan32575452006-03-23 03:00:53 -0800307 inode_inc_link_count(old_inode);
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700308 ufs_set_link(new_dir, new_de, new_page, old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 new_inode->i_ctime = CURRENT_TIME_SEC;
310 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700311 drop_nlink(new_inode);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800312 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 } else {
314 if (dir_de) {
315 err = -EMLINK;
316 if (new_dir->i_nlink >= UFS_LINK_MAX)
317 goto out_dir;
318 }
Alexey Dobriyan32575452006-03-23 03:00:53 -0800319 inode_inc_link_count(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 err = ufs_add_link(new_dentry, old_inode);
321 if (err) {
Alexey Dobriyan32575452006-03-23 03:00:53 -0800322 inode_dec_link_count(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 goto out_dir;
324 }
325 if (dir_de)
Alexey Dobriyan32575452006-03-23 03:00:53 -0800326 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700329 /*
330 * Like most other Unix systems, set the ctime for inodes on a
331 * rename.
332 * inode_dec_link_count() will mark the inode dirty.
333 */
334 old_inode->i_ctime = CURRENT_TIME_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700336 ufs_delete_entry(old_dir, old_de, old_page);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800337 inode_dec_link_count(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (dir_de) {
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700340 ufs_set_link(old_inode, dir_de, dir_page, new_dir);
Alexey Dobriyan32575452006-03-23 03:00:53 -0800341 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346out_dir:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700347 if (dir_de) {
348 kunmap(dir_page);
349 page_cache_release(dir_page);
350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351out_old:
Evgeniy Dushistovb71034e2006-06-25 05:47:22 -0700352 kunmap(old_page);
353 page_cache_release(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return err;
356}
357
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800358const struct inode_operations ufs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 .create = ufs_create,
360 .lookup = ufs_lookup,
361 .link = ufs_link,
362 .unlink = ufs_unlink,
363 .symlink = ufs_symlink,
364 .mkdir = ufs_mkdir,
365 .rmdir = ufs_rmdir,
366 .mknod = ufs_mknod,
367 .rename = ufs_rename,
368};