namei.c 16.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 *  linux/fs/hpfs/namei.c
 *
 *  Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
 *
 *  adding & removing files & directories
 */
A
Alexey Dobriyan 已提交
8
#include <linux/sched.h>
A
Alexey Dobriyan 已提交
9
#include <linux/smp_lock.h>
L
Linus Torvalds 已提交
10 11 12 13
#include "hpfs_fn.h"

static int hpfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
{
14
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23 24 25 26
	unsigned len = dentry->d_name.len;
	struct quad_buffer_head qbh0;
	struct buffer_head *bh;
	struct hpfs_dirent *de;
	struct fnode *fnode;
	struct dnode *dnode;
	struct inode *result;
	fnode_secno fno;
	dnode_secno dno;
	int r;
	struct hpfs_dirent dee;
	int err;
27
	if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
L
Linus Torvalds 已提交
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 55 56 57 58 59 60 61 62 63
	lock_kernel();
	err = -ENOSPC;
	fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
	if (!fnode)
		goto bail;
	dnode = hpfs_alloc_dnode(dir->i_sb, fno, &dno, &qbh0, 1);
	if (!dnode)
		goto bail1;
	memset(&dee, 0, sizeof dee);
	dee.directory = 1;
	if (!(mode & 0222)) dee.read_only = 1;
	/*dee.archive = 0;*/
	dee.hidden = name[0] == '.';
	dee.fnode = fno;
	dee.creation_date = dee.write_date = dee.read_date = gmt_to_local(dir->i_sb, get_seconds());
	result = new_inode(dir->i_sb);
	if (!result)
		goto bail2;
	hpfs_init_inode(result);
	result->i_ino = fno;
	hpfs_i(result)->i_parent_dir = dir->i_ino;
	hpfs_i(result)->i_dno = dno;
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, dee.creation_date);
	result->i_ctime.tv_nsec = 0; 
	result->i_mtime.tv_nsec = 0; 
	result->i_atime.tv_nsec = 0; 
	hpfs_i(result)->i_ea_size = 0;
	result->i_mode |= S_IFDIR;
	result->i_op = &hpfs_dir_iops;
	result->i_fop = &hpfs_dir_ops;
	result->i_blocks = 4;
	result->i_size = 2048;
	result->i_nlink = 2;
	if (dee.read_only)
		result->i_mode &= ~0222;

I
Ingo Molnar 已提交
64
	mutex_lock(&hpfs_i(dir)->i_mutex);
65
	r = hpfs_add_dirent(dir, name, len, &dee, 0);
L
Linus Torvalds 已提交
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
	if (r == 1)
		goto bail3;
	if (r == -1) {
		err = -EEXIST;
		goto bail3;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
	fnode->up = dir->i_ino;
	fnode->dirflag = 1;
	fnode->btree.n_free_nodes = 7;
	fnode->btree.n_used_nodes = 1;
	fnode->btree.first_free = 0x14;
	fnode->u.external[0].disk_secno = dno;
	fnode->u.external[0].file_secno = -1;
	dnode->root_dnode = 1;
	dnode->up = fno;
	de = hpfs_add_de(dir->i_sb, dnode, "\001\001", 2, 0);
	de->creation_date = de->write_date = de->read_date = gmt_to_local(dir->i_sb, get_seconds());
	if (!(mode & 0222)) de->read_only = 1;
	de->first = de->directory = 1;
	/*de->hidden = de->system = 0;*/
	de->fnode = fno;
	mark_buffer_dirty(bh);
	brelse(bh);
	hpfs_mark_4buffers_dirty(&qbh0);
	hpfs_brelse4(&qbh0);
93
	inc_nlink(dir);
L
Linus Torvalds 已提交
94 95
	insert_inode_hash(result);

96 97
	if (result->i_uid != current_fsuid() ||
	    result->i_gid != current_fsgid() ||
L
Linus Torvalds 已提交
98
	    result->i_mode != (mode | S_IFDIR)) {
99 100
		result->i_uid = current_fsuid();
		result->i_gid = current_fsgid();
L
Linus Torvalds 已提交
101 102 103 104
		result->i_mode = mode | S_IFDIR;
		hpfs_write_inode_nolock(result);
	}
	d_instantiate(dentry, result);
I
Ingo Molnar 已提交
105
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
106 107 108
	unlock_kernel();
	return 0;
bail3:
I
Ingo Molnar 已提交
109
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123
	iput(result);
bail2:
	hpfs_brelse4(&qbh0);
	hpfs_free_dnode(dir->i_sb, dno);
bail1:
	brelse(bh);
	hpfs_free_sectors(dir->i_sb, fno, 1);
bail:
	unlock_kernel();
	return err;
}

