namei.c 15.7 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>
L
Linus Torvalds 已提交
9 10
#include "hpfs_fn.h"

11
static int hpfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
L
Linus Torvalds 已提交
12
{
13
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23 24 25
	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;
26
	if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
A
Arnd Bergmann 已提交
27
	hpfs_lock(dir->i_sb);
L
Linus Torvalds 已提交
28 29 30 31
	err = -ENOSPC;
	fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
	if (!fnode)
		goto bail;
M
Mikulas Patocka 已提交
32
	dnode = hpfs_alloc_dnode(dir->i_sb, fno, &dno, &qbh0);
L
Linus Torvalds 已提交
33 34 35 36 37 38 39
	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] == '.';
40 41
	dee.fnode = cpu_to_le32(fno);
	dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
L
Linus Torvalds 已提交
42 43 44 45 46 47 48
	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;
49
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57 58
	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;
M
Miklos Szeredi 已提交
59
	set_nlink(result, 2);
L
Linus Torvalds 已提交
60 61 62
	if (dee.read_only)
		result->i_mode &= ~0222;

M
Mikulas Patocka 已提交
63
	r = hpfs_add_dirent(dir, name, len, &dee);
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71
	if (r == 1)
		goto bail3;
	if (r == -1) {
		err = -EEXIST;
		goto bail3;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
72
	fnode->up = cpu_to_le32(dir->i_ino);
73
	fnode->flags |= FNODE_dir;
L
Linus Torvalds 已提交
74 75
	fnode->btree.n_free_nodes = 7;
	fnode->btree.n_used_nodes = 1;
76 77 78
	fnode->btree.first_free = cpu_to_le16(0x14);
	fnode->u.external[0].disk_secno = cpu_to_le32(dno);
	fnode->u.external[0].file_secno = cpu_to_le32(-1);
L
Linus Torvalds 已提交
79
	dnode->root_dnode = 1;
80
	dnode->up = cpu_to_le32(fno);
L
Linus Torvalds 已提交
81
	de = hpfs_add_de(dir->i_sb, dnode, "\001\001", 2, 0);
82
	de->creation_date = de->write_date = de->read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
L
Linus Torvalds 已提交
83 84 85
	if (!(mode & 0222)) de->read_only = 1;
	de->first = de->directory = 1;
	/*de->hidden = de->system = 0;*/
86
	de->fnode = cpu_to_le32(fno);
L
Linus Torvalds 已提交
87 88 89 90
	mark_buffer_dirty(bh);
	brelse(bh);
	hpfs_mark_4buffers_dirty(&qbh0);
	hpfs_brelse4(&qbh0);
91
	inc_nlink(dir);
L
Linus Torvalds 已提交
92 93
	insert_inode_hash(result);

94 95
	if (!uid_eq(result->i_uid, current_fsuid()) ||
	    !gid_eq(result->i_gid, current_fsgid()) ||
L
Linus Torvalds 已提交
96
	    result->i_mode != (mode | S_IFDIR)) {
97 98
		result->i_uid = current_fsuid();
		result->i_gid = current_fsgid();
L
Linus Torvalds 已提交
99 100 101 102
		result->i_mode = mode | S_IFDIR;
		hpfs_write_inode_nolock(result);
	}
	d_instantiate(dentry, result);
A
Arnd Bergmann 已提交
103
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
104 105 106 107 108 109 110 111 112 113
	return 0;
bail3:
	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:
A
Arnd Bergmann 已提交
114
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
115 116 117
	return err;
}

A
Al Viro 已提交
118
static int hpfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl)
L
Linus Torvalds 已提交
119
{
120
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128
	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;
129
	if ((err = hpfs_chk_name(name, &len)))
L
Linus Torvalds 已提交
130
		return err==-ENOENT ? -EINVAL : err;
A
Arnd Bergmann 已提交
131
	hpfs_lock(dir->i_sb);
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139
	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] == '.';
140 141
	dee.fnode = cpu_to_le32(fno);
	dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
L
Linus Torvalds 已提交
142 143 144 145 146 147 148 149 150 151 152

	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;
M
Miklos Szeredi 已提交
153
	set_nlink(result, 1);
L
Linus Torvalds 已提交
154
	hpfs_i(result)->i_parent_dir = dir->i_ino;
155
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
L
Linus Torvalds 已提交
156 157 158 159 160 161 162 163 164 165 166
	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;

