namei.c 7.9 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
 * 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>
#include <linux/ufs_fs.h>
#include <linux/smp_lock.h>
#include "swab.h"	/* will go away - see comment in mknod() */
#include "util.h"

/*
#undef UFS_NAMEI_DEBUG
*/
#define UFS_NAMEI_DEBUG

#ifdef UFS_NAMEI_DEBUG
#define UFSD(x) printk("(%s, %d), %s: ", __FILE__, __LINE__, __FUNCTION__); printk x;
#else
#define UFSD(x)
#endif

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;
	}
55
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
	iput(inode);
	return err;
}

static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
{
	struct inode * inode = NULL;
	ino_t ino;
	
	if (dentry->d_name.len > UFS_MAXNAMLEN)
		return ERR_PTR(-ENAMETOOLONG);

	lock_kernel();
	ino = ufs_inode_by_name(dir, dentry);
	if (ino) {
		inode = iget(dir->i_sb, ino);
		if (!inode) {
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
	}
	unlock_kernel();
	d_add(dentry, inode);
	return NULL;
}

/*
 * 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(). 
 */
static int ufs_create (struct inode * dir, struct dentry * dentry, int mode,
		struct nameidata *nd)
{
	struct inode * inode = ufs_new_inode(dir, mode);
	int err = PTR_ERR(inode);
	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);
		lock_kernel();
		err = ufs_add_nondir(dentry, inode);
		unlock_kernel();
	}
	return err;
}

static int ufs_mknod (struct inode * dir, struct dentry *dentry, int mode, dev_t rdev)
{
	struct inode *inode;
	int err;

	if (!old_valid_dev(rdev))
		return -EINVAL;
	inode = ufs_new_inode(dir, mode);
	err = PTR_ERR(inode);
	if (!IS_ERR(inode)) {
		init_special_inode(inode, mode, rdev);
		/* NOTE: that'll go when we get wide dev_t */
		ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
		mark_inode_dirty(inode);
		lock_kernel();
		err = ufs_add_nondir(dentry, inode);
		unlock_kernel();
	}
	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)
		goto out;

	lock_kernel();
	inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
	err = PTR_ERR(inode);
	if (IS_ERR(inode))
		goto out;

	if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
		/* slow symlink */
		inode->i_op = &page_symlink_inode_operations;
		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;
		memcpy((char*)&UFS_I(inode)->i_u1.i_data,symname,l);
		inode->i_size = l-1;
	}
	mark_inode_dirty(inode);

	err = ufs_add_nondir(dentry, inode);
out:
	unlock_kernel();
	return err;

out_fail:
166
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
	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;

	lock_kernel();
	if (inode->i_nlink >= UFS_LINK_MAX) {
		unlock_kernel();
		return -EMLINK;
	}

	inode->i_ctime = CURRENT_TIME_SEC;
184
	inode_inc_link_count(inode);
L
Linus Torvalds 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
	atomic_inc(&inode->i_count);

	error = ufs_add_nondir(dentry, inode);
	unlock_kernel();
	return error;
}

static int ufs_mkdir(struct inode * dir, struct dentry * dentry, int mode)
{
	struct inode * inode;
	int err = -EMLINK;

	if (dir->i_nlink >= UFS_LINK_MAX)
		goto out;

	lock_kernel();
201
	inode_inc_link_count(dir);
L
Linus Torvalds 已提交
202 203 204 205 206 207 208 209

	inode = ufs_new_inode(dir, S_IFDIR|mode);
	err = PTR_ERR(inode);
	if (IS_ERR(inode))
		goto out_dir;

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

212
	inode_inc_link_count(inode);
L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227

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

	err = ufs_add_link(dentry, inode);
	if (err)
		goto out_fail;
	unlock_kernel();

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

out_fail:
228 229
	inode_dec_link_count(inode);
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
230 231
	iput (inode);
out_dir:
232
	inode_dec_link_count(dir);
L
Linus Torvalds 已提交
233 234 235 236
	unlock_kernel();
	goto out;
}