static int hpfs_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd)
{
124
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
125 126 127 128 129 130 131 132
	unsigned len = dentry->d_name.len;
	struct inode *result = NULL;
	struct buffer_head *bh;
	struct fnode *fnode;
	fnode_secno fno;
	int r;
	struct hpfs_dirent dee;
	int err;
133
	if ((err = hpfs_chk_name(name, &len)))
L
Linus Torvalds 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
		return err==-ENOENT ? -EINVAL : err;
	lock_kernel();
	err = -ENOSPC;
	fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
	if (!fnode)
		goto bail;
	memset(&dee, 0, sizeof dee);
	if (!(mode & 0222)) dee.read_only = 1;
	dee.archive = 1;
	dee.hidden = name[0] == '.';
	dee.fnode = fno;
	dee.creation_date = dee.write_date = dee.read_date = gmt_to_local(dir->i_sb, get_seconds());

	result = new_inode(dir->i_sb);
	if (!result)
		goto bail1;
	
	hpfs_init_inode(result);
	result->i_ino = fno;
	result->i_mode |= S_IFREG;
	result->i_mode &= ~0111;
	result->i_op = &hpfs_file_iops;
	result->i_fop = &hpfs_file_ops;
	result->i_nlink = 1;
158
	hpfs_decide_conv(result, name, len);
L
Linus Torvalds 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171
	hpfs_i(result)->i_parent_dir = dir->i_ino;
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, dee.creation_date);
	result->i_ctime.tv_nsec = 0;
	result->i_mtime.tv_nsec = 0;
	result->i_atime.tv_nsec = 0;
	hpfs_i(result)->i_ea_size = 0;
	if (dee.read_only)
		result->i_mode &= ~0222;
	result->i_blocks = 1;
	result->i_size = 0;
	result->i_data.a_ops = &hpfs_aops;
	hpfs_i(result)->mmu_private = 0;

I
Ingo Molnar 已提交
172
	mutex_lock(&hpfs_i(dir)->i_mutex);
173
	r = hpfs_add_dirent(dir, name, len, &dee, 0);
L
Linus Torvalds 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187
	if (r == 1)
		goto bail2;
	if (r == -1) {
		err = -EEXIST;
		goto bail2;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
	fnode->up = dir->i_ino;
	mark_buffer_dirty(bh);
	brelse(bh);

	insert_inode_hash(result);

188 189
	if (result->i_uid != current_fsuid() ||
	    result->i_gid != current_fsgid() ||
L
Linus Torvalds 已提交
190
	    result->i_mode != (mode | S_IFREG)) {
191 192
		result->i_uid = current_fsuid();
		result->i_gid = current_fsgid();
L
Linus Torvalds 已提交
193 194 195 196
		result->i_mode = mode | S_IFREG;
		hpfs_write_inode_nolock(result);
	}
	d_instantiate(dentry, result);
I
Ingo Molnar 已提交
197
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
198 199 200 201
	unlock_kernel();
	return 0;

bail2:
I
Ingo Molnar 已提交
202
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213
	iput(result);
bail1:
	brelse(bh);
	hpfs_free_sectors(dir->i_sb, fno, 1);
bail:
	unlock_kernel();
	return err;
}

static int hpfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
{
214
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
215 216 217 218 219 220 221 222
	unsigned len = dentry->d_name.len;
	struct buffer_head *bh;
	struct fnode *fnode;
	fnode_secno fno;
	int r;
	struct hpfs_dirent dee;
	struct inode *result = NULL;
	int err;
223
	if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
L
Linus Torvalds 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
	if (hpfs_sb(dir->i_sb)->sb_eas < 2) return -EPERM;
	if (!new_valid_dev(rdev))
		return -EINVAL;
	lock_kernel();
	err = -ENOSPC;
	fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
	if (!fnode)
		goto bail;
	memset(&dee, 0, sizeof dee);
	if (!(mode & 0222)) dee.read_only = 1;
	dee.archive = 1;
	dee.hidden = name[0] == '.';
	dee.fnode = fno;
	dee.creation_date = dee.write_date = dee.read_date = gmt_to_local(dir->i_sb, get_seconds());

	result = new_inode(dir->i_sb);
	if (!result)
		goto bail1;

	hpfs_init_inode(result);
	result->i_ino = fno;
	hpfs_i(result)->i_parent_dir = dir->i_ino;
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, dee.creation_date);
	result->i_ctime.tv_nsec = 0;
	result->i_mtime.tv_nsec = 0;
	result->i_atime.tv_nsec = 0;
	hpfs_i(result)->i_ea_size = 0;