M
Mikulas Patocka 已提交
167
	r = hpfs_add_dirent(dir, name, len, &dee);
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175
	if (r == 1)
		goto bail2;
	if (r == -1) {
		err = -EEXIST;
		goto bail2;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
176
	fnode->up = cpu_to_le32(dir->i_ino);
L
Linus Torvalds 已提交
177 178 179 180 181
	mark_buffer_dirty(bh);
	brelse(bh);

	insert_inode_hash(result);

182 183
	if (!uid_eq(result->i_uid, current_fsuid()) ||
	    !gid_eq(result->i_gid, current_fsgid()) ||
L
Linus Torvalds 已提交
184
	    result->i_mode != (mode | S_IFREG)) {
185 186
		result->i_uid = current_fsuid();
		result->i_gid = current_fsgid();
L
Linus Torvalds 已提交
187 188 189 190
		result->i_mode = mode | S_IFREG;
		hpfs_write_inode_nolock(result);
	}
	d_instantiate(dentry, result);
A
Arnd Bergmann 已提交
191
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
192 193 194 195 196 197 198 199
	return 0;

bail2:
	iput(result);
bail1:
	brelse(bh);
	hpfs_free_sectors(dir->i_sb, fno, 1);
bail:
A
Arnd Bergmann 已提交
200
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
201 202 203
	return err;
}

A
Al Viro 已提交
204
static int hpfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
L
Linus Torvalds 已提交
205
{
206
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
207 208 209 210 211 212 213 214
	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;
215
	if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
L
Linus Torvalds 已提交
216 217 218
	if (hpfs_sb(dir->i_sb)->sb_eas < 2) return -EPERM;
	if (!new_valid_dev(rdev))
		return -EINVAL;
A
Arnd Bergmann 已提交
219
	hpfs_lock(dir->i_sb);
L
Linus Torvalds 已提交
220 221 222 223 224 225 226 227
	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] == '.';
228 229
	dee.fnode = cpu_to_le32(fno);
	dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
L
Linus Torvalds 已提交
230 231 232 233 234 235 236 237

	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;
238
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
L
Linus Torvalds 已提交
239 240 241 242
	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;
243 244
	result->i_uid = current_fsuid();
	result->i_gid = current_fsgid();
M
Miklos Szeredi 已提交
245
	set_nlink(result, 1);
L
Linus Torvalds 已提交
246 247 248 249
	result->i_size = 0;
	result->i_blocks = 1;
	init_special_inode(result, mode, rdev);

M
Mikulas Patocka 已提交
250
	r = hpfs_add_dirent(dir, name, len, &dee);
L
Linus Torvalds 已提交
251 252 253 254 255 256 257 258
	if (r == 1)
		goto bail2;
	if (r == -1) {
		err = -EEXIST;
		goto bail2;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
259
	fnode->up = cpu_to_le32(dir->i_ino);
L
Linus Torvalds 已提交
260 261 262 263 264 265 266
	mark_buffer_dirty(bh);

	insert_inode_hash(result);

	hpfs_write_inode_nolock(result);
	d_instantiate(dentry, result);
	brelse(bh);
A
Arnd Bergmann 已提交
267
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
268 269 270 271 272 273 274
	return 0;
bail2:
	iput(result);
bail1:
	brelse(bh);
	hpfs_free_sectors(dir->i_sb, fno, 1);
bail:
A
Arnd Bergmann 已提交
275
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
276 277 278 279 280
	return err;
}

