blob: 152453a9187763a7173c2d1c41f33714c5287db9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/ext2/namei.c
4 *
5 * Rewrite to pagecache. Almost all code had been changed, so blame me
6 * if the things go wrong. Please, send bug reports to
7 * viro@parcelfarce.linux.theplanet.co.uk
8 *
9 * Stuff here is basically a glue between the VFS and generic UNIXish
10 * filesystem that keeps everything in pagecache. All knowledge of the
11 * directory layout is in fs/ext2/dir.c - it turned out to be easily separatable
12 * and it's easier to debug that way. In principle we might want to
13 * generalize that a bit and turn it into a library. Or not.
14 *
15 * The only non-static object here is ext2_dir_inode_operations.
16 *
17 * TODO: get rid of kmap() use, add readahead.
18 *
19 * Copyright (C) 1992, 1993, 1994, 1995
20 * Remy Card (card@masi.ibp.fr)
21 * Laboratoire MASI - Institut Blaise Pascal
22 * Universite Pierre et Marie Curie (Paris VI)
23 *
24 * from
25 *
26 * linux/fs/minix/namei.c
27 *
28 * Copyright (C) 1991, 1992 Linus Torvalds
29 *
30 * Big-endian to little-endian byte-swapping/bitmaps by
31 * David S. Miller (davem@caip.rutgers.edu), 1995
32 */
33
34#include <linux/pagemap.h>
Christoph Hellwig907f4552010-03-03 09:05:06 -050035#include <linux/quotaops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "ext2.h"
37#include "xattr.h"
38#include "acl.h"
39
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 Viro1e2e5472018-05-04 08:23:01 -040044 d_instantiate_new(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);
Al Virofc640052016-04-10 01:33:30 -040085 return d_obtain_alias(ext2_iget(child->d_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;
Jan Karac2edb302015-06-29 16:08:45 +020099 int err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500100
Jan Karac2edb302015-06-29 16:08:45 +0200101 err = dquot_initialize(dir);
102 if (err)
103 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500104
Eric Paris2a7dba32011-02-01 11:05:39 -0500105 inode = ext2_new_inode(dir, mode, &dentry->d_name);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500106 if (IS_ERR(inode))
107 return PTR_ERR(inode);
108
Dan Williamsfb094c92017-12-21 12:25:11 -0800109 ext2_set_file_ops(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500110 mark_inode_dirty(inode);
111 return ext2_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Al Viro60545d02013-06-07 01:20:27 -0400114static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
115{
116 struct inode *inode = ext2_new_inode(dir, mode, NULL);
117 if (IS_ERR(inode))
118 return PTR_ERR(inode);
119
Dan Williamsfb094c92017-12-21 12:25:11 -0800120 ext2_set_file_ops(inode);
Al Viro60545d02013-06-07 01:20:27 -0400121 mark_inode_dirty(inode);
122 d_tmpfile(dentry, inode);
123 unlock_new_inode(inode);
124 return 0;
125}
126
Al Viro1a67aaf2011-07-26 01:52:52 -0400127static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct inode * inode;
130 int err;
131
Jan Karac2edb302015-06-29 16:08:45 +0200132 err = dquot_initialize(dir);
133 if (err)
134 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500135
Eric Paris2a7dba32011-02-01 11:05:39 -0500136 inode = ext2_new_inode (dir, mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 err = PTR_ERR(inode);
138 if (!IS_ERR(inode)) {
139 init_special_inode(inode, inode->i_mode, rdev);
140#ifdef CONFIG_EXT2_FS_XATTR
141 inode->i_op = &ext2_special_inode_operations;
142#endif
143 mark_inode_dirty(inode);
144 err = ext2_add_nondir(dentry, inode);
145 }
146 return err;
147}
148
149static int ext2_symlink (struct inode * dir, struct dentry * dentry,
150 const char * symname)
151{
152 struct super_block * sb = dir->i_sb;
153 int err = -ENAMETOOLONG;
154 unsigned l = strlen(symname)+1;
155 struct inode * inode;
156
157 if (l > sb->s_blocksize)
158 goto out;
159
Jan Karac2edb302015-06-29 16:08:45 +0200160 err = dquot_initialize(dir);
161 if (err)
162 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500163
Eric Paris2a7dba32011-02-01 11:05:39 -0500164 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 err = PTR_ERR(inode);
166 if (IS_ERR(inode))
167 goto out;
168
169 if (l > sizeof (EXT2_I(inode)->i_data)) {
170 /* slow symlink */
171 inode->i_op = &ext2_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500172 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (test_opt(inode->i_sb, NOBH))
174 inode->i_mapping->a_ops = &ext2_nobh_aops;
175 else
176 inode->i_mapping->a_ops = &ext2_aops;
177 err = page_symlink(inode, symname, l);
178 if (err)
179 goto out_fail;
180 } else {
181 /* fast symlink */
182 inode->i_op = &ext2_fast_symlink_inode_operations;
Al Virocbe0fa32015-05-02 10:02:46 -0400183 inode->i_link = (char*)EXT2_I(inode)->i_data;
184 memcpy(inode->i_link, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 inode->i_size = l-1;
186 }
187 mark_inode_dirty(inode);
188
189 err = ext2_add_nondir(dentry, inode);
190out:
191 return err;
192
193out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800194 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500195 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 iput (inode);
197 goto out;
198}
199
200static int ext2_link (struct dentry * old_dentry, struct inode * dir,
201 struct dentry *dentry)
202{
David Howells2b0143b2015-03-17 22:25:59 +0000203 struct inode *inode = d_inode(old_dentry);
Al Viro41080b52008-12-30 01:52:35 -0500204 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Jan Karac2edb302015-06-29 16:08:45 +0200206 err = dquot_initialize(dir);
207 if (err)
208 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500209
Deepa Dinamani02027d42016-09-14 07:48:05 -0700210 inode->i_ctime = current_time(inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800211 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400212 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Al Viro41080b52008-12-30 01:52:35 -0500214 err = ext2_add_link(dentry, inode);
215 if (!err) {
216 d_instantiate(dentry, inode);
217 return 0;
218 }
219 inode_dec_link_count(inode);
220 iput(inode);
221 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Al Viro18bb1db2011-07-26 01:41:39 -0400224static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500227 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Jan Karac2edb302015-06-29 16:08:45 +0200229 err = dquot_initialize(dir);
230 if (err)
231 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500232
Alexey Dobriyana513b032006-03-23 03:00:53 -0800233 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Eric Paris2a7dba32011-02-01 11:05:39 -0500235 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 err = PTR_ERR(inode);
237 if (IS_ERR(inode))
238 goto out_dir;
239
240 inode->i_op = &ext2_dir_inode_operations;
241 inode->i_fop = &ext2_dir_operations;
242 if (test_opt(inode->i_sb, NOBH))
243 inode->i_mapping->a_ops = &ext2_nobh_aops;
244 else
245 inode->i_mapping->a_ops = &ext2_aops;
246
Alexey Dobriyana513b032006-03-23 03:00:53 -0800247 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 err = ext2_make_empty(inode, dir);
250 if (err)
251 goto out_fail;
252
253 err = ext2_add_link(dentry, inode);
254 if (err)
255 goto out_fail;
256
Al Viro1e2e5472018-05-04 08:23:01 -0400257 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258out:
259 return err;
260
261out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800262 inode_dec_link_count(inode);
263 inode_dec_link_count(inode);
Al Viro41080b52008-12-30 01:52:35 -0500264 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 iput(inode);
266out_dir:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800267 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 goto out;
269}
270
271static int ext2_unlink(struct inode * dir, struct dentry *dentry)
272{
David Howells2b0143b2015-03-17 22:25:59 +0000273 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct ext2_dir_entry_2 * de;
275 struct page * page;
Jan Karac2edb302015-06-29 16:08:45 +0200276 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Jan Karac2edb302015-06-29 16:08:45 +0200278 err = dquot_initialize(dir);
279 if (err)
280 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500281
Al Viroa9885442008-08-24 07:28:39 -0400282 de = ext2_find_entry (dir, &dentry->d_name, &page);
Jan Karac2edb302015-06-29 16:08:45 +0200283 if (!de) {
284 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 err = ext2_delete_entry (de, page);
289 if (err)
290 goto out;
291
292 inode->i_ctime = dir->i_ctime;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800293 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 err = 0;
295out:
296 return err;
297}
298
299static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
300{
David Howells2b0143b2015-03-17 22:25:59 +0000301 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 int err = -ENOTEMPTY;
303
304 if (ext2_empty_dir(inode)) {
305 err = ext2_unlink(dir, dentry);
306 if (!err) {
307 inode->i_size = 0;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800308 inode_dec_link_count(inode);
309 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311 }
312 return err;
313}
314
315static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200316 struct inode * new_dir, struct dentry * new_dentry,
317 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
David Howells2b0143b2015-03-17 22:25:59 +0000319 struct inode * old_inode = d_inode(old_dentry);
320 struct inode * new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct page * dir_page = NULL;
322 struct ext2_dir_entry_2 * dir_de = NULL;
323 struct page * old_page;
324 struct ext2_dir_entry_2 * old_de;
Jan Karac2edb302015-06-29 16:08:45 +0200325 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200327 if (flags & ~RENAME_NOREPLACE)
328 return -EINVAL;
329
Jan Karac2edb302015-06-29 16:08:45 +0200330 err = dquot_initialize(old_dir);
331 if (err)
332 goto out;
333
334 err = dquot_initialize(new_dir);
335 if (err)
336 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500337
Al Viroa9885442008-08-24 07:28:39 -0400338 old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
Jan Karac2edb302015-06-29 16:08:45 +0200339 if (!old_de) {
340 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (S_ISDIR(old_inode->i_mode)) {
345 err = -EIO;
346 dir_de = ext2_dotdot(old_inode, &dir_page);
347 if (!dir_de)
348 goto out_old;
349 }
350
351 if (new_inode) {
352 struct page *new_page;
353 struct ext2_dir_entry_2 *new_de;
354
355 err = -ENOTEMPTY;
356 if (dir_de && !ext2_empty_dir (new_inode))
357 goto out_dir;
358
359 err = -ENOENT;
Al Viroa9885442008-08-24 07:28:39 -0400360 new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (!new_de)
362 goto out_dir;
Jan Kara39fe7552009-06-17 16:26:20 -0700363 ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700364 new_inode->i_ctime = current_time(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700366 drop_nlink(new_inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800367 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 err = ext2_add_link(new_dentry, old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100370 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (dir_de)
Alexey Dobriyana513b032006-03-23 03:00:53 -0800373 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
376 /*
377 * Like most other Unix systems, set the ctime for inodes on a
378 * rename.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
Deepa Dinamani02027d42016-09-14 07:48:05 -0700380 old_inode->i_ctime = current_time(old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100381 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 ext2_delete_entry (old_de, old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (dir_de) {
Jan Kara39fe7552009-06-17 16:26:20 -0700386 if (old_dir != new_dir)
387 ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400388 else {
389 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300390 put_page(dir_page);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400391 }
Alexey Dobriyana513b032006-03-23 03:00:53 -0800392 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394 return 0;
395
396
397out_dir:
398 if (dir_de) {
399 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300400 put_page(dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402out_old:
403 kunmap(old_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300404 put_page(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405out:
406 return err;
407}
408
Arjan van de Ven754661f2007-02-12 00:55:38 -0800409const struct inode_operations ext2_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 .create = ext2_create,
411 .lookup = ext2_lookup,
412 .link = ext2_link,
413 .unlink = ext2_unlink,
414 .symlink = ext2_symlink,
415 .mkdir = ext2_mkdir,
416 .rmdir = ext2_rmdir,
417 .mknod = ext2_mknod,
418 .rename = ext2_rename,
419#ifdef CONFIG_EXT2_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 .listxattr = ext2_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#endif
422 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200423 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800424 .set_acl = ext2_set_acl,
Al Viro60545d02013-06-07 01:20:27 -0400425 .tmpfile = ext2_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426};
427
Arjan van de Ven754661f2007-02-12 00:55:38 -0800428const struct inode_operations ext2_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429#ifdef CONFIG_EXT2_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 .listxattr = ext2_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431#endif
432 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200433 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800434 .set_acl = ext2_set_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435};