251 252
	result->i_uid = current_fsuid();
	result->i_gid = current_fsgid();
L
Linus Torvalds 已提交
253 254 255 256 257
	result->i_nlink = 1;
	result->i_size = 0;
	result->i_blocks = 1;
	init_special_inode(result, mode, rdev);

I
Ingo Molnar 已提交
258
	mutex_lock(&hpfs_i(dir)->i_mutex);
259
	r = hpfs_add_dirent(dir, name, len, &dee, 0);
L
Linus Torvalds 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
	if (r == 1)
		goto bail2;
	if (r == -1) {
		err = -EEXIST;
		goto bail2;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
	fnode->up = dir->i_ino;
	mark_buffer_dirty(bh);

	insert_inode_hash(result);

	hpfs_write_inode_nolock(result);
	d_instantiate(dentry, result);
I
Ingo Molnar 已提交
275
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
276 277 278 279
	brelse(bh);
	unlock_kernel();
	return 0;
bail2:
I
Ingo Molnar 已提交
280
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
281 282 283 284 285 286 287 288 289 290 291
	iput(result);
bail1:
	brelse(bh);
	hpfs_free_sectors(dir->i_sb, fno, 1);
bail:
	unlock_kernel();
	return err;
}

static int hpfs_symlink(struct inode *dir, struct dentry *dentry, const char *symlink)
{
292
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
293 294 295 296 297 298 299 300
	unsigned len = dentry->d_name.len;
	struct buffer_head *bh;
	struct fnode *fnode;
	fnode_secno fno;
	int r;
	struct hpfs_dirent dee;
	struct inode *result;
	int err;
301
	if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
L
Linus Torvalds 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
	lock_kernel();
	if (hpfs_sb(dir->i_sb)->sb_eas < 2) {
		unlock_kernel();
		return -EPERM;
	}
	err = -ENOSPC;
	fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
	if (!fnode)
		goto bail;
	memset(&dee, 0, sizeof dee);
	dee.archive = 1;
	dee.hidden = name[0] == '.';
	dee.fnode = fno;
	dee.creation_date = dee.write_date = dee.read_date = gmt_to_local(dir->i_sb, get_seconds());

	result = new_inode(dir->i_sb);
	if (!result)
		goto bail1;
	result->i_ino = fno;
	hpfs_init_inode(result);
	hpfs_i(result)->i_parent_dir = dir->i_ino;
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, dee.creation_date);
	result->i_ctime.tv_nsec = 0;
	result->i_mtime.tv_nsec = 0;
	result->i_atime.tv_nsec = 0;
	hpfs_i(result)->i_ea_size = 0;
	result->i_mode = S_IFLNK | 0777;
329 330
	result->i_uid = current_fsuid();
	result->i_gid = current_fsgid();
L
Linus Torvalds 已提交
331 332 333 334 335 336
	result->i_blocks = 1;
	result->i_nlink = 1;
	result->i_size = strlen(symlink);
	result->i_op = &page_symlink_inode_operations;
	result->i_data.a_ops = &hpfs_symlink_aops;

I
Ingo Molnar 已提交
337
	mutex_lock(&hpfs_i(dir)->i_mutex);
338
	r = hpfs_add_dirent(dir, name, len, &dee, 0);
