blob: 0c26dcc5d85014d57c6f73d153af9314c69e9ca9 [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;
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
Dan Williamsfb094c92017-12-21 12:25:11 -0800108 ext2_set_file_ops(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500109 mark_inode_dirty(inode);
110 return ext2_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Al Viro60545d02013-06-07 01:20:27 -0400113static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
114{
115 struct inode *inode = ext2_new_inode(dir, mode, NULL);
116 if (IS_ERR(inode))
117 return PTR_ERR(inode);
118
Dan Williamsfb094c92017-12-21 12:25:11 -0800119 ext2_set_file_ops(inode);
Al Viro60545d02013-06-07 01:20:27 -0400120 mark_inode_dirty(inode);
121 d_tmpfile(dentry, inode);
122 unlock_new_inode(inode);
123 return 0;
124}
125
Al Viro1a67aaf2011-07-26 01:52:52 -0400126static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 struct inode * inode;
129 int err;
130
Jan Karac2edb302015-06-29 16:08:45 +0200131 err = dquot_initialize(dir);
132 if (err)
133 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500134
Eric Paris2a7dba32011-02-01 11:05:39 -0500135 inode = ext2_new_inode (dir, mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 err = PTR_ERR(inode);
137 if (!IS_ERR(inode)) {
138 init_special_inode(inode, inode->i_mode, rdev);
139#ifdef CONFIG_EXT2_FS_XATTR
140 inode->i_op = &ext2_special_inode_operations;
141#endif
142 mark_inode_dirty(inode);
143 err = ext2_add_nondir(dentry, inode);
144 }
145 return err;
146}
147
148static int ext2_symlink (struct inode * dir, struct dentry * dentry,
149 const char * symname)
150{
151 struct super_block * sb = dir->i_sb;
152 int err = -ENAMETOOLONG;
153 unsigned l = strlen(symname)+1;
154 struct inode * inode;
155
156 if (l > sb->s_blocksize)
157 goto out;
158
Jan Karac2edb302015-06-29 16:08:45 +0200159 err = dquot_initialize(dir);
160 if (err)
161 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500162
Eric Paris2a7dba32011-02-01 11:05:39 -0500163 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 err = PTR_ERR(inode);
165 if (IS_ERR(inode))
166 goto out;
167
168 if (l > sizeof (EXT2_I(inode)->i_data)) {
169 /* slow symlink */
170 inode->i_op = &ext2_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500171 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (test_opt(inode->i_sb, NOBH))
173 inode->i_mapping->a_ops = &ext2_nobh_aops;
174 else
175 inode->i_mapping->a_ops = &ext2_aops;
176 err = page_symlink(inode, symname, l);
177 if (err)
178 goto out_fail;
179 } else {
180 /* fast symlink */
181 inode->i_op = &ext2_fast_symlink_inode_operations;
Al Virocbe0fa32015-05-02 10:02:46 -0400182 inode->i_link = (char*)EXT2_I(inode)->i_data;
183 memcpy(inode->i_link, symname, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 inode->i_size = l-1;
185 }
186 mark_inode_dirty(inode);
187
188 err = ext2_add_nondir(dentry, inode);
189out:
190 return err;
191
192out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800193 inode_dec_link_count(inode);
Al Viro2e5afe52018-05-16 18:29:56 -0400194 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 goto out;
196}
197
198static int ext2_link (struct dentry * old_dentry, struct inode * dir,
199 struct dentry *dentry)
200{
David Howells2b0143b2015-03-17 22:25:59 +0000201 struct inode *inode = d_inode(old_dentry);
Al Viro41080b52008-12-30 01:52:35 -0500202 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Jan Karac2edb302015-06-29 16:08:45 +0200204 err = dquot_initialize(dir);
205 if (err)
206 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500207
Deepa Dinamani02027d42016-09-14 07:48:05 -0700208 inode->i_ctime = current_time(inode);
Alexey Dobriyana513b032006-03-23 03:00:53 -0800209 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400210 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Al Viro41080b52008-12-30 01:52:35 -0500212 err = ext2_add_link(dentry, inode);
213 if (!err) {
214 d_instantiate(dentry, inode);
215 return 0;
216 }
217 inode_dec_link_count(inode);
218 iput(inode);
219 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Al Viro18bb1db2011-07-26 01:41:39 -0400222static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500225 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Jan Karac2edb302015-06-29 16:08:45 +0200227 err = dquot_initialize(dir);
228 if (err)
229 return err;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500230
Alexey Dobriyana513b032006-03-23 03:00:53 -0800231 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Eric Paris2a7dba32011-02-01 11:05:39 -0500233 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 err = PTR_ERR(inode);
235 if (IS_ERR(inode))
236 goto out_dir;
237
238 inode->i_op = &ext2_dir_inode_operations;
239 inode->i_fop = &ext2_dir_operations;
240 if (test_opt(inode->i_sb, NOBH))
241 inode->i_mapping->a_ops = &ext2_nobh_aops;
242 else
243 inode->i_mapping->a_ops = &ext2_aops;
244
Alexey Dobriyana513b032006-03-23 03:00:53 -0800245 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 err = ext2_make_empty(inode, dir);
248 if (err)
249 goto out_fail;
250
251 err = ext2_add_link(dentry, inode);
252 if (err)
253 goto out_fail;
254
Al Viro1e2e5472018-05-04 08:23:01 -0400255 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256out:
257 return err;
258
259out_fail:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800260 inode_dec_link_count(inode);
261 inode_dec_link_count(inode);
Al Viro2e5afe52018-05-16 18:29:56 -0400262 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263out_dir:
Alexey Dobriyana513b032006-03-23 03:00:53 -0800264 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 goto out;
266}
267
268static int ext2_unlink(struct inode * dir, struct dentry *dentry)
269{
David Howells2b0143b2015-03-17 22:25:59 +0000270 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct ext2_dir_entry_2 * de;
272 struct page * page;
Jan Karac2edb302015-06-29 16:08:45 +0200273 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Jan Karac2edb302015-06-29 16:08:45 +0200275 err = dquot_initialize(dir);
276 if (err)
277 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500278
Al Viroa9885442008-08-24 07:28:39 -0400279 de = ext2_find_entry (dir, &dentry->d_name, &page);
Jan Karac2edb302015-06-29 16:08:45 +0200280 if (!de) {
281 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 err = ext2_delete_entry (de, page);
286 if (err)
287 goto out;
288
289 inode->i_ctime = dir->i_ctime;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800290 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 err = 0;
292out:
293 return err;
294}
295
296static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
297{
David Howells2b0143b2015-03-17 22:25:59 +0000298 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 int err = -ENOTEMPTY;
300
301 if (ext2_empty_dir(inode)) {
302 err = ext2_unlink(dir, dentry);
303 if (!err) {
304 inode->i_size = 0;
Alexey Dobriyana513b032006-03-23 03:00:53 -0800305 inode_dec_link_count(inode);
306 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308 }
309 return err;
310}
311
312static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200313 struct inode * new_dir, struct dentry * new_dentry,
314 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
David Howells2b0143b2015-03-17 22:25:59 +0000316 struct inode * old_inode = d_inode(old_dentry);
317 struct inode * new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 struct page * dir_page = NULL;
319 struct ext2_dir_entry_2 * dir_de = NULL;
320 struct page * old_page;
321 struct ext2_dir_entry_2 * old_de;
Jan Karac2edb302015-06-29 16:08:45 +0200322 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200324 if (flags & ~RENAME_NOREPLACE)
325 return -EINVAL;
326
Jan Karac2edb302015-06-29 16:08:45 +0200327 err = dquot_initialize(old_dir);
328 if (err)
329 goto out;
330
331 err = dquot_initialize(new_dir);
332 if (err)
333 goto out;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500334
Al Viroa9885442008-08-24 07:28:39 -0400335 old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
Jan Karac2edb302015-06-29 16:08:45 +0200336 if (!old_de) {
337 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 goto out;
Jan Karac2edb302015-06-29 16:08:45 +0200339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
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);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700361 new_inode->i_ctime = current_time(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 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 */
Deepa Dinamani02027d42016-09-14 07:48:05 -0700377 old_inode->i_ctime = current_time(old_inode);
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);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300387 put_page(dir_page);
Nicolas Pitre9de68862009-09-05 00:25:37 -0400388 }
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);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300397 put_page(dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399out_old:
400 kunmap(old_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300401 put_page(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402out:
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 .listxattr = ext2_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#endif
419 .setattr = ext2_setattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200420 .get_acl = ext2_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800421 .set_acl = ext2_set_acl,
Al Viro60545d02013-06-07 01:20:27 -0400422 .tmpfile = ext2_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423};
424
Arjan van de Ven754661f2007-02-12 00:55:38 -0800425const struct inode_operations ext2_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#ifdef CONFIG_EXT2_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 .listxattr = ext2_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#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};