namei.c 9.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/*
 * linux/fs/ext2/namei.c
 *
 * Rewrite to pagecache. Almost all code had been changed, so blame me
 * if the things go wrong. Please, send bug reports to
 * viro@parcelfarce.linux.theplanet.co.uk
 *
 * Stuff here is basically a glue between the VFS and generic UNIXish
 * filesystem that keeps everything in pagecache. All knowledge of the
 * directory layout is in fs/ext2/dir.c - it turned out to be easily separatable
 * and it's easier to debug that way. In principle we might want to
 * generalize that a bit and turn it into a library. Or not.
 *
 * The only non-static object here is ext2_dir_inode_operations.
 *
 * TODO: get rid of kmap() use, add readahead.
 *
 * Copyright (C) 1992, 1993, 1994, 1995
 * Remy Card (card@masi.ibp.fr)
 * Laboratoire MASI - Institut Blaise Pascal
 * Universite Pierre et Marie Curie (Paris VI)
 *
 *  from
 *
 *  linux/fs/minix/namei.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 *  Big-endian to little-endian byte-swapping/bitmaps by
 *        David S. Miller (davem@caip.rutgers.edu), 1995
 */

#include <linux/pagemap.h>
35
#include <linux/quotaops.h>
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43
#include "ext2.h"
#include "xattr.h"
#include "acl.h"

static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
{
	int err = ext2_add_link(dentry, inode);
	if (!err) {
44
		d_instantiate_new(dentry, inode);
L
Linus Torvalds 已提交
45 46
		return 0;
	}
47
	inode_dec_link_count(inode);
A
Al Viro 已提交
48
	unlock_new_inode(inode);
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56
	iput(inode);
	return err;
}

/*
 * Methods themselves.
 */

A
Al Viro 已提交
57
static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
L
Linus Torvalds 已提交
58 59 60 61 62 63 64
{
	struct inode * inode;
	ino_t ino;
	
	if (dentry->d_name.len > EXT2_NAME_LEN)
		return ERR_PTR(-ENAMETOOLONG);

65
	ino = ext2_inode_by_name(dir, &dentry->d_name);
L
Linus Torvalds 已提交
66 67
	inode = NULL;
	if (ino) {
68
		inode = ext2_iget(dir->i_sb, ino);
69 70 71 72 73
		if (inode == ERR_PTR(-ESTALE)) {
			ext2_error(dir->i_sb, __func__,
					"deleted inode referenced: %lu",
					(unsigned long) ino);
			return ERR_PTR(-EIO);
74
		}
L
Linus Torvalds 已提交
75
	}
76
	return d_splice_alias(inode, dentry);
L
Linus Torvalds 已提交
77 78 79 80
}

struct dentry *ext2_get_parent(struct dentry *child)
{
81
	struct qstr dotdot = QSTR_INIT("..", 2);
82
	unsigned long ino = ext2_inode_by_name(d_inode(child), &dotdot);
L
Linus Torvalds 已提交
83 84
	if (!ino)
		return ERR_PTR(-ENOENT);
85
	return d_obtain_alias(ext2_iget(child->d_sb, ino));
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93 94 95
} 

/*
 * By the time this is called, we already have created
 * the directory cache entry for the new file, but it
 * is so far negative - it has no inode.
 *
 * If the create succeeds, we fill in the inode information
 * with d_instantiate(). 
 */