L
Linus Torvalds 已提交
339 340 341 342 343 344 345 346 347
	if (r == 1)
		goto bail2;
	if (r == -1) {
		err = -EEXIST;
		goto bail2;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
	fnode->up = dir->i_ino;
348
	hpfs_set_ea(result, fnode, "SYMLINK", symlink, strlen(symlink));
L
Linus Torvalds 已提交
349 350 351 352 353 354 355
	mark_buffer_dirty(bh);
	brelse(bh);

	insert_inode_hash(result);

	hpfs_write_inode_nolock(result);
	d_instantiate(dentry, result);
I
Ingo Molnar 已提交
356
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
357 358 359
	unlock_kernel();
	return 0;
bail2:
I
Ingo Molnar 已提交
360
	mutex_unlock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
361 362 363 364 365 366 367 368 369 370 371
	iput(result);
bail1:
	brelse(bh);
	hpfs_free_sectors(dir->i_sb, fno, 1);
bail:
	unlock_kernel();
	return err;
}

static int hpfs_unlink(struct inode *dir, struct dentry *dentry)
{
372
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381 382 383
	unsigned len = dentry->d_name.len;
	struct quad_buffer_head qbh;
	struct hpfs_dirent *de;
	struct inode *inode = dentry->d_inode;
	dnode_secno dno;
	fnode_secno fno;
	int r;
	int rep = 0;
	int err;

	lock_kernel();
384
	hpfs_adjust_length(name, &len);
L
Linus Torvalds 已提交
385
again:
I
Ingo Molnar 已提交
386 387
	mutex_lock(&hpfs_i(inode)->i_parent_mutex);
	mutex_lock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
388
	err = -ENOENT;
389
	de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
	if (!de)
		goto out;

	err = -EPERM;
	if (de->first)
		goto out1;

	err = -EISDIR;
	if (de->directory)
		goto out1;

	fno = de->fnode;
	r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
	switch (r) {
	case 1:
		hpfs_error(dir->i_sb, "there was error when removing dirent");
		err = -EFSERROR;
		break;
	case 2:		/* no space for deleting, try to truncate file */

		err = -ENOSPC;
		if (rep++)
			break;

I
Ingo Molnar 已提交
414 415
		mutex_unlock(&hpfs_i(dir)->i_mutex);
		mutex_unlock(&hpfs_i(inode)->i_parent_mutex);
416 417 418 419 420 421
		dentry_unhash(dentry);
		if (!d_unhashed(dentry)) {
			dput(dentry);
			unlock_kernel();
			return -ENOSPC;
		}
422
		if (generic_permission(inode, MAY_WRITE, 0, NULL) ||
L
Linus Torvalds 已提交
423 424 425
		    !S_ISREG(inode->i_mode) ||
		    get_write_access(inode)) {
			d_rehash(dentry);
426
			dput(dentry);
L
Linus Torvalds 已提交
427 428 429 430 431 432 433
		} else {
			struct iattr newattrs;
			/*printk("HPFS: truncating file before delete.\n");*/
			newattrs.ia_size = 0;
			newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
			err = notify_change(dentry, &newattrs);
			put_write_access(inode);
434
			dput(dentry);
L
Linus Torvalds 已提交
435 436 437 438 439 440
			if (!err)
				goto again;
		}
		unlock_kernel();
		return -ENOSPC;
	default:
441
		drop_nlink(inode);
L
Linus Torvalds 已提交
442 443 444 445 446 447 448
		err = 0;
	}
	goto out;

out1:
	hpfs_brelse4(&qbh);
out:
I
Ingo Molnar 已提交
449 450
	mutex_unlock(&hpfs_i(dir)->i_mutex);
	mutex_unlock(&hpfs_i(inode)->i_parent_mutex);
L
Linus Torvalds 已提交
451 452 453 454 455 456
	unlock_kernel();
	return err;
}

