namei.c 7.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * linux/fs/ufs/namei.c
 *
4 5 6
 * Migration to usage of "page cache" on May 2006 by
 * Evgeniy Dushistov <dushistov@mail.ru> based on ext2 code base.
 *
L
Linus Torvalds 已提交
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
 * Copyright (C) 1998
 * Daniel Pirkl <daniel.pirkl@email.cz>
 * Charles University, Faculty of Mathematics and Physics
 *
 *  from
 *
 *  linux/fs/ext2/namei.c
 *
 * 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/time.h>
#include <linux/fs.h>
32 33

#include "ufs_fs.h"
34
#include "ufs.h"
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43
#include "util.h"

static inline int ufs_add_nondir(struct dentry *dentry, struct inode *inode)
{
	int err = ufs_add_link(dentry, inode);
	if (!err) {
		d_instantiate(dentry, inode);
		return 0;
	}
44
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
45 46 47 48
	iput(inode);
	return err;
}

A
Al Viro 已提交
49
static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
L
Linus Torvalds 已提交
50 51 52 53 54 55 56
{
	struct inode * inode = NULL;
	ino_t ino;
	
	if (dentry->d_name.len > UFS_MAXNAMLEN)
		return ERR_PTR(-ENAMETOOLONG);

A
Arnd Bergmann 已提交
57
	lock_ufs(dir->i_sb);
58
	ino = ufs_inode_by_name(dir, &dentry->d_name);
A
Al Viro 已提交
59
	if (ino)
60
		inode = ufs_iget(dir->i_sb, ino);
A
Arnd Bergmann 已提交
61
	unlock_ufs(dir->i_sb);
A
Al Viro 已提交
62
	return d_splice_alias(inode, dentry);
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72
}

/*
 * 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 已提交
73
static int ufs_create (struct inode * dir, struct dentry * dentry, umode_t mode,
A
Al Viro 已提交
74
		bool excl)
L
Linus Torvalds 已提交
75
{
E
Evgeniy Dushistov 已提交
76 77 78 79
	struct inode *inode;
	int err;

	UFSD("BEGIN\n");
80

E
Evgeniy Dushistov 已提交
81 82 83
	inode = ufs_new_inode(dir, mode);
	err = PTR_ERR(inode);

L
Linus Torvalds 已提交
84 85 86 87 88
	if (!IS_ERR(inode)) {
		inode->i_op = &ufs_file_inode_operations;
		inode->i_fop = &ufs_file_operations;
		inode->i_mapping->a_ops = &ufs_aops;
		mark_inode_dirty(inode);
A
Arnd Bergmann 已提交
89
		lock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
90
		err = ufs_add_nondir(dentry, inode);
A
Arnd Bergmann 已提交
91
		unlock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
92
	}
E
Evgeniy Dushistov 已提交
93
	UFSD("END: err=%d\n", err);
L
Linus Torvalds 已提交
94 95 96
	return err;
}

A
Al Viro 已提交
97
static int ufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
L
Linus Torvalds 已提交
98 99 100 101 102 103
{
	struct inode *inode;
	int err;

	if (!old_valid_dev(rdev))
		return -EINVAL;
104

L
Linus Torvalds 已提交
105 106 107 108 109 110
	inode = ufs_new_inode(dir, mode);
	err = PTR_ERR(inode);
	if (!IS_ERR(inode)) {
		init_special_inode(inode, mode, rdev);
		ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
		mark_inode_dirty(inode);
A
Arnd Bergmann 已提交
111
		lock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
112
		err = ufs_add_nondir(dentry, inode);
A
Arnd Bergmann 已提交
113
		unlock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126
	}
	return err;
}

static int ufs_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)
127
		goto out_notlocked;
L
Linus Torvalds 已提交
128 129 130 131

	inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
	err = PTR_ERR(inode);
	if (IS_ERR(inode))
132
		goto out_notlocked;
L
Linus Torvalds 已提交
133

134
	lock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
135 136
	if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
		/* slow symlink */