A
Al Viro 已提交
96
static int ext2_create (struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
L
Linus Torvalds 已提交
97
{
98
	struct inode *inode;
99
	int err;
100

101 102 103
	err = dquot_initialize(dir);
	if (err)
		return err;
104

105
	inode = ext2_new_inode(dir, mode, &dentry->d_name);
106 107 108
	if (IS_ERR(inode))
		return PTR_ERR(inode);

109
	ext2_set_file_ops(inode);
110 111
	mark_inode_dirty(inode);
	return ext2_add_nondir(dentry, inode);
L
Linus Torvalds 已提交
112 113
}

114 115 116 117 118 119
static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
{
	struct inode *inode = ext2_new_inode(dir, mode, NULL);
	if (IS_ERR(inode))
		return PTR_ERR(inode);

120
	ext2_set_file_ops(inode);
121 122 123 124 125 126
	mark_inode_dirty(inode);
	d_tmpfile(dentry, inode);
	unlock_new_inode(inode);
	return 0;
}

A
Al Viro 已提交
127
static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
L
Linus Torvalds 已提交
128 129 130 131
{
	struct inode * inode;
	int err;

132 133 134
	err = dquot_initialize(dir);
	if (err)
		return err;
135

136
	inode = ext2_new_inode (dir, mode, &dentry->d_name);
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
	err = PTR_ERR(inode);
	if (!IS_ERR(inode)) {
		init_special_inode(inode, inode->i_mode, rdev);
#ifdef CONFIG_EXT2_FS_XATTR
		inode->i_op = &ext2_special_inode_operations;
#endif
		mark_inode_dirty(inode);
		err = ext2_add_nondir(dentry, inode);
	}
	return err;
}

static int ext2_symlink (struct inode * dir, struct dentry * dentry,
	const char * symname)
{
	struct super_block * sb = dir->i_sb;
	int err = -ENAMETOOLONG;
	unsigned l = strlen(symname)+1;
	struct inode * inode;

	if (l > sb->s_blocksize)
		goto out;

160 161 162
	err = dquot_initialize(dir);
	if (err)
		goto out;
163

164
	inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
L
Linus Torvalds 已提交
165 166 167 168 169 170 171
	err = PTR_ERR(inode);
	if (IS_ERR(inode))
		goto out;

	if (l > sizeof (EXT2_I(inode)->i_data)) {
		/* slow symlink */
		inode->i_op = &ext2_symlink_inode_operations;
172
		inode_nohighmem(inode);
L
Linus Torvalds 已提交
173 174 175 176 177 178 179 180 181 182
		if (test_opt(inode->i_sb, NOBH))
			inode->i_mapping->a_ops = &ext2_nobh_aops;
		else
			inode->i_mapping->a_ops = &ext2_aops;
		err = page_symlink(inode, symname, l);
		if (err)
			goto out_fail;
	} else {
		/* fast symlink */
		inode->i_op = &ext2_fast_symlink_inode_operations;
A
Al Viro 已提交
183 184
		inode->i_link = (char*)EXT2_I(inode)->i_data;
		memcpy(inode->i_link, symname, l);
L
Linus Torvalds 已提交
185 186 187 188 189 190 191 192 193
		inode->i_size = l-1;
	}
	mark_inode_dirty(inode);

	err = ext2_add_nondir(dentry, inode);
out:
	return err;

out_fail:
194
	inode_dec_link_count(inode);
A
Al Viro 已提交
195
	unlock_new_inode(inode);
L
Linus Torvalds 已提交
196 197 198 199 200 201 202
	iput (inode);
	goto out;
}

static int ext2_link (struct dentry * old_dentry, struct inode * dir,
	struct dentry *dentry)
{
203
	struct inode *inode = d_inode(old_dentry);
A
Al Viro 已提交
204
	int err;
L
Linus Torvalds 已提交
205

206 207 208
	err = dquot_initialize(dir);
	if (err)
		return err;
209

210
	inode->i_ctime = current_time(inode);
211
	inode_inc_link_count(inode);
A
Al Viro 已提交
212
	ihold(inode);
L
Linus Torvalds 已提交
213

A
Al Viro 已提交
214 215 216 217 218 219 220 221
	err = ext2_add_link(dentry, inode);
	if (!err) {
		d_instantiate(dentry, inode);
		return 0;
	}
	inode_dec_link_count(inode);
	iput(inode);
	return err;
L
Linus Torvalds 已提交
222 223
}

224
static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
L
Linus Torvalds 已提交
225 226
{
	struct inode * inode;
227
	int err;
L
Linus Torvalds 已提交
228

229 230 231
	err = dquot_initialize(dir);
	if (err)
		return err;
232

233
	inode_inc_link_count(dir);
L
Linus Torvalds 已提交
234

235
	inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
L
Linus Torvalds 已提交
236 237 238 239 240 241 242 243 244 245 246
	err = PTR_ERR(inode);
	if (IS_ERR(inode))
		goto out_dir;

	inode->i_op = &ext2_dir_inode_operations;
	inode->i_fop = &ext2_dir_operations;
	if (test_opt(inode->i_sb, NOBH))
		inode->i_mapping->a_ops = &ext2_nobh_aops;
	else
		inode->i_mapping->a_ops = &ext2_aops;

247
	inode_inc_link_count(inode);
L
Linus Torvalds 已提交
248 249 250 251 252 253 254 255 256

	err = ext2_make_empty(inode, dir);
	if (err)
		goto out_fail;

	err = ext2_add_link(dentry, inode);
	if (err)
		goto out_fail;

257
	d_instantiate_new(dentry, inode);
L
Linus Torvalds 已提交
258 259 260 261
out:
	return err;

out_fail:
262 263
	inode_dec_link_count(inode);
	inode_dec_link_count(inode);
A
Al Viro 已提交
264
	unlock_new_inode(inode);
L
Linus Torvalds 已提交
265 266
	iput(inode);
out_dir:
267
	inode_dec_link_count(dir);
L
Linus Torvalds 已提交
268 269 270 271 272
	goto out;
}

static int ext2_unlink(struct inode * dir, struct dentry *dentry)
{
273
	struct inode * inode = d_inode(dentry);
L
Linus Torvalds 已提交
274 275
	struct ext2_dir_entry_2 * de;
	struct page * page;
276
	int err;
L
Linus Torvalds 已提交
277

278 279 280
	err = dquot_initialize(dir);
	if (err)
		goto out;
281

282
	de = ext2_find_entry (dir, &dentry->d_name, &page);
283 284
	if (!de) {
		err = -ENOENT;
L
Linus Torvalds 已提交
285
		goto out;
286
	}
L
Linus Torvalds 已提交
287 288 289 290 291 292

	err = ext2_delete_entry (de, page);
	if (err)
		goto out;

	inode->i_ctime = dir->i_ctime;
293
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
294 295 296 297 298 299 300
	err = 0;
out:
	return err;
}

static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
{
301
	struct inode * inode = d_inode(dentry);
L
Linus Torvalds 已提交
302 303 304 305 306 307
	int err = -ENOTEMPTY;

	if (ext2_empty_dir(inode)) {
		err = ext2_unlink(dir, dentry);
		if (!err) {
			inode->i_size = 0;
308 309
			inode_dec_link_count(inode);
			inode_dec_link_count(dir);
L
Linus Torvalds 已提交
310 311 312 313 314 315
		}
	}
	return err;
}

static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
316 317
			struct inode * new_dir,	struct dentry * new_dentry,
			unsigned int flags)