static int hpfs_rmdir(struct inode *dir, struct dentry *dentry)
{
457
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
458 459 460 461 462 463 464 465 466 467
	unsigned len = dentry->d_name.len;
	struct quad_buffer_head qbh;
	struct hpfs_dirent *de;
	struct inode *inode = dentry->d_inode;
	dnode_secno dno;
	fnode_secno fno;
	int n_items = 0;
	int err;
	int r;

468
	hpfs_adjust_length(name, &len);
L
Linus Torvalds 已提交
469
	lock_kernel();
I
Ingo Molnar 已提交
470 471
	mutex_lock(&hpfs_i(inode)->i_parent_mutex);
	mutex_lock(&hpfs_i(dir)->i_mutex);
L
Linus Torvalds 已提交
472
	err = -ENOENT;
473
	de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
L
Linus Torvalds 已提交
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
	if (!de)
		goto out;

	err = -EPERM;
	if (de->first)
		goto out1;

	err = -ENOTDIR;
	if (!de->directory)
		goto out1;

	hpfs_count_dnodes(dir->i_sb, hpfs_i(inode)->i_dno, NULL, NULL, &n_items);
	err = -ENOTEMPTY;
	if (n_items)
		goto out1;

	fno = de->fnode;
	r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
	switch (r) {
	case 1:
		hpfs_error(dir->i_sb, "there was error when removing dirent");
		err = -EFSERROR;
		break;
	case 2:
		err = -ENOSPC;
		break;
	default:
501
		drop_nlink(dir);
502
		clear_nlink(inode);
L
Linus Torvalds 已提交
503 504 505 506 507 508
		err = 0;
	}
	goto out;
out1:
	hpfs_brelse4(&qbh);
out:
I
Ingo Molnar 已提交
509 510
	mutex_unlock(&hpfs_i(dir)->i_mutex);
	mutex_unlock(&hpfs_i(inode)->i_parent_mutex);
L
Linus Torvalds 已提交
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
	unlock_kernel();
	return err;
}

static int hpfs_symlink_readpage(struct file *file, struct page *page)
{
	char *link = kmap(page);
	struct inode *i = page->mapping->host;
	struct fnode *fnode;
	struct buffer_head *bh;
	int err;

	err = -EIO;
	lock_kernel();
	if (!(fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh)))
		goto fail;
	err = hpfs_read_ea(i->i_sb, fnode, "SYMLINK", link, PAGE_SIZE);
	brelse(bh);
	if (err)
		goto fail;
	unlock_kernel();
	SetPageUptodate(page);
	kunmap(page);
	unlock_page(page);
	return 0;

fail:
	unlock_kernel();
	SetPageError(page);
	kunmap(page);
	unlock_page(page);
	return err;
}

545
const struct address_space_operations hpfs_symlink_aops = {
L
Linus Torvalds 已提交
546 547 548 549 550 551
	.readpage	= hpfs_symlink_readpage
};
	
static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry,
		struct inode *new_dir, struct dentry *new_dentry)
{
552 553 554 555
	const unsigned char *old_name = old_dentry->d_name.name;
	unsigned old_len = old_dentry->d_name.len;
	const unsigned char *new_name = new_dentry->d_name.name;
	unsigned new_len = new_dentry->d_name.len;
L
Linus Torvalds 已提交
556 557 558 559 560 561 562 563 564 565
	struct inode *i = old_dentry->d_inode;
	struct inode *new_inode = new_dentry->d_inode;
	struct quad_buffer_head qbh, qbh1;
	struct hpfs_dirent *dep, *nde;
	struct hpfs_dirent de;
	dnode_secno dno;
	int r;
	struct buffer_head *bh;
	struct fnode *fnode;
	int err;
566
	if ((err = hpfs_chk_name(new_name, &new_len))) return err;
L
Linus Torvalds 已提交
567
	err = 0;
568
	hpfs_adjust_length(old_name, &old_len);
L
Linus Torvalds 已提交
569 570 571

	lock_kernel();
	/* order doesn't matter, due to VFS exclusion */
I
Ingo Molnar 已提交
572
	mutex_lock(&hpfs_i(i)->i_parent_mutex);
L
Linus Torvalds 已提交
573
	if (new_inode)
I
Ingo Molnar 已提交
574 575
		mutex_lock(&hpfs_i(new_inode)->i_parent_mutex);
	mutex_lock(&hpfs_i(old_dir)->i_mutex);
L
Linus Torvalds 已提交
576
	if (new_dir != old_dir)
I
Ingo Molnar 已提交
577
		mutex_lock(&hpfs_i(new_dir)->i_mutex);
L
Linus Torvalds 已提交
578 579 580 581 582 583 584
	
	/* Erm? Moving over the empty non-busy directory is perfectly legal */
	if (new_inode && S_ISDIR(new_inode->i_mode)) {
		err = -EINVAL;
		goto end1;
	}

585
	if (!(dep = map_dirent(old_dir, hpfs_i(old_dir)->i_dno, old_name, old_len, &dno, &qbh))) {
L
Linus Torvalds 已提交
586 587 588 589 590 591 592 593 594 595
		hpfs_error(i->i_sb, "lookup succeeded but map dirent failed");
		err = -ENOENT;
		goto end1;
	}
	copy_de(&de, dep);
	de.hidden = new_name[0] == '.';