static int hpfs_symlink(struct inode *dir, struct dentry *dentry, const char *symlink)
{
281
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
282 283 284 285 286 287 288 289
	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;
290
	if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
A
Arnd Bergmann 已提交
291
	hpfs_lock(dir->i_sb);
L
Linus Torvalds 已提交
292
	if (hpfs_sb(dir->i_sb)->sb_eas < 2) {
A
Arnd Bergmann 已提交
293
		hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
294 295 296 297 298 299 300 301 302
		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] == '.';
303 304
	dee.fnode = cpu_to_le32(fno);
	dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
L
Linus Torvalds 已提交
305 306 307 308 309 310 311

	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;
312
	result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
L
Linus Torvalds 已提交
313 314 315 316 317
	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;
318 319
	result->i_uid = current_fsuid();
	result->i_gid = current_fsgid();
L
Linus Torvalds 已提交
320
	result->i_blocks = 1;
M
Miklos Szeredi 已提交
321
	set_nlink(result, 1);
L
Linus Torvalds 已提交
322 323 324 325
	result->i_size = strlen(symlink);
	result->i_op = &page_symlink_inode_operations;
	result->i_data.a_ops = &hpfs_symlink_aops;

M
Mikulas Patocka 已提交
326
	r = hpfs_add_dirent(dir, name, len, &dee);
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334
	if (r == 1)
		goto bail2;
	if (r == -1) {
		err = -EEXIST;
		goto bail2;
	}
	fnode->len = len;
	memcpy(fnode->name, name, len > 15 ? 15 : len);
335
	fnode->up = cpu_to_le32(dir->i_ino);
336
	hpfs_set_ea(result, fnode, "SYMLINK", symlink, strlen(symlink));
L
Linus Torvalds 已提交
337 338 339 340 341 342 343
	mark_buffer_dirty(bh);
	brelse(bh);

	insert_inode_hash(result);

	hpfs_write_inode_nolock(result);
	d_instantiate(dentry, result);
A
Arnd Bergmann 已提交
344
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
345 346 347 348 349 350 351
	return 0;
bail2:
	iput(result);
bail1:
	brelse(bh);
	hpfs_free_sectors(dir->i_sb, fno, 1);
bail:
A
Arnd Bergmann 已提交
352
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
353 354 355 356 357
	return err;
}

static int hpfs_unlink(struct inode *dir, struct dentry *dentry)
{
358
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
359 360 361 362 363 364 365 366 367
	unsigned len = dentry->d_name.len;
	struct quad_buffer_head qbh;
	struct hpfs_dirent *de;
	struct inode *inode = dentry->d_inode;
	dnode_secno dno;
	int r;
	int rep = 0;
	int err;

A
Arnd Bergmann 已提交
368
	hpfs_lock(dir->i_sb);
369
	hpfs_adjust_length(name, &len);
L
Linus Torvalds 已提交
370 371
again:
	err = -ENOENT;
372
	de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
	if (!de)
		goto out;

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

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

	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;

396 397
		dentry_unhash(dentry);
		if (!d_unhashed(dentry)) {
A
Arnd Bergmann 已提交
398
			hpfs_unlock(dir->i_sb);
399 400
			return -ENOSPC;
		}
401
		if (generic_permission(inode, MAY_WRITE) ||
L
Linus Torvalds 已提交
402 403 404 405 406
		    !S_ISREG(inode->i_mode) ||
		    get_write_access(inode)) {
			d_rehash(dentry);
		} else {
			struct iattr newattrs;
407
			/*pr_info("truncating file before delete.\n");*/
L
Linus Torvalds 已提交
408 409
			newattrs.ia_size = 0;
			newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
410
			err = notify_change(dentry, &newattrs, NULL);
L
Linus Torvalds 已提交
411 412 413 414
			put_write_access(inode);
			if (!err)
				goto again;
		}
A
Arnd Bergmann 已提交
415
		hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
416 417
		return -ENOSPC;
	default:
418
		drop_nlink(inode);
L
Linus Torvalds 已提交
419 420 421 422 423 424 425
		err = 0;
	}
	goto out;

out1:
	hpfs_brelse4(&qbh);
out:
A
Arnd Bergmann 已提交
426
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
427 428 429 430 431
	return err;
}

static int hpfs_rmdir(struct inode *dir, struct dentry *dentry)
{
432
	const unsigned char *name = dentry->d_name.name;
L
Linus Torvalds 已提交
433 434 435 436 437 438 439 440 441
	unsigned len = dentry->d_name.len;
	struct quad_buffer_head qbh;
	struct hpfs_dirent *de;
	struct inode *inode = dentry->d_inode;
	dnode_secno dno;
	int n_items = 0;
	int err;
	int r;

442
	hpfs_adjust_length(name, &len);
A
Arnd Bergmann 已提交
443
	hpfs_lock(dir->i_sb);
L
Linus Torvalds 已提交
444
	err = -ENOENT;
445
	de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
L
Linus Torvalds 已提交
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
	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;

	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:
472
		drop_nlink(dir);
473
		clear_nlink(inode);
L
Linus Torvalds 已提交
474 475 476 477 478 479
		err = 0;
	}
	goto out;
out1:
	hpfs_brelse4(&qbh);
