blob: 13ec54a99c962a85bc628732102fdb554f750d1c [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"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
40{
41 int err = ext2_add_link(dentry, inode);
42 if (!err) {
Al Viro41080b52008-12-30 01:52:35 -050043 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +040044 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 return 0;
46 }
Alexey Dobriyana513b032006-03-23 03:00:53 -080047 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -050048 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 iput(inode);
50 return err;
51}
52
53/*
54 * Methods themselves.
55 */
56
Al Viro00cd8dd2012-06-10 17:13:09 -040057static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 struct inode * inode;
60 ino_t ino;
61
62 if (dentry->d_name.len > EXT2_NAME_LEN)
63 return ERR_PTR(-ENAMETOOLONG);
64
Al Viroa9885442008-08-24 07:28:39 -040065 ino = ext2_inode_by_name(dir, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 inode = NULL;
67 if (ino) {
David Howells52fcf702008-02-07 00:15:35 -080068 inode = ext2_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -040069 if (inode == ERR_PTR(-ESTALE)) {
70 ext2_error(dir->i_sb, __func__,
71 "deleted inode referenced: %lu",
72 (unsigned long) ino);
73 return ERR_PTR(-EIO);
Bryan Donlan4d6c13f2009-06-30 11:41:24 -070074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
Pekka Enberg082a05c2006-01-14 13:21:07 -080076 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79struct dentry *ext2_get_parent(struct dentry *child)
80{
Linus Torvalds26fe5752012-05-10 13:14:12 -070081 struct qstr dotdot = QSTR_INIT("..", 2);
David Howells2b0143b2015-03-17 22:25:59 +000082 unsigned long ino = ext2_inode_by_name(d_inode(child), &dotdot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (!ino)
84 return ERR_PTR(-ENOENT);
David Howells2b0143b2015-03-17 22:25:59 +000085 return d_obtain_alias(ext2_iget(d_inode(child)->i_sb, ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/*
89 * By the time this is called, we already have created
90 * the directory cache entry for the new file, but it
91 * is so far negative - it has no inode.
92 *
93 * If the create succeeds, we fill in the inode information
94 * with d_instantiate().
95 */
Al Viroebfc3b42012-06-10 18:05:36 -040096static int ext2_create (struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Christoph Hellwig907f4552010-03-03 09:05:06 -050098 struct inode *inode;
99
Christoph Hellwig871a2932010-03-03 09:05:07 -0500100 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500101
Eric Paris2a7dba32011-02-01 11:05:39 -0500102 inode = ext2_new_inode(dir, mode, &dentry->d_name);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500103 if (IS_ERR(inode))
104 return PTR_ERR(inode);
105
106 inode->i_op = &ext2_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -0700107 if (test_opt(inode->i_sb, NOBH)) {
Christoph Hellwig907f4552010-03-03 09:05:06 -0500108 inode->i_mapping->a_ops = &ext2_nobh_aops;
109 inode->i_fop = &ext2_file_operations;
110 } else {
111 inode->i_mapping->a_ops = &ext2_aops;
112 inode->i_fop = &ext2_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
Christoph Hellwig907f4552010-03-03 09:05:06 -0500114 mark_inode_dirty(inode);
115 return ext2_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Al Viro60545d02013-06-07 01:20:27 -0400118static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
119{
120 struct inode *inode = ext2_new_inode(dir, mode, NULL);
121 if (IS_ERR(inode))
122 return PTR_ERR(inode);
123
124 inode->i_op = &ext2_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -0700125 if (test_opt(inode->i_sb, NOBH)) {
Al Viro60545d02013-06-07 01:20:27 -0400126 inode->i_mapping->a_ops = &ext2_nobh_aops;
127 inode->i_fop = &ext2_file_operations;
128 } else {
129 inode->i_mapping->a_ops = &ext2_aops;
130 inode->i_fop = &ext2_file_operations;
131 }
132 mark_inode_dirty(inode);
133 d_tmpfile(dentry, inode);
134 unlock_new_inode(inode);
135 return 0;
136}
137
Al Viro1a67aaf2011-07-26 01:52:52 -0400138static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 struct inode * inode;
141 int err;
142
143 if (!new_valid_dev(rdev))
144 return -EINVAL;
145
Christoph Hellwig871a2932010-03-03 09:05:07 -0500146 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500147
Eric Paris2a7dba32011-02-01 11:05:39 -0500148 inode = ext2_new_inode (dir, mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 err = PTR_ERR(inode);
150 if (!IS_ERR(inode)) {
151 init_special_inode(inode, inode->i_mode, rdev);
152#ifdef CONFIG_EXT2_FS_XATTR
153 inode->i_op = &ext2_special_inode_operations;
154#endif
155 mark_inode_dirty(inode);
156 err = ext2_add_nondir(dentry, inode);
157 }
158 return err;
159}
160
161static int ext2_symlink (struct inode * dir, struct dentry * dentry,
162 const char * symname)
163{
164 struct super_block * sb = dir->i_sb;
165 int err = -ENAMETOOLONG;
166 unsigned l = strlen(symname)+1;
167 struct inode * inode;
168
169 if (l > sb->s_blocksize)
170 goto out;
171
Christoph Hellwig871a2932010-03-03 09:05:07 -0500172 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500173
Eric Paris2a7dba32011-02-01 11:05:39 -0500174 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 err = PTR_ERR(inode);
176 if (IS_ERR(inode))
177 goto out;
178
179 if (l > sizeof (EXT2_I(inode)->i_data)) {
180 /* slow symlink */
181 inode->i_op = &ext2_symlink_inode_operations;
182 if (test_opt(inode->i_sb, NOBH))
183 inode->i_mapping->a_ops = &ext2_nobh_aops;
184 else
185 inode->i_mapping->a_ops = &ext2_aops;
186 err = page_symlink(inode, symname, l);
187 if (err)
188 goto out_fail;
189 } else {
190 /* fast symlink */
191 inode->i_op = &ext2_fast_symlink_inode_operations;
Al Virocbe0fa32015-05-02 10:02:46 -0400192 inode->i_link = (char*)EXT2_I(inode)->i_data;
193 memcpy(inode->i_link, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 inode->i_size = l-1;
195 }
196 mark_inode_dirty(inode);
197
198 err = ext2_add_nondir(dentry, inode);
199out:
200 return err;
201
202out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800203 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500204 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 iput (inode);
206 goto out;
207}
208
209static int ext2_link (struct dentry * old_dentry, struct inode * dir,
210 struct dentry *dentry)
211{
David Howells2b0143b2015-03-17 22:25:59 +0000212 struct inode *inode = d_inode(old_dentry);
Al Viro41080b52008-12-30 01:52:35 -0500213 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Christoph Hellwig871a2932010-03-03 09:05:07 -0500215 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 inode->i_ctime = CURRENT_TIME_SEC;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800218 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400219 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Al Viro41080b52008-12-30 01:52:35 -0500221 err = ext2_add_link(dentry, inode);
222 if (!err) {
223 d_instantiate(dentry, inode);
224 return 0;
225 }
226 inode_dec_link_count(inode);
227 iput(inode);
228 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Al Viro18bb1db2011-07-26 01:41:39 -0400231static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500234 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Christoph Hellwig871a2932010-03-03 09:05:07 -0500236 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500237
Alexey Dobriyana513b032006-03-23 03:00:53 -0800238 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Eric Paris2a7dba32011-02-01 11:05:39 -0500240 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 err = PTR_ERR(inode);
242 if (IS_ERR(inode))
243 goto out_dir;
244
245 inode->i_op = &ext2_dir_inode_operations;
246 inode->i_fop = &ext2_dir_operations;
247 if (test_opt(inode->i_sb, NOBH))
248 inode->i_mapping->a_ops = &ext2_nobh_aops;
249 else
250 inode->i_mapping->a_ops = &ext2_aops;
251
Alexey Dobriyana513b032006-03-23 03:00:53 -0800252 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 err = ext2_make_empty(inode, dir);
255 if (err)
256 goto out_fail;
257
258 err = ext2_add_link(dentry, inode);
259 if (err)
260 goto out_fail;
261
Al Viro41080b52008-12-30 01:52:35 -0500262 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +0400263 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264out:
265 return err;
266
267out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800268 inode_dec_link_count(inode);
269 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500270 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 iput(inode);
272out_dir:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800273 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 goto out;
275}
276
277static int ext2_unlink(struct inode * dir, struct dentry *dentry)
278{
David Howells2b0143b2015-03-17 22:25:59 +0000279 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 struct ext2_dir_entry_2 * de;
281 struct page * page;
282 int err = -ENOENT;
283
Christoph Hellwig871a2932010-03-03 09:05:07 -0500284 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500285
Al Viroa9885442008-08-24 07:28:39 -0400286 de = ext2_find_entry (dir, &dentry->d_name, &page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (!de)
288 goto out;
289
290 err = ext2_delete_entry (de, page);
291 if (err)
292 goto out;
293
294 inode->i_ctime = dir->i_ctime;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800295 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 err = 0;
297out:
298 return err;
299}
300
301static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
302{
David Howells2b0143b2015-03-17 22:25:59 +0000303 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 int err = -ENOTEMPTY;
305
306 if (ext2_empty_dir(inode)) {
307 err = ext2_unlink(dir, dentry);
308 if (!err) {
309 inode->i_size = 0;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800310 inode_dec_link_count(inode);
311 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313 }
314 return err;
315}
316
317static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
318 struct inode * new_dir, struct dentry * new_dentry )
319{
David Howells2b0143b2015-03-17 22:25:59 +0000320 struct inode * old_inode = d_inode(old_dentry);
321 struct inode * new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 struct page * dir_page = NULL;
323 struct ext2_dir_entry_2 * dir_de = NULL;
324 struct page * old_page;
325 struct ext2_dir_entry_2 * old_de;
326 int err = -ENOENT;
327
Christoph Hellwig871a2932010-03-03 09:05:07 -0500328 dquot_initialize(old_dir);
329 dquot_initialize(new_dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500330
Al Viroa9885442008-08-24 07:28:39 -0400331 old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (!old_de)
333 goto out;
334
335 if (S_ISDIR(old_inode->i_mode)) {
336 err = -EIO;
337 dir_de = ext2_dotdot(old_inode, &dir_page);
338 if (!dir_de)
339 goto out_old;
340 }
341
342 if (new_inode) {
343 struct page *new_page;
344 struct ext2_dir_entry_2 *new_de;
345
346 err = -ENOTEMPTY;
347 if (dir_de && !ext2_empty_dir (new_inode))
348 goto out_dir;
349
350 err = -ENOENT;
Al Viroa9885442008-08-24 07:28:39 -0400351 new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (!new_de)
353 goto out_dir;
Jan Kara39fe7552009-06-17 16:26:20 -0700354 ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 new_inode->i_ctime = CURRENT_TIME_SEC;
356 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700357 drop_nlink(new_inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800358 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 err = ext2_add_link(new_dentry, old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100361 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (dir_de)
Alexey Dobriyana513b032006-03-23 03:00:53 -0800364 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
367 /*
368 * Like most other Unix systems, set the ctime for inodes on a
369 * rename.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 */
371 old_inode->i_ctime = CURRENT_TIME_SEC;
Josh Hunte8a80c62011-02-24 11:48:22 +0100372 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 ext2_delete_entry (old_de, old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 if (dir_de) {
Jan Kara39fe7552009-06-17 16:26:20 -0700377 if (old_dir != new_dir)
378 ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400379 else {
380 kunmap(dir_page);
381 page_cache_release(dir_page);
382 }
Alexey Dobriyana513b032006-03-23 03:00:53 -0800383 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385 return 0;
386
387
388out_dir:
389 if (dir_de) {
390 kunmap(dir_page);
391 page_cache_release(dir_page);
392 }
393out_old:
394 kunmap(old_page);
395 page_cache_release(old_page);
396out:
397 return err;
398}
399
Arjan van de Ven754661f2007-02-12 00:55:38 -0800400const struct inode_operations ext2_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 .create = ext2_create,
402 .lookup = ext2_lookup,
403 .link = ext2_link,
404 .unlink = ext2_unlink,
405 .symlink = ext2_symlink,
406 .mkdir = ext2_mkdir,
407 .rmdir = ext2_rmdir,
408 .mknod = ext2_mknod,
409 .rename = ext2_rename,
410#ifdef CONFIG_EXT2_FS_XATTR
411 .setxattr = generic_setxattr,
412 .getxattr = generic_getxattr,
413 .listxattr = ext2_listxattr,
414 .removexattr = generic_removexattr,
415#endif
416 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200417 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800418 .set_acl = ext2_set_acl,
Al Viro60545d02013-06-07 01:20:27 -0400419 .tmpfile = ext2_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
Arjan van de Ven754661f2007-02-12 00:55:38 -0800422const struct inode_operations ext2_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423#ifdef CONFIG_EXT2_FS_XATTR
424 .setxattr = generic_setxattr,
425 .getxattr = generic_getxattr,
426 .listxattr = ext2_listxattr,
427 .removexattr = generic_removexattr,
428#endif
429 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200430 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800431 .set_acl = ext2_set_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432};