237
static int ufs_unlink(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
238 239
{
	struct inode * inode = dentry->d_inode;
240 241
	struct ufs_dir_entry *de;
	struct page *page;
L
Linus Torvalds 已提交
242 243
	int err = -ENOENT;

244
	de = ufs_find_entry(dir, dentry, &page);
L
Linus Torvalds 已提交
245 246 247
	if (!de)
		goto out;

248
	err = ufs_delete_entry(dir, de, page);
L
Linus Torvalds 已提交
249 250 251 252
	if (err)
		goto out;

	inode->i_ctime = dir->i_ctime;
253
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
	err = 0;
out:
	return err;
}

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

	lock_kernel();
	if (ufs_empty_dir (inode)) {
		err = ufs_unlink(dir, dentry);
		if (!err) {
			inode->i_size = 0;
269 270
			inode_dec_link_count(inode);
			inode_dec_link_count(dir);
L
Linus Torvalds 已提交
271 272 273 274 275 276
		}
	}
	unlock_kernel();
	return err;
}

277 278
static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
		      struct inode *new_dir, struct dentry *new_dentry)
L
Linus Torvalds 已提交
279 280 281
{
	struct inode *old_inode = old_dentry->d_inode;
	struct inode *new_inode = new_dentry->d_inode;
282 283 284
	struct page *dir_page = NULL;
	struct ufs_dir_entry * dir_de = NULL;
	struct page *old_page;
L
Linus Torvalds 已提交
285 286 287
	struct ufs_dir_entry *old_de;
	int err = -ENOENT;

288
	old_de = ufs_find_entry(old_dir, old_dentry, &old_page);
L
Linus Torvalds 已提交
289 290 291 292 293
	if (!old_de)
		goto out;

	if (S_ISDIR(old_inode->i_mode)) {
		err = -EIO;
294
		dir_de = ufs_dotdot(old_inode, &dir_page);
L
Linus Torvalds 已提交
295 296 297 298 299
		if (!dir_de)
			goto out_old;
	}

	if (new_inode) {
300
		struct page *new_page;
L
Linus Torvalds 已提交
301 302 303
		struct ufs_dir_entry *new_de;

		err = -ENOTEMPTY;
304
		if (dir_de && !ufs_empty_dir(new_inode))
L
Linus Torvalds 已提交
305
			goto out_dir;
306

L
Linus Torvalds 已提交
307
		err = -ENOENT;
308
		new_de = ufs_find_entry(new_dir, new_dentry, &new_page);
L
Linus Torvalds 已提交
309 310
		if (!new_de)
			goto out_dir;
311
		inode_inc_link_count(old_inode);
312
		ufs_set_link(new_dir, new_de, new_page, old_inode);
L
Linus Torvalds 已提交
313 314 315
		new_inode->i_ctime = CURRENT_TIME_SEC;
		if (dir_de)
			new_inode->i_nlink--;
316
		inode_dec_link_count(new_inode);
L
Linus Torvalds 已提交
317 318 319 320 321 322
	} else {
		if (dir_de) {
			err = -EMLINK;
			if (new_dir->i_nlink >= UFS_LINK_MAX)
				goto out_dir;
		}
323
		inode_inc_link_count(old_inode);
L
Linus Torvalds 已提交
324 325
		err = ufs_add_link(new_dentry, old_inode);
		if (err) {
326
			inode_dec_link_count(old_inode);
L
Linus Torvalds 已提交
327 328 329
			goto out_dir;
		}
		if (dir_de)
330
			inode_inc_link_count(new_dir);
L
Linus Torvalds 已提交
331 332
	}

333 334 335 336 337 338
	/*
	 * Like most other Unix systems, set the ctime for inodes on a
 	 * rename.
	 * inode_dec_link_count() will mark the inode dirty.
	 */
	old_inode->i_ctime = CURRENT_TIME_SEC;
L
Linus Torvalds 已提交
339

340
	ufs_delete_entry(old_dir, old_de, old_page);
341
	inode_dec_link_count(old_inode);
L
Linus Torvalds 已提交
342 343

	if (dir_de) {
344
		ufs_set_link(old_inode, dir_de, dir_page, new_dir);
345
		inode_dec_link_count(old_dir);
L
Linus Torvalds 已提交
346 347 348
	}
	return 0;

349

L
Linus Torvalds 已提交
350
out_dir:
351 352 353 354
	if (dir_de) {
		kunmap(dir_page);
		page_cache_release(dir_page);
	}
L
Linus Torvalds 已提交
355
out_old:
356 357
	kunmap(old_page);
	page_cache_release(old_page);
L
Linus Torvalds 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
out:
	return err;
}

struct inode_operations ufs_dir_inode_operations = {
	.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,
};