out:
A
Arnd Bergmann 已提交
480
	hpfs_unlock(dir->i_sb);
L
Linus Torvalds 已提交
481 482 483 484 485 486 487 488 489 490 491 492
	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;
A
Arnd Bergmann 已提交
493
	hpfs_lock(i->i_sb);
L
Linus Torvalds 已提交
494 495 496 497 498 499
	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;
A
Arnd Bergmann 已提交
500
	hpfs_unlock(i->i_sb);
L
Linus Torvalds 已提交
501 502 503 504 505 506
	SetPageUptodate(page);
	kunmap(page);
	unlock_page(page);
	return 0;

fail:
A
Arnd Bergmann 已提交
507
	hpfs_unlock(i->i_sb);
L
Linus Torvalds 已提交
508 509 510 511 512 513
	SetPageError(page);
	kunmap(page);
	unlock_page(page);
	return err;
}

514
const struct address_space_operations hpfs_symlink_aops = {
L
Linus Torvalds 已提交
515 516 517 518 519 520
	.readpage	= hpfs_symlink_readpage
};
	
static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry,
		struct inode *new_dir, struct dentry *new_dentry)
{
521 522 523 524
	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 已提交
525 526 527 528 529 530 531 532 533 534
	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;
535

536
	if ((err = hpfs_chk_name(new_name, &new_len))) return err;
L
Linus Torvalds 已提交
537
	err = 0;
538
	hpfs_adjust_length(old_name, &old_len);
L
Linus Torvalds 已提交
539

A
Arnd Bergmann 已提交
540
	hpfs_lock(i->i_sb);
L
Linus Torvalds 已提交
541 542 543 544 545 546 547 548
	/* order doesn't matter, due to VFS exclusion */
	
	/* Erm? Moving over the empty non-busy directory is perfectly legal */
	if (new_inode && S_ISDIR(new_inode->i_mode)) {
		err = -EINVAL;
		goto end1;
	}

549
	if (!(dep = map_dirent(old_dir, hpfs_i(old_dir)->i_dno, old_name, old_len, &dno, &qbh))) {
L
Linus Torvalds 已提交
550 551 552 553 554 555 556 557 558 559
		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) {
560
			if ((nde = map_dirent(new_dir, hpfs_i(new_dir)->i_dno, new_name, new_len, NULL, &qbh1))) {
561
				clear_nlink(new_inode);
L
Linus Torvalds 已提交
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
				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);

M
Mikulas Patocka 已提交
578
	if ((r = hpfs_add_dirent(new_dir, new_name, new_len, &de))) {
L
Linus Torvalds 已提交
579 580 581 582 583 584 585
		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)
586
		if (!(dep = map_dirent(old_dir, hpfs_i(old_dir)->i_dno, old_name, old_len, &dno, &qbh))) {
L
Linus Torvalds 已提交
587 588 589 590 591 592 593 594 595 596
			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_error(i->i_sb, "hpfs_rename: could not remove dirent");
		err = r == 2 ? -ENOSPC : -EFSERROR;
		goto end1;
	}
M
Mikulas Patocka 已提交
597

L
Linus Torvalds 已提交
598 599 600
	end:
	hpfs_i(i)->i_parent_dir = new_dir->i_ino;
	if (S_ISDIR(i->i_mode)) {
601
		inc_nlink(new_dir);
602
		drop_nlink(old_dir);
L
Linus Torvalds 已提交
603 604
	}
	if ((fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh))) {
605
		fnode->up = cpu_to_le32(new_dir->i_ino);
L
Linus Torvalds 已提交
606 607 608 609 610 611 612
		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);
	}
end1:
A
Arnd Bergmann 已提交
613
	hpfs_unlock(i->i_sb);
L
Linus Torvalds 已提交
614 615 616
	return err;
}

617
const struct inode_operations hpfs_dir_iops =
L
Linus Torvalds 已提交
618 619 620 621 622 623 624 625 626
{
	.create		= hpfs_create,
	.lookup		= hpfs_lookup,
	.unlink		= hpfs_unlink,
	.symlink	= hpfs_symlink,
	.mkdir		= hpfs_mkdir,
	.rmdir		= hpfs_rmdir,
	.mknod		= hpfs_mknod,
	.rename		= hpfs_rename,
627
	.setattr	= hpfs_setattr,
L
Linus Torvalds 已提交
628
};