blob: 256dd5f4c1c4ade3f1ba160726ed0defabfccaf8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext2/namei.c
3 *
4 * Rewrite to pagecache. Almost all code had been changed, so blame me
5 * if the things go wrong. Please, send bug reports to
6 * viro@parcelfarce.linux.theplanet.co.uk
7 *
8 * Stuff here is basically a glue between the VFS and generic UNIXish
9 * filesystem that keeps everything in pagecache. All knowledge of the
10 * directory layout is in fs/ext2/dir.c - it turned out to be easily separatable
11 * and it's easier to debug that way. In principle we might want to
12 * generalize that a bit and turn it into a library. Or not.
13 *
14 * The only non-static object here is ext2_dir_inode_operations.
15 *
16 * TODO: get rid of kmap() use, add readahead.
17 *
18 * Copyright (C) 1992, 1993, 1994, 1995
19 * Remy Card (card@masi.ibp.fr)
20 * Laboratoire MASI - Institut Blaise Pascal
21 * Universite Pierre et Marie Curie (Paris VI)
22 *
23 * from
24 *
25 * linux/fs/minix/namei.c
26 *
27 * Copyright (C) 1991, 1992 Linus Torvalds
28 *
29 * Big-endian to little-endian byte-swapping/bitmaps by
30 * David S. Miller (davem@caip.rutgers.edu), 1995
31 */
32
33#include <linux/pagemap.h>
Christoph Hellwig907f4552010-03-03 09:05:06 -050034#include <linux/quotaops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "ext2.h"
36#include "xattr.h"
37#include "acl.h"
Carsten Otte6d791252005-06-23 22:05:26 -070038#include "xip.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
41{
42 int err = ext2_add_link(dentry, inode);
43 if (!err) {
Al Viro41080b52008-12-30 01:52:35 -050044 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +040045 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return 0;
47 }
Alexey Dobriyana513b032006-03-23 03:00:53 -080048 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -050049 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 iput(inode);
51 return err;
52}
53
54/*
55 * Methods themselves.
56 */
57
Al Viro00cd8dd2012-06-10 17:13:09 -040058static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct inode * inode;
61 ino_t ino;
62
63 if (dentry->d_name.len > EXT2_NAME_LEN)
64 return ERR_PTR(-ENAMETOOLONG);
65
Al Viroa9885442008-08-24 07:28:39 -040066 ino = ext2_inode_by_name(dir, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 inode = NULL;
68 if (ino) {
David Howells52fcf702008-02-07 00:15:35 -080069 inode = ext2_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -040070 if (inode == ERR_PTR(-ESTALE)) {
71 ext2_error(dir->i_sb, __func__,
72 "deleted inode referenced: %lu",
73 (unsigned long) ino);
74 return ERR_PTR(-EIO);
Bryan Donlan4d6c13f2009-06-30 11:41:24 -070075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
Pekka Enberg082a05c2006-01-14 13:21:07 -080077 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80struct dentry *ext2_get_parent(struct dentry *child)
81{
Linus Torvalds26fe5752012-05-10 13:14:12 -070082 struct qstr dotdot = QSTR_INIT("..", 2);
Al Viroa9885442008-08-24 07:28:39 -040083 unsigned long ino = ext2_inode_by_name(child->d_inode, &dotdot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!ino)
85 return ERR_PTR(-ENOENT);
Christoph Hellwig44003722008-08-11 15:49:04 +020086 return d_obtain_alias(ext2_iget(child->d_inode->i_sb, ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/*
90 * By the time this is called, we already have created
91 * the directory cache entry for the new file, but it
92 * is so far negative - it has no inode.
93 *
94 * If the create succeeds, we fill in the inode information
95 * with d_instantiate().
96 */
Al Viroebfc3b42012-06-10 18:05:36 -040097static int ext2_create (struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Christoph Hellwig907f4552010-03-03 09:05:06 -050099 struct inode *inode;
100
Christoph Hellwig871a2932010-03-03 09:05:07 -0500101 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500102
Eric Paris2a7dba32011-02-01 11:05:39 -0500103 inode = ext2_new_inode(dir, mode, &dentry->d_name);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500104 if (IS_ERR(inode))
105 return PTR_ERR(inode);
106
107 inode->i_op = &ext2_file_inode_operations;
108 if (ext2_use_xip(inode->i_sb)) {
109 inode->i_mapping->a_ops = &ext2_aops_xip;
110 inode->i_fop = &ext2_xip_file_operations;
111 } else if (test_opt(inode->i_sb, NOBH)) {
112 inode->i_mapping->a_ops = &ext2_nobh_aops;
113 inode->i_fop = &ext2_file_operations;
114 } else {
115 inode->i_mapping->a_ops = &ext2_aops;
116 inode->i_fop = &ext2_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Christoph Hellwig907f4552010-03-03 09:05:06 -0500118 mark_inode_dirty(inode);
119 return ext2_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Al Viro60545d02013-06-07 01:20:27 -0400122static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
123{
124 struct inode *inode = ext2_new_inode(dir, mode, NULL);
125 if (IS_ERR(inode))
126 return PTR_ERR(inode);
127
128 inode->i_op = &ext2_file_inode_operations;
129 if (ext2_use_xip(inode->i_sb)) {
130 inode->i_mapping->a_ops = &ext2_aops_xip;
131 inode->i_fop = &ext2_xip_file_operations;
132 } else if (test_opt(inode->i_sb, NOBH)) {
133 inode->i_mapping->a_ops = &ext2_nobh_aops;
134 inode->i_fop = &ext2_file_operations;
135 } else {
136 inode->i_mapping->a_ops = &ext2_aops;
137 inode->i_fop = &ext2_file_operations;
138 }
139 mark_inode_dirty(inode);
140 d_tmpfile(dentry, inode);
141 unlock_new_inode(inode);
142 return 0;
143}
144
Al Viro1a67aaf2011-07-26 01:52:52 -0400145static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct inode * inode;
148 int err;
149
150 if (!new_valid_dev(rdev))
151 return -EINVAL;
152
Christoph Hellwig871a2932010-03-03 09:05:07 -0500153 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500154
Eric Paris2a7dba32011-02-01 11:05:39 -0500155 inode = ext2_new_inode (dir, mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 err = PTR_ERR(inode);
157 if (!IS_ERR(inode)) {
158 init_special_inode(inode, inode->i_mode, rdev);
159#ifdef CONFIG_EXT2_FS_XATTR
160 inode->i_op = &ext2_special_inode_operations;
161#endif
162 mark_inode_dirty(inode);
163 err = ext2_add_nondir(dentry, inode);
164 }
165 return err;
166}
167
168static int ext2_symlink (struct inode * dir, struct dentry * dentry,
169 const char * symname)
170{
171 struct super_block * sb = dir->i_sb;
172 int err = -ENAMETOOLONG;
173 unsigned l = strlen(symname)+1;
174 struct inode * inode;
175
176 if (l > sb->s_blocksize)
177 goto out;
178
Christoph Hellwig871a2932010-03-03 09:05:07 -0500179 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500180
Eric Paris2a7dba32011-02-01 11:05:39 -0500181 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 err = PTR_ERR(inode);
183 if (IS_ERR(inode))
184 goto out;
185
186 if (l > sizeof (EXT2_I(inode)->i_data)) {
187 /* slow symlink */
188 inode->i_op = &ext2_symlink_inode_operations;
189 if (test_opt(inode->i_sb, NOBH))
190 inode->i_mapping->a_ops = &ext2_nobh_aops;
191 else
192 inode->i_mapping->a_ops = &ext2_aops;
193 err = page_symlink(inode, symname, l);
194 if (err)
195 goto out_fail;
196 } else {
197 /* fast symlink */
198 inode->i_op = &ext2_fast_symlink_inode_operations;
199 memcpy((char*)(EXT2_I(inode)->i_data),symname,l);
200 inode->i_size = l-1;
201 }
202 mark_inode_dirty(inode);
203
204 err = ext2_add_nondir(dentry, inode);
205out:
206 return err;
207
208out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800209 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500210 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 iput (inode);
212 goto out;
213}
214
215static int ext2_link (struct dentry * old_dentry, struct inode * dir,
216 struct dentry *dentry)
217{
218 struct inode *inode = old_dentry->d_inode;
Al Viro41080b52008-12-30 01:52:35 -0500219 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Christoph Hellwig871a2932010-03-03 09:05:07 -0500221 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 inode->i_ctime = CURRENT_TIME_SEC;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800224 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400225 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Al Viro41080b52008-12-30 01:52:35 -0500227 err = ext2_add_link(dentry, inode);
228 if (!err) {
229 d_instantiate(dentry, inode);
230 return 0;
231 }
232 inode_dec_link_count(inode);
233 iput(inode);
234 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Al Viro18bb1db2011-07-26 01:41:39 -0400237static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500240 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Christoph Hellwig871a2932010-03-03 09:05:07 -0500242 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500243
Alexey Dobriyana513b032006-03-23 03:00:53 -0800244 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Eric Paris2a7dba32011-02-01 11:05:39 -0500246 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 err = PTR_ERR(inode);
248 if (IS_ERR(inode))
249 goto out_dir;
250
251 inode->i_op = &ext2_dir_inode_operations;
252 inode->i_fop = &ext2_dir_operations;
253 if (test_opt(inode->i_sb, NOBH))
254 inode->i_mapping->a_ops = &ext2_nobh_aops;
255 else
256 inode->i_mapping->a_ops = &ext2_aops;
257
Alexey Dobriyana513b032006-03-23 03:00:53 -0800258 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 err = ext2_make_empty(inode, dir);
261 if (err)
262 goto out_fail;
263
264 err = ext2_add_link(dentry, inode);
265 if (err)
266 goto out_fail;
267
Al Viro41080b52008-12-30 01:52:35 -0500268 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +0400269 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270out:
271 return err;
272
273out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800274 inode_dec_link_count(inode);
275 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500276 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 iput(inode);
278out_dir:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800279 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 goto out;
281}
282
283static int ext2_unlink(struct inode * dir, struct dentry *dentry)
284{
285 struct inode * inode = dentry->d_inode;
286 struct ext2_dir_entry_2 * de;
287 struct page * page;
288 int err = -ENOENT;
289
Christoph Hellwig871a2932010-03-03 09:05:07 -0500290 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500291
Al Viroa9885442008-08-24 07:28:39 -0400292 de = ext2_find_entry (dir, &dentry->d_name, &page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (!de)
294 goto out;
295
296 err = ext2_delete_entry (de, page);
297 if (err)
298 goto out;
299
300 inode->i_ctime = dir->i_ctime;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800301 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 err = 0;
303out:
304 return err;
305}
306
307static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
308{
309 struct inode * inode = dentry->d_inode;
310 int err = -ENOTEMPTY;
311
312 if (ext2_empty_dir(inode)) {
313 err = ext2_unlink(dir, dentry);
314 if (!err) {
315 inode->i_size = 0;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800316 inode_dec_link_count(inode);
317 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 }
320 return err;
321}
322
323static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
324 struct inode * new_dir, struct dentry * new_dentry )
325{
326 struct inode * old_inode = old_dentry->d_inode;
327 struct inode * new_inode = new_dentry->d_inode;
328 struct page * dir_page = NULL;
329 struct ext2_dir_entry_2 * dir_de = NULL;
330 struct page * old_page;
331 struct ext2_dir_entry_2 * old_de;
332 int err = -ENOENT;
333
Christoph Hellwig871a2932010-03-03 09:05:07 -0500334 dquot_initialize(old_dir);
335 dquot_initialize(new_dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500336
Al Viroa9885442008-08-24 07:28:39 -0400337 old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (!old_de)
339 goto out;
340
341 if (S_ISDIR(old_inode->i_mode)) {
342 err = -EIO;
343 dir_de = ext2_dotdot(old_inode, &dir_page);
344 if (!dir_de)
345 goto out_old;
346 }
347
348 if (new_inode) {
349 struct page *new_page;
350 struct ext2_dir_entry_2 *new_de;
351
352 err = -ENOTEMPTY;
353 if (dir_de && !ext2_empty_dir (new_inode))
354 goto out_dir;
355
356 err = -ENOENT;
Al Viroa9885442008-08-24 07:28:39 -0400357 new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!new_de)
359 goto out_dir;
Jan Kara39fe7552009-06-17 16:26:20 -0700360 ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 new_inode->i_ctime = CURRENT_TIME_SEC;
362 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700363 drop_nlink(new_inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800364 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 err = ext2_add_link(new_dentry, old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100367 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (dir_de)
Alexey Dobriyana513b032006-03-23 03:00:53 -0800370 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
373 /*
374 * Like most other Unix systems, set the ctime for inodes on a
375 * rename.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
377 old_inode->i_ctime = CURRENT_TIME_SEC;
Josh Hunte8a80c62011-02-24 11:48:22 +0100378 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 ext2_delete_entry (old_de, old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 if (dir_de) {
Jan Kara39fe7552009-06-17 16:26:20 -0700383 if (old_dir != new_dir)
384 ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400385 else {
386 kunmap(dir_page);
387 page_cache_release(dir_page);
388 }
Alexey Dobriyana513b032006-03-23 03:00:53 -0800389 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391 return 0;
392
393
394out_dir:
395 if (dir_de) {
396 kunmap(dir_page);
397 page_cache_release(dir_page);
398 }
399out_old:
400 kunmap(old_page);
401 page_cache_release(old_page);
402out:
403 return err;
404}
405
Arjan van de Ven754661f2007-02-12 00:55:38 -0800406const struct inode_operations ext2_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 .create = ext2_create,
408 .lookup = ext2_lookup,
409 .link = ext2_link,
410 .unlink = ext2_unlink,
411 .symlink = ext2_symlink,
412 .mkdir = ext2_mkdir,
413 .rmdir = ext2_rmdir,
414 .mknod = ext2_mknod,
415 .rename = ext2_rename,
416#ifdef CONFIG_EXT2_FS_XATTR
417 .setxattr = generic_setxattr,
418 .getxattr = generic_getxattr,
419 .listxattr = ext2_listxattr,
420 .removexattr = generic_removexattr,
421#endif
422 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200423 .get_acl = ext2_get_acl,
Al Viro60545d02013-06-07 01:20:27 -0400424 .tmpfile = ext2_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425};
426
Arjan van de Ven754661f2007-02-12 00:55:38 -0800427const struct inode_operations ext2_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#ifdef CONFIG_EXT2_FS_XATTR
429 .setxattr = generic_setxattr,
430 .getxattr = generic_getxattr,
431 .listxattr = ext2_listxattr,
432 .removexattr = generic_removexattr,
433#endif
434 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200435 .get_acl = ext2_get_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436};