137
		inode->i_op = &ufs_symlink_inode_operations;
L
Linus Torvalds 已提交
138 139 140 141 142 143 144
		inode->i_mapping->a_ops = &ufs_aops;
		err = page_symlink(inode, symname, l);
		if (err)
			goto out_fail;
	} else {
		/* fast symlink */
		inode->i_op = &ufs_fast_symlink_inode_operations;
145
		memcpy(UFS_I(inode)->i_u1.i_symlink, symname, l);
L
Linus Torvalds 已提交
146 147 148 149 150 151
		inode->i_size = l-1;
	}
	mark_inode_dirty(inode);

	err = ufs_add_nondir(dentry, inode);
out:
A
Arnd Bergmann 已提交
152
	unlock_ufs(dir->i_sb);
153
out_notlocked:
L
Linus Torvalds 已提交
154 155 156
	return err;

out_fail:
157
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
158 159 160 161 162 163 164 165 166 167
	iput(inode);
	goto out;
}

static int ufs_link (struct dentry * old_dentry, struct inode * dir,
	struct dentry *dentry)
{
	struct inode *inode = old_dentry->d_inode;
	int error;

A
Arnd Bergmann 已提交
168
	lock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
169 170

	inode->i_ctime = CURRENT_TIME_SEC;
171
	inode_inc_link_count(inode);
A
Al Viro 已提交
172
	ihold(inode);
L
Linus Torvalds 已提交
173 174

	error = ufs_add_nondir(dentry, inode);
A
Arnd Bergmann 已提交
175
	unlock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
176 177 178
	return error;
}

179
static int ufs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
L
Linus Torvalds 已提交
180 181
{
	struct inode * inode;
182
	int err;
L
Linus Torvalds 已提交
183 184 185

	inode = ufs_new_inode(dir, S_IFDIR|mode);
	if (IS_ERR(inode))
186
		return PTR_ERR(inode);
L
Linus Torvalds 已提交
187 188 189

	inode->i_op = &ufs_dir_inode_operations;
	inode->i_fop = &ufs_dir_operations;
190
	inode->i_mapping->a_ops = &ufs_aops;
L
Linus Torvalds 已提交
191

192
	inode_inc_link_count(inode);
L
Linus Torvalds 已提交
193

194 195 196
	lock_ufs(dir->i_sb);
	inode_inc_link_count(dir);

L
Linus Torvalds 已提交
197 198 199 200 201 202 203
	err = ufs_make_empty(inode, dir);
	if (err)
		goto out_fail;

	err = ufs_add_link(dentry, inode);
	if (err)
		goto out_fail;
A
Arnd Bergmann 已提交
204
	unlock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
205 206 207 208 209 210

	d_instantiate(dentry, inode);
out:
	return err;

out_fail:
211 212
	inode_dec_link_count(inode);
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
213
	iput (inode);
214
	inode_dec_link_count(dir);
A
Arnd Bergmann 已提交
215
	unlock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
216 217 218
	goto out;
}

219
static int ufs_unlink(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
220 221
{
	struct inode * inode = dentry->d_inode;
222 223
	struct ufs_dir_entry *de;
	struct page *page;
L
Linus Torvalds 已提交
224 225
	int err = -ENOENT;

226
	de = ufs_find_entry(dir, &dentry->d_name, &page);
L
Linus Torvalds 已提交
227 228 229
	if (!de)
		goto out;

230
	err = ufs_delete_entry(dir, de, page);
L
Linus Torvalds 已提交
231 232 233 234
	if (err)
		goto out;

	inode->i_ctime = dir->i_ctime;
235
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
236 237 238 239 240 241 242 243 244 245
	err = 0;
out:
	return err;
}

static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
{
	struct inode * inode = dentry->d_inode;
	int err= -ENOTEMPTY;

A
Arnd Bergmann 已提交
246
	lock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
247 248 249 250
	if (ufs_empty_dir (inode)) {
		err = ufs_unlink(dir, dentry);
		if (!err) {
			inode->i_size = 0;
251 252
			inode_dec_link_count(inode);
			inode_dec_link_count(dir);
L
Linus Torvalds 已提交
253 254
		}
	}
A
Arnd Bergmann 已提交
255
	unlock_ufs(dir->i_sb);
L
Linus Torvalds 已提交
256 257 258
	return err;
}

259 260
static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
		      struct inode *new_dir, struct dentry *new_dentry)