	if (new_inode) {
		int r;
		if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 1)) != 2) {
596
			if ((nde = map_dirent(new_dir, hpfs_i(new_dir)->i_dno, new_name, new_len, NULL, &qbh1))) {
597
				clear_nlink(new_inode);
L
Linus Torvalds 已提交
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
				copy_de(nde, &de);
				memcpy(nde->name, new_name, new_len);
				hpfs_mark_4buffers_dirty(&qbh1);
				hpfs_brelse4(&qbh1);
				goto end;
			}
			hpfs_error(new_dir->i_sb, "hpfs_rename: could not find dirent");
			err = -EFSERROR;
			goto end1;
		}
		err = r == 2 ? -ENOSPC : r == 1 ? -EFSERROR : 0;
		goto end1;
	}

	if (new_dir == old_dir) hpfs_brelse4(&qbh);

	hpfs_lock_creation(i->i_sb);
	if ((r = hpfs_add_dirent(new_dir, new_name, new_len, &de, 1))) {
		hpfs_unlock_creation(i->i_sb);
		if (r == -1) hpfs_error(new_dir->i_sb, "hpfs_rename: dirent already exists!");
		err = r == 1 ? -ENOSPC : -EFSERROR;
		if (new_dir != old_dir) hpfs_brelse4(&qbh);
		goto end1;
	}
	
	if (new_dir == old_dir)
624
		if (!(dep = map_dirent(old_dir, hpfs_i(old_dir)->i_dno, old_name, old_len, &dno, &qbh))) {
L
Linus Torvalds 已提交
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
			hpfs_unlock_creation(i->i_sb);
			hpfs_error(i->i_sb, "lookup succeeded but map dirent failed at #2");
			err = -ENOENT;
			goto end1;
		}

	if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 0))) {
		hpfs_unlock_creation(i->i_sb);
		hpfs_error(i->i_sb, "hpfs_rename: could not remove dirent");
		err = r == 2 ? -ENOSPC : -EFSERROR;
		goto end1;
	}
	hpfs_unlock_creation(i->i_sb);
	
	end:
	hpfs_i(i)->i_parent_dir = new_dir->i_ino;
	if (S_ISDIR(i->i_mode)) {
642
		inc_nlink(new_dir);
643
		drop_nlink(old_dir);
L
Linus Torvalds 已提交
644 645 646 647 648 649 650 651 652 653
	}
	if ((fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh))) {
		fnode->up = new_dir->i_ino;
		fnode->len = new_len;
		memcpy(fnode->name, new_name, new_len>15?15:new_len);
		if (new_len < 15) memset(&fnode->name[new_len], 0, 15 - new_len);
		mark_buffer_dirty(bh);
		brelse(bh);
	}
	hpfs_i(i)->i_conv = hpfs_sb(i->i_sb)->sb_conv;
654
	hpfs_decide_conv(i, new_name, new_len);
L
Linus Torvalds 已提交
655 656
end1:
	if (old_dir != new_dir)
I
Ingo Molnar 已提交
657 658 659
		mutex_unlock(&hpfs_i(new_dir)->i_mutex);
	mutex_unlock(&hpfs_i(old_dir)->i_mutex);
	mutex_unlock(&hpfs_i(i)->i_parent_mutex);
L
Linus Torvalds 已提交
660
	if (new_inode)
I
Ingo Molnar 已提交
661
		mutex_unlock(&hpfs_i(new_inode)->i_parent_mutex);
L
Linus Torvalds 已提交
662 663 664 665
	unlock_kernel();
	return err;
}

666
const struct inode_operations hpfs_dir_iops =
L
Linus Torvalds 已提交
667 668 669 670 671 672 673 674 675
{
	.create		= hpfs_create,
	.lookup		= hpfs_lookup,
	.unlink		= hpfs_unlink,
	.symlink	= hpfs_symlink,
	.mkdir		= hpfs_mkdir,
	.rmdir		= hpfs_rmdir,
	.mknod		= hpfs_mknod,
	.rename		= hpfs_rename,
676
	.setattr	= hpfs_setattr,
L
Linus Torvalds 已提交
677
};