L
Linus Torvalds 已提交
318
{
319 320
	struct inode * old_inode = d_inode(old_dentry);
	struct inode * new_inode = d_inode(new_dentry);
L
Linus Torvalds 已提交
321 322 323 324
	struct page * dir_page = NULL;
	struct ext2_dir_entry_2 * dir_de = NULL;
	struct page * old_page;
	struct ext2_dir_entry_2 * old_de;
325
	int err;
L
Linus Torvalds 已提交
326

327 328 329
	if (flags & ~RENAME_NOREPLACE)
		return -EINVAL;

330 331 332 333 334 335 336
	err = dquot_initialize(old_dir);
	if (err)
		goto out;

	err = dquot_initialize(new_dir);
	if (err)
		goto out;
337

338
	old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
339 340
	if (!old_de) {
		err = -ENOENT;
L
Linus Torvalds 已提交
341
		goto out;
342
	}
L
Linus Torvalds 已提交
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359

	if (S_ISDIR(old_inode->i_mode)) {
		err = -EIO;
		dir_de = ext2_dotdot(old_inode, &dir_page);
		if (!dir_de)
			goto out_old;
	}

	if (new_inode) {
		struct page *new_page;
		struct ext2_dir_entry_2 *new_de;

		err = -ENOTEMPTY;
		if (dir_de && !ext2_empty_dir (new_inode))
			goto out_dir;

		err = -ENOENT;
360
		new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page);
L
Linus Torvalds 已提交
361 362
		if (!new_de)
			goto out_dir;
363
		ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
364
		new_inode->i_ctime = current_time(new_inode);
L
Linus Torvalds 已提交
365
		if (dir_de)
366
			drop_nlink(new_inode);
367
		inode_dec_link_count(new_inode);
L
Linus Torvalds 已提交
368 369
	} else {
		err = ext2_add_link(new_dentry, old_inode);
370
		if (err)
L
Linus Torvalds 已提交
371 372
			goto out_dir;
		if (dir_de)
373
			inode_inc_link_count(new_dir);
L
Linus Torvalds 已提交
374 375 376 377 378 379
	}

	/*
	 * Like most other Unix systems, set the ctime for inodes on a
 	 * rename.
	 */
380
	old_inode->i_ctime = current_time(old_inode);
381
	mark_inode_dirty(old_inode);
L
Linus Torvalds 已提交
382 383 384 385

	ext2_delete_entry (old_de, old_page);

	if (dir_de) {
386 387
		if (old_dir != new_dir)
			ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
388 389
		else {
			kunmap(dir_page);
390
			put_page(dir_page);
391
		}
392
		inode_dec_link_count(old_dir);
L
Linus Torvalds 已提交
393 394 395 396 397 398 399
	}
	return 0;


out_dir:
	if (dir_de) {
		kunmap(dir_page);
400
		put_page(dir_page);
L
Linus Torvalds 已提交
401 402 403
	}
out_old:
	kunmap(old_page);
404
	put_page(old_page);
L
Linus Torvalds 已提交
405 406 407 408
out:
	return err;
}

409
const struct inode_operations ext2_dir_inode_operations = {
L
Linus Torvalds 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422
	.create		= ext2_create,
	.lookup		= ext2_lookup,
	.link		= ext2_link,
	.unlink		= ext2_unlink,
	.symlink	= ext2_symlink,
	.mkdir		= ext2_mkdir,
	.rmdir		= ext2_rmdir,
	.mknod		= ext2_mknod,
	.rename		= ext2_rename,
#ifdef CONFIG_EXT2_FS_XATTR
	.listxattr	= ext2_listxattr,
#endif
	.setattr	= ext2_setattr,
423
	.get_acl	= ext2_get_acl,
424
	.set_acl	= ext2_set_acl,
425
	.tmpfile	= ext2_tmpfile,
L
Linus Torvalds 已提交
426 427
};

428
const struct inode_operations ext2_special_inode_operations = {
L
Linus Torvalds 已提交
429 430 431 432
#ifdef CONFIG_EXT2_FS_XATTR
	.listxattr	= ext2_listxattr,
#endif
	.setattr	= ext2_setattr,
433
	.get_acl	= ext2_get_acl,
434
	.set_acl	= ext2_set_acl,
L
Linus Torvalds 已提交
435
};