blob: c8efc5ea1b9fdb0091a0a4e153e5c0f6c8392c2c [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 Viro2d2d3f12018-05-04 08:23:01 -040043 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return 0;
45 }
Alexey Dobriyana513b032006-03-23 03:00:53 -080046 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -050047 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 iput(inode);
49 return err;
50}
51
52/*
53 * Methods themselves.
54 */
55
Al Viro00cd8dd2012-06-10 17:13:09 -040056static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 struct inode * inode;
59 ino_t ino;
60
61 if (dentry->d_name.len > EXT2_NAME_LEN)
62 return ERR_PTR(-ENAMETOOLONG);
63
Al Viroa9885442008-08-24 07:28:39 -040064 ino = ext2_inode_by_name(dir, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 inode = NULL;
66 if (ino) {
David Howells52fcf702008-02-07 00:15:35 -080067 inode = ext2_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -040068 if (inode == ERR_PTR(-ESTALE)) {
69 ext2_error(dir->i_sb, __func__,
70 "deleted inode referenced: %lu",
71 (unsigned long) ino);
72 return ERR_PTR(-EIO);
Bryan Donlan4d6c13f2009-06-30 11:41:24 -070073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
Pekka Enberg082a05c2006-01-14 13:21:07 -080075 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78struct dentry *ext2_get_parent(struct dentry *child)
79{
Linus Torvalds26fe5752012-05-10 13:14:12 -070080 struct qstr dotdot = QSTR_INIT("..", 2);
David Howells2b0143b2015-03-17 22:25:59 +000081 unsigned long ino = ext2_inode_by_name(d_inode(child), &dotdot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (!ino)
83 return ERR_PTR(-ENOENT);
Al Virofc640052016-04-10 01:33:30 -040084 return d_obtain_alias(ext2_iget(child->d_sb, ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87/*
88 * By the time this is called, we already have created
89 * the directory cache entry for the new file, but it
90 * is so far negative - it has no inode.
91 *
92 * If the create succeeds, we fill in the inode information
93 * with d_instantiate().
94 */
Al Viroebfc3b42012-06-10 18:05:36 -040095static int ext2_create (struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Christoph Hellwig907f4552010-03-03 09:05:06 -050097 struct inode *inode;
Jan Karac2edb302015-06-29 16:08:45 +020098 int err;
Christoph Hellwig907f4552010-03-03 09:05:06 -050099
Jan Karac2edb302015-06-29 16:08:45 +0200100 err = dquot_initialize(dir);
101 if (err)
102 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500103
Eric Paris2a7dba32011-02-01 11:05:39 -0500104 inode = ext2_new_inode(dir, mode, &dentry->d_name);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500105 if (IS_ERR(inode))
106 return PTR_ERR(inode);
107
108 inode->i_op = &ext2_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -0700109 if (test_opt(inode->i_sb, NOBH)) {
Christoph Hellwig907f4552010-03-03 09:05:06 -0500110 inode->i_mapping->a_ops = &ext2_nobh_aops;
111 inode->i_fop = &ext2_file_operations;
112 } else {
113 inode->i_mapping->a_ops = &ext2_aops;
114 inode->i_fop = &ext2_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
Christoph Hellwig907f4552010-03-03 09:05:06 -0500116 mark_inode_dirty(inode);
117 return ext2_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Al Viro60545d02013-06-07 01:20:27 -0400120static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
121{
122 struct inode *inode = ext2_new_inode(dir, mode, NULL);
123 if (IS_ERR(inode))
124 return PTR_ERR(inode);
125
126 inode->i_op = &ext2_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -0700127 if (test_opt(inode->i_sb, NOBH)) {
Al Viro60545d02013-06-07 01:20:27 -0400128 inode->i_mapping->a_ops = &ext2_nobh_aops;
129 inode->i_fop = &ext2_file_operations;
130 } else {
131 inode->i_mapping->a_ops = &ext2_aops;
132 inode->i_fop = &ext2_file_operations;
133 }
134 mark_inode_dirty(inode);
135 d_tmpfile(dentry, inode);
136 unlock_new_inode(inode);
137 return 0;
138}
139
Al Viro1a67aaf2011-07-26 01:52:52 -0400140static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct inode * inode;
143 int err;
144
Jan Karac2edb302015-06-29 16:08:45 +0200145 err = dquot_initialize(dir);
146 if (err)
147 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500148
Eric Paris2a7dba32011-02-01 11:05:39 -0500149 inode = ext2_new_inode (dir, mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 err = PTR_ERR(inode);
151 if (!IS_ERR(inode)) {
152 init_special_inode(inode, inode->i_mode, rdev);
153#ifdef CONFIG_EXT2_FS_XATTR
154 inode->i_op = &ext2_special_inode_operations;
155#endif
156 mark_inode_dirty(inode);
157 err = ext2_add_nondir(dentry, inode);
158 }
159 return err;
160}
161
162static int ext2_symlink (struct inode * dir, struct dentry * dentry,
163 const char * symname)
164{
165 struct super_block * sb = dir->i_sb;
166 int err = -ENAMETOOLONG;
167 unsigned l = strlen(symname)+1;
168 struct inode * inode;
169
170 if (l > sb->s_blocksize)
171 goto out;
172
Jan Karac2edb302015-06-29 16:08:45 +0200173 err = dquot_initialize(dir);
174 if (err)
175 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500176
Eric Paris2a7dba32011-02-01 11:05:39 -0500177 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 err = PTR_ERR(inode);
179 if (IS_ERR(inode))
180 goto out;
181
182 if (l > sizeof (EXT2_I(inode)->i_data)) {
183 /* slow symlink */
184 inode->i_op = &ext2_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500185 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (test_opt(inode->i_sb, NOBH))
187 inode->i_mapping->a_ops = &ext2_nobh_aops;
188 else
189 inode->i_mapping->a_ops = &ext2_aops;
190 err = page_symlink(inode, symname, l);
191 if (err)
192 goto out_fail;
193 } else {
194 /* fast symlink */
195 inode->i_op = &ext2_fast_symlink_inode_operations;
Al Virocbe0fa32015-05-02 10:02:46 -0400196 inode->i_link = (char*)EXT2_I(inode)->i_data;
197 memcpy(inode->i_link, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 inode->i_size = l-1;
199 }
200 mark_inode_dirty(inode);
201
202 err = ext2_add_nondir(dentry, inode);
203out:
204 return err;
205
206out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800207 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500208 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 iput (inode);
210 goto out;
211}
212
213static int ext2_link (struct dentry * old_dentry, struct inode * dir,
214 struct dentry *dentry)
215{
David Howells2b0143b2015-03-17 22:25:59 +0000216 struct inode *inode = d_inode(old_dentry);
Al Viro41080b52008-12-30 01:52:35 -0500217 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Jan Karac2edb302015-06-29 16:08:45 +0200219 err = dquot_initialize(dir);
220 if (err)
221 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500222
Deepa Dinamani02027d42016-09-14 07:48:05 -0700223 inode->i_ctime = current_time(inode);
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
Jan Karac2edb302015-06-29 16:08:45 +0200242 err = dquot_initialize(dir);
243 if (err)
244 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500245
Alexey Dobriyana513b032006-03-23 03:00:53 -0800246 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Eric Paris2a7dba32011-02-01 11:05:39 -0500248 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 err = PTR_ERR(inode);
250 if (IS_ERR(inode))
251 goto out_dir;
252
253 inode->i_op = &ext2_dir_inode_operations;
254 inode->i_fop = &ext2_dir_operations;
255 if (test_opt(inode->i_sb, NOBH))
256 inode->i_mapping->a_ops = &ext2_nobh_aops;
257 else
258 inode->i_mapping->a_ops = &ext2_aops;
259
Alexey Dobriyana513b032006-03-23 03:00:53 -0800260 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 err = ext2_make_empty(inode, dir);
263 if (err)
264 goto out_fail;
265
266 err = ext2_add_link(dentry, inode);
267 if (err)
268 goto out_fail;
269
Al Viro2d2d3f12018-05-04 08:23:01 -0400270 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271out:
272 return err;
273
274out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800275 inode_dec_link_count(inode);
276 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500277 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 iput(inode);
279out_dir:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800280 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 goto out;
282}
283
284static int ext2_unlink(struct inode * dir, struct dentry *dentry)
285{
David Howells2b0143b2015-03-17 22:25:59 +0000286 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct ext2_dir_entry_2 * de;
288 struct page * page;
Jan Karac2edb302015-06-29 16:08:45 +0200289 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Jan Karac2edb302015-06-29 16:08:45 +0200291 err = dquot_initialize(dir);
292 if (err)
293 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500294
Al Viroa9885442008-08-24 07:28:39 -0400295 de = ext2_find_entry (dir, &dentry->d_name, &page);
Jan Karac2edb302015-06-29 16:08:45 +0200296 if (!de) {
297 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 err = ext2_delete_entry (de, page);
302 if (err)
303 goto out;
304
305 inode->i_ctime = dir->i_ctime;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800306 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 err = 0;
308out:
309 return err;
310}
311
312static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
313{
David Howells2b0143b2015-03-17 22:25:59 +0000314 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 int err = -ENOTEMPTY;
316
317 if (ext2_empty_dir(inode)) {
318 err = ext2_unlink(dir, dentry);
319 if (!err) {
320 inode->i_size = 0;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800321 inode_dec_link_count(inode);
322 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 }
325 return err;
326}
327
328static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200329 struct inode * new_dir, struct dentry * new_dentry,
330 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
David Howells2b0143b2015-03-17 22:25:59 +0000332 struct inode * old_inode = d_inode(old_dentry);
333 struct inode * new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct page * dir_page = NULL;
335 struct ext2_dir_entry_2 * dir_de = NULL;
336 struct page * old_page;
337 struct ext2_dir_entry_2 * old_de;
Jan Karac2edb302015-06-29 16:08:45 +0200338 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200340 if (flags & ~RENAME_NOREPLACE)
341 return -EINVAL;
342
Jan Karac2edb302015-06-29 16:08:45 +0200343 err = dquot_initialize(old_dir);
344 if (err)
345 goto out;
346
347 err = dquot_initialize(new_dir);
348 if (err)
349 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500350
Al Viroa9885442008-08-24 07:28:39 -0400351 old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
Jan Karac2edb302015-06-29 16:08:45 +0200352 if (!old_de) {
353 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (S_ISDIR(old_inode->i_mode)) {
358 err = -EIO;
359 dir_de = ext2_dotdot(old_inode, &dir_page);
360 if (!dir_de)
361 goto out_old;
362 }
363
364 if (new_inode) {
365 struct page *new_page;
366 struct ext2_dir_entry_2 *new_de;
367
368 err = -ENOTEMPTY;
369 if (dir_de && !ext2_empty_dir (new_inode))
370 goto out_dir;
371
372 err = -ENOENT;
Al Viroa9885442008-08-24 07:28:39 -0400373 new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (!new_de)
375 goto out_dir;
Jan Kara39fe7552009-06-17 16:26:20 -0700376 ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700377 new_inode->i_ctime = current_time(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700379 drop_nlink(new_inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800380 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 err = ext2_add_link(new_dentry, old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100383 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (dir_de)
Alexey Dobriyana513b032006-03-23 03:00:53 -0800386 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 /*
390 * Like most other Unix systems, set the ctime for inodes on a
391 * rename.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Deepa Dinamani02027d42016-09-14 07:48:05 -0700393 old_inode->i_ctime = current_time(old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100394 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 ext2_delete_entry (old_de, old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (dir_de) {
Jan Kara39fe7552009-06-17 16:26:20 -0700399 if (old_dir != new_dir)
400 ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400401 else {
402 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300403 put_page(dir_page);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400404 }
Alexey Dobriyana513b032006-03-23 03:00:53 -0800405 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407 return 0;
408
409
410out_dir:
411 if (dir_de) {
412 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300413 put_page(dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415out_old:
416 kunmap(old_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300417 put_page(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418out:
419 return err;
420}
421
Arjan van de Ven754661f2007-02-12 00:55:38 -0800422const struct inode_operations ext2_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 .create = ext2_create,
424 .lookup = ext2_lookup,
425 .link = ext2_link,
426 .unlink = ext2_unlink,
427 .symlink = ext2_symlink,
428 .mkdir = ext2_mkdir,
429 .rmdir = ext2_rmdir,
430 .mknod = ext2_mknod,
431 .rename = ext2_rename,
432#ifdef CONFIG_EXT2_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 .listxattr = ext2_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#endif
435 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200436 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800437 .set_acl = ext2_set_acl,
Al Viro60545d02013-06-07 01:20:27 -0400438 .tmpfile = ext2_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439};
440
Arjan van de Ven754661f2007-02-12 00:55:38 -0800441const struct inode_operations ext2_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#ifdef CONFIG_EXT2_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .listxattr = ext2_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#endif
445 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200446 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800447 .set_acl = ext2_set_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448};