L
Linus Torvalds 已提交
261 262 263
{
	struct inode *old_inode = old_dentry->d_inode;
	struct inode *new_inode = new_dentry->d_inode;
264 265 266
	struct page *dir_page = NULL;
	struct ufs_dir_entry * dir_de = NULL;
	struct page *old_page;
L
Linus Torvalds 已提交
267 268 269
	struct ufs_dir_entry *old_de;
	int err = -ENOENT;

270
	old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
L
Linus Torvalds 已提交
271 272 273 274 275
	if (!old_de)
		goto out;

	if (S_ISDIR(old_inode->i_mode)) {
		err = -EIO;
276
		dir_de = ufs_dotdot(old_inode, &dir_page);
L
Linus Torvalds 已提交
277 278 279 280 281
		if (!dir_de)
			goto out_old;
	}

	if (new_inode) {
282
		struct page *new_page;
L
Linus Torvalds 已提交
283 284 285
		struct ufs_dir_entry *new_de;

		err = -ENOTEMPTY;
286
		if (dir_de && !ufs_empty_dir(new_inode))
L
Linus Torvalds 已提交
287
			goto out_dir;
288

L
Linus Torvalds 已提交
289
		err = -ENOENT;
290
		new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
L
Linus Torvalds 已提交
291 292
		if (!new_de)
			goto out_dir;
293
		ufs_set_link(new_dir, new_de, new_page, old_inode);
L
Linus Torvalds 已提交
294 295
		new_inode->i_ctime = CURRENT_TIME_SEC;
		if (dir_de)
296
			drop_nlink(new_inode);
297
		inode_dec_link_count(new_inode);
L
Linus Torvalds 已提交
298 299
	} else {
		err = ufs_add_link(new_dentry, old_inode);
A
Al Viro 已提交
300
		if (err)
L
Linus Torvalds 已提交
301 302
			goto out_dir;
		if (dir_de)
303
			inode_inc_link_count(new_dir);
L
Linus Torvalds 已提交
304 305
	}

306 307 308 309 310
	/*
	 * Like most other Unix systems, set the ctime for inodes on a
 	 * rename.
	 */
	old_inode->i_ctime = CURRENT_TIME_SEC;
L
Linus Torvalds 已提交
311

312
	ufs_delete_entry(old_dir, old_de, old_page);
A
Al Viro 已提交
313
	mark_inode_dirty(old_inode);
L
Linus Torvalds 已提交
314 315

	if (dir_de) {
316
		ufs_set_link(old_inode, dir_de, dir_page, new_dir);
317
		inode_dec_link_count(old_dir);
L
Linus Torvalds 已提交
318 319 320
	}
	return 0;

321

L
Linus Torvalds 已提交
322
out_dir:
323 324 325 326
	if (dir_de) {
		kunmap(dir_page);
		page_cache_release(dir_page);
	}
L
Linus Torvalds 已提交
327
out_old:
328 329
	kunmap(old_page);
	page_cache_release(old_page);
L
Linus Torvalds 已提交
330 331 332 333
out:
	return err;
}

334
const struct inode_operations ufs_dir_inode_operations = {
L
Linus Torvalds 已提交
335 336 337 338 339 340 341 342 343 344
	.create		= ufs_create,
	.lookup		= ufs_lookup,
	.link		= ufs_link,
	.unlink		= ufs_unlink,
	.symlink	= ufs_symlink,
	.mkdir		= ufs_mkdir,
	.rmdir		= ufs_rmdir,
	.mknod		= ufs_mknod,
	.rename		= ufs_rename,
};