blob: 9a6ab213bc4df740cac46a5bccb69e458d317129 [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 Viro2e5afe52018-05-16 18:29:56 -040048 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 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;
zhangyi (F)b4962092020-06-08 11:40:42 +080059 ino_t ino = 0;
60 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 if (dentry->d_name.len > EXT2_NAME_LEN)
63 return ERR_PTR(-ENAMETOOLONG);
64
zhangyi (F)b4962092020-06-08 11:40:42 +080065 res = ext2_inode_by_name(dir, &dentry->d_name, &ino);
66 if (res)
67 return ERR_PTR(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 inode = NULL;
69 if (ino) {
David Howells52fcf702008-02-07 00:15:35 -080070 inode = ext2_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -040071 if (inode == ERR_PTR(-ESTALE)) {
72 ext2_error(dir->i_sb, __func__,
73 "deleted inode referenced: %lu",
74 (unsigned long) ino);
75 return ERR_PTR(-EIO);
Bryan Donlan4d6c13f2009-06-30 11:41:24 -070076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
Pekka Enberg082a05c2006-01-14 13:21:07 -080078 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81struct dentry *ext2_get_parent(struct dentry *child)
82{
Linus Torvalds26fe5752012-05-10 13:14:12 -070083 struct qstr dotdot = QSTR_INIT("..", 2);
zhangyi (F)b4962092020-06-08 11:40:42 +080084 ino_t ino = 0;
85 int res;
86
87 res = ext2_inode_by_name(d_inode(child), &dotdot, &ino);
88 if (res)
89 return ERR_PTR(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (!ino)
91 return ERR_PTR(-ENOENT);
Al Virofc640052016-04-10 01:33:30 -040092 return d_obtain_alias(ext2_iget(child->d_sb, ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95/*
96 * By the time this is called, we already have created
97 * the directory cache entry for the new file, but it
98 * is so far negative - it has no inode.
99 *
100 * If the create succeeds, we fill in the inode information
101 * with d_instantiate().
102 */
Al Viroebfc3b42012-06-10 18:05:36 -0400103static int ext2_create (struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Christoph Hellwig907f4552010-03-03 09:05:06 -0500105 struct inode *inode;
Jan Karac2edb302015-06-29 16:08:45 +0200106 int err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500107
Jan Karac2edb302015-06-29 16:08:45 +0200108 err = dquot_initialize(dir);
109 if (err)
110 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500111
Eric Paris2a7dba32011-02-01 11:05:39 -0500112 inode = ext2_new_inode(dir, mode, &dentry->d_name);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500113 if (IS_ERR(inode))
114 return PTR_ERR(inode);
115
Dan Williamsfb094c92017-12-21 12:25:11 -0800116 ext2_set_file_ops(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500117 mark_inode_dirty(inode);
118 return ext2_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Al Viro60545d02013-06-07 01:20:27 -0400121static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
122{
123 struct inode *inode = ext2_new_inode(dir, mode, NULL);
124 if (IS_ERR(inode))
125 return PTR_ERR(inode);
126
Dan Williamsfb094c92017-12-21 12:25:11 -0800127 ext2_set_file_ops(inode);
Al Viro60545d02013-06-07 01:20:27 -0400128 mark_inode_dirty(inode);
129 d_tmpfile(dentry, inode);
130 unlock_new_inode(inode);
131 return 0;
132}
133
Al Viro1a67aaf2011-07-26 01:52:52 -0400134static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct inode * inode;
137 int err;
138
Jan Karac2edb302015-06-29 16:08:45 +0200139 err = dquot_initialize(dir);
140 if (err)
141 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500142
Eric Paris2a7dba32011-02-01 11:05:39 -0500143 inode = ext2_new_inode (dir, mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 err = PTR_ERR(inode);
145 if (!IS_ERR(inode)) {
146 init_special_inode(inode, inode->i_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 inode->i_op = &ext2_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 mark_inode_dirty(inode);
149 err = ext2_add_nondir(dentry, inode);
150 }
151 return err;
152}
153
154static int ext2_symlink (struct inode * dir, struct dentry * dentry,
155 const char * symname)
156{
157 struct super_block * sb = dir->i_sb;
158 int err = -ENAMETOOLONG;
159 unsigned l = strlen(symname)+1;
160 struct inode * inode;
161
162 if (l > sb->s_blocksize)
163 goto out;
164
Jan Karac2edb302015-06-29 16:08:45 +0200165 err = dquot_initialize(dir);
166 if (err)
167 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500168
Eric Paris2a7dba32011-02-01 11:05:39 -0500169 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 err = PTR_ERR(inode);
171 if (IS_ERR(inode))
172 goto out;
173
174 if (l > sizeof (EXT2_I(inode)->i_data)) {
175 /* slow symlink */
176 inode->i_op = &ext2_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500177 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (test_opt(inode->i_sb, NOBH))
179 inode->i_mapping->a_ops = &ext2_nobh_aops;
180 else
181 inode->i_mapping->a_ops = &ext2_aops;
182 err = page_symlink(inode, symname, l);
183 if (err)
184 goto out_fail;
185 } else {
186 /* fast symlink */
187 inode->i_op = &ext2_fast_symlink_inode_operations;
Al Virocbe0fa32015-05-02 10:02:46 -0400188 inode->i_link = (char*)EXT2_I(inode)->i_data;
189 memcpy(inode->i_link, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 inode->i_size = l-1;
191 }
192 mark_inode_dirty(inode);
193
194 err = ext2_add_nondir(dentry, inode);
195out:
196 return err;
197
198out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800199 inode_dec_link_count(inode);
Al Viro2e5afe52018-05-16 18:29:56 -0400200 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 goto out;
202}
203
204static int ext2_link (struct dentry * old_dentry, struct inode * dir,
205 struct dentry *dentry)
206{
David Howells2b0143b2015-03-17 22:25:59 +0000207 struct inode *inode = d_inode(old_dentry);
Al Viro41080b52008-12-30 01:52:35 -0500208 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Jan Karac2edb302015-06-29 16:08:45 +0200210 err = dquot_initialize(dir);
211 if (err)
212 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500213
Deepa Dinamani02027d42016-09-14 07:48:05 -0700214 inode->i_ctime = current_time(inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800215 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400216 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Al Viro41080b52008-12-30 01:52:35 -0500218 err = ext2_add_link(dentry, inode);
219 if (!err) {
220 d_instantiate(dentry, inode);
221 return 0;
222 }
223 inode_dec_link_count(inode);
224 iput(inode);
225 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Al Viro18bb1db2011-07-26 01:41:39 -0400228static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500231 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jan Karac2edb302015-06-29 16:08:45 +0200233 err = dquot_initialize(dir);
234 if (err)
235 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500236
Alexey Dobriyana513b032006-03-23 03:00:53 -0800237 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Eric Paris2a7dba32011-02-01 11:05:39 -0500239 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 err = PTR_ERR(inode);
241 if (IS_ERR(inode))
242 goto out_dir;
243
244 inode->i_op = &ext2_dir_inode_operations;
245 inode->i_fop = &ext2_dir_operations;
246 if (test_opt(inode->i_sb, NOBH))
247 inode->i_mapping->a_ops = &ext2_nobh_aops;
248 else
249 inode->i_mapping->a_ops = &ext2_aops;
250
Alexey Dobriyana513b032006-03-23 03:00:53 -0800251 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 err = ext2_make_empty(inode, dir);
254 if (err)
255 goto out_fail;
256
257 err = ext2_add_link(dentry, inode);
258 if (err)
259 goto out_fail;
260
Al Viro1e2e5472018-05-04 08:23:01 -0400261 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262out:
263 return err;
264
265out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800266 inode_dec_link_count(inode);
267 inode_dec_link_count(inode);
Al Viro2e5afe52018-05-16 18:29:56 -0400268 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269out_dir:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800270 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 goto out;
272}
273
274static int ext2_unlink(struct inode * dir, struct dentry *dentry)
275{
David Howells2b0143b2015-03-17 22:25:59 +0000276 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 struct ext2_dir_entry_2 * de;
278 struct page * page;
Jan Karac2edb302015-06-29 16:08:45 +0200279 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Jan Karac2edb302015-06-29 16:08:45 +0200281 err = dquot_initialize(dir);
282 if (err)
283 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500284
zhangyi (F)b4962092020-06-08 11:40:42 +0800285 de = ext2_find_entry(dir, &dentry->d_name, &page);
286 if (IS_ERR(de)) {
287 err = PTR_ERR(de);
288 goto out;
289 }
Jan Karac2edb302015-06-29 16:08:45 +0200290 if (!de) {
291 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 err = ext2_delete_entry (de, page);
296 if (err)
297 goto out;
298
299 inode->i_ctime = dir->i_ctime;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800300 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 err = 0;
302out:
303 return err;
304}
305
306static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
307{
David Howells2b0143b2015-03-17 22:25:59 +0000308 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int err = -ENOTEMPTY;
310
311 if (ext2_empty_dir(inode)) {
312 err = ext2_unlink(dir, dentry);
313 if (!err) {
314 inode->i_size = 0;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800315 inode_dec_link_count(inode);
316 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 }
319 return err;
320}
321
322static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200323 struct inode * new_dir, struct dentry * new_dentry,
324 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
David Howells2b0143b2015-03-17 22:25:59 +0000326 struct inode * old_inode = d_inode(old_dentry);
327 struct inode * new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 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;
Jan Karac2edb302015-06-29 16:08:45 +0200332 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200334 if (flags & ~RENAME_NOREPLACE)
335 return -EINVAL;
336
Jan Karac2edb302015-06-29 16:08:45 +0200337 err = dquot_initialize(old_dir);
338 if (err)
339 goto out;
340
341 err = dquot_initialize(new_dir);
342 if (err)
343 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500344
zhangyi (F)b4962092020-06-08 11:40:42 +0800345 old_de = ext2_find_entry(old_dir, &old_dentry->d_name, &old_page);
346 if (IS_ERR(old_de)) {
347 err = PTR_ERR(old_de);
348 goto out;
349 }
Jan Karac2edb302015-06-29 16:08:45 +0200350 if (!old_de) {
351 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (S_ISDIR(old_inode->i_mode)) {
356 err = -EIO;
357 dir_de = ext2_dotdot(old_inode, &dir_page);
358 if (!dir_de)
359 goto out_old;
360 }
361
362 if (new_inode) {
363 struct page *new_page;
364 struct ext2_dir_entry_2 *new_de;
365
366 err = -ENOTEMPTY;
367 if (dir_de && !ext2_empty_dir (new_inode))
368 goto out_dir;
369
370 err = -ENOENT;
zhangyi (F)b4962092020-06-08 11:40:42 +0800371 new_de = ext2_find_entry(new_dir, &new_dentry->d_name, &new_page);
372 if (IS_ERR(new_de)) {
373 err = PTR_ERR(new_de);
374 goto out_dir;
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (!new_de)
377 goto out_dir;
Jan Kara39fe7552009-06-17 16:26:20 -0700378 ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700379 new_inode->i_ctime = current_time(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700381 drop_nlink(new_inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800382 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 err = ext2_add_link(new_dentry, old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100385 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (dir_de)
Alexey Dobriyana513b032006-03-23 03:00:53 -0800388 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
391 /*
392 * Like most other Unix systems, set the ctime for inodes on a
393 * rename.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Deepa Dinamani02027d42016-09-14 07:48:05 -0700395 old_inode->i_ctime = current_time(old_inode);
Josh Hunte8a80c62011-02-24 11:48:22 +0100396 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 ext2_delete_entry (old_de, old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 if (dir_de) {
Jan Kara39fe7552009-06-17 16:26:20 -0700401 if (old_dir != new_dir)
402 ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400403 else {
404 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300405 put_page(dir_page);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400406 }
Alexey Dobriyana513b032006-03-23 03:00:53 -0800407 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409 return 0;
410
411
412out_dir:
413 if (dir_de) {
414 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300415 put_page(dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417out_old:
418 kunmap(old_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300419 put_page(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420out:
421 return err;
422}
423
Arjan van de Ven754661f2007-02-12 00:55:38 -0800424const struct inode_operations ext2_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 .create = ext2_create,
426 .lookup = ext2_lookup,
427 .link = ext2_link,
428 .unlink = ext2_unlink,
429 .symlink = ext2_symlink,
430 .mkdir = ext2_mkdir,
431 .rmdir = ext2_rmdir,
432 .mknod = ext2_mknod,
433 .rename = ext2_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 .listxattr = ext2_listxattr,
yangerkun93bc4202019-02-18 09:07:02 +0800435 .getattr = ext2_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200437 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800438 .set_acl = ext2_set_acl,
Al Viro60545d02013-06-07 01:20:27 -0400439 .tmpfile = ext2_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440};
441
Arjan van de Ven754661f2007-02-12 00:55:38 -0800442const struct inode_operations ext2_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .listxattr = ext2_listxattr,
yangerkun93bc4202019-02-18 09:07:02 +0800444 .getattr = ext2_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 .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};