namei.c 44.2 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
 *
 * Trivial changes by Alan Cox to remove EHASHCOLLISION for compatibility
 *
 * Trivial Changes:
 * Rights granted to Hans Reiser to redistribute under other terms providing
 * he accepts all liability including but not limited to patent, fitness
 * for purpose, and direct or indirect claims arising from failure to perform.
 *
 * NO WARRANTY
 */

#include <linux/time.h>
#include <linux/bitops.h>
16
#include <linux/slab.h>
17
#include "reiserfs.h"
18
#include "acl.h"
19
#include "xattr.h"
Linus Torvalds's avatar
Linus Torvalds committed
20 21
#include <linux/quotaops.h>

22
#define INC_DIR_INODE_NLINK(i) if (i->i_nlink != 1) { inc_nlink(i); if (i->i_nlink >= REISERFS_LINK_MAX) set_nlink(i, 1); }
23
#define DEC_DIR_INODE_NLINK(i) if (i->i_nlink != 1) drop_nlink(i);
Linus Torvalds's avatar
Linus Torvalds committed
24

25 26 27 28
/*
 * directory item contains array of entry headers. This performs
 * binary search through that array
 */
29
static int bin_search_in_dir_item(struct reiserfs_dir_entry *de, loff_t off)
Linus Torvalds's avatar
Linus Torvalds committed
30
{
31 32 33 34 35
	struct item_head *ih = de->de_ih;
	struct reiserfs_de_head *deh = de->de_deh;
	int rbound, lbound, j;

	lbound = 0;
36
	rbound = ih_entry_count(ih) - 1;
37 38 39 40 41 42 43 44 45 46 47

	for (j = (rbound + lbound) / 2; lbound <= rbound;
	     j = (rbound + lbound) / 2) {
		if (off < deh_offset(deh + j)) {
			rbound = j - 1;
			continue;
		}
		if (off > deh_offset(deh + j)) {
			lbound = j + 1;
			continue;
		}
48
		/* this is not name found, but matched third key component */
49 50
		de->de_entry_num = j;
		return NAME_FOUND;
Linus Torvalds's avatar
Linus Torvalds committed
51 52
	}

53 54
	de->de_entry_num = lbound;
	return NAME_NOT_FOUND;
Linus Torvalds's avatar
Linus Torvalds committed
55 56
}

57 58 59
/*
 * comment?  maybe something like set de to point to what the path points to?
 */
60
static inline void set_de_item_location(struct reiserfs_dir_entry *de,
61
					struct treepath *path)
Linus Torvalds's avatar
Linus Torvalds committed
62
{
63
	de->de_bh = get_last_bh(path);
64
	de->de_ih = tp_item_head(path);
65 66 67
	de->de_deh = B_I_DEH(de->de_bh, de->de_ih);
	de->de_item_num = PATH_LAST_POSITION(path);
}
Linus Torvalds's avatar
Linus Torvalds committed
68

69 70 71
/*
 * de_bh, de_ih, de_deh (points to first element of array), de_item_num is set
 */
72
inline void set_de_name_and_namelen(struct reiserfs_dir_entry *de)
Linus Torvalds's avatar
Linus Torvalds committed
73
{
74
	struct reiserfs_de_head *deh = de->de_deh + de->de_entry_num;
Linus Torvalds's avatar
Linus Torvalds committed
75

76
	BUG_ON(de->de_entry_num >= ih_entry_count(de->de_ih));
Linus Torvalds's avatar
Linus Torvalds committed
77

78 79
	de->de_entrylen = entry_length(de->de_bh, de->de_ih, de->de_entry_num);
	de->de_namelen = de->de_entrylen - (de_with_sd(deh) ? SD_SIZE : 0);
80
	de->de_name = ih_item_body(de->de_bh, de->de_ih) + deh_location(deh);
81 82
	if (de->de_name[de->de_namelen - 1] == 0)
		de->de_namelen = strlen(de->de_name);
Linus Torvalds's avatar
Linus Torvalds committed
83 84
}

85
/* what entry points to */
86
static inline void set_de_object_key(struct reiserfs_dir_entry *de)
Linus Torvalds's avatar
Linus Torvalds committed
87
{
88
	BUG_ON(de->de_entry_num >= ih_entry_count(de->de_ih));
89 90
	de->de_dir_id = deh_dir_id(&de->de_deh[de->de_entry_num]);
	de->de_objectid = deh_objectid(&de->de_deh[de->de_entry_num]);
Linus Torvalds's avatar
Linus Torvalds committed
91 92
}

93
static inline void store_de_entry_key(struct reiserfs_dir_entry *de)
Linus Torvalds's avatar
Linus Torvalds committed
94
{
95 96
	struct reiserfs_de_head *deh = de->de_deh + de->de_entry_num;

97
	BUG_ON(de->de_entry_num >= ih_entry_count(de->de_ih));
98 99 100 101 102 103 104

	/* store key of the found entry */
	de->de_entry_key.version = KEY_FORMAT_3_5;
	de->de_entry_key.on_disk_key.k_dir_id =
	    le32_to_cpu(de->de_ih->ih_key.k_dir_id);
	de->de_entry_key.on_disk_key.k_objectid =
	    le32_to_cpu(de->de_ih->ih_key.k_objectid);
105 106
	set_cpu_key_k_offset(&de->de_entry_key, deh_offset(deh));
	set_cpu_key_k_type(&de->de_entry_key, TYPE_DIRENTRY);
Linus Torvalds's avatar
Linus Torvalds committed
107 108
}

109 110 111 112 113 114 115 116 117 118
/*
 * We assign a key to each directory item, and place multiple entries in a
 * single directory item.  A directory item has a key equal to the key of
 * the first directory entry in it.

 * This function first calls search_by_key, then, if item whose first entry
 * matches is not found it looks for the entry inside directory item found
 * by search_by_key. Fills the path to the entry, and to the entry position
 * in the item
 */
Linus Torvalds's avatar
Linus Torvalds committed
119
/* The function is NOT SCHEDULE-SAFE! */
120
int search_by_entry_key(struct super_block *sb, const struct cpu_key *key,
121
			struct treepath *path, struct reiserfs_dir_entry *de)
Linus Torvalds's avatar
Linus Torvalds committed
122
{
123 124 125 126 127 128
	int retval;

	retval = search_item(sb, key, path);
	switch (retval) {
	case ITEM_NOT_FOUND:
		if (!PATH_LAST_POSITION(path)) {
129 130
			reiserfs_error(sb, "vs-7000", "search_by_key "
				       "returned item position == 0");
131 132 133 134 135 136 137 138 139 140 141 142 143
			pathrelse(path);
			return IO_ERROR;
		}
		PATH_LAST_POSITION(path)--;

	case ITEM_FOUND:
		break;

	case IO_ERROR:
		return retval;

	default:
		pathrelse(path);
144
		reiserfs_error(sb, "vs-7002", "no path to here");
145
		return IO_ERROR;
Linus Torvalds's avatar
Linus Torvalds committed
146 147
	}

148
	set_de_item_location(de, path);
Linus Torvalds's avatar
Linus Torvalds committed
149 150

#ifdef CONFIG_REISERFS_CHECK
151
	if (!is_direntry_le_ih(de->de_ih) ||
152
	    COMP_SHORT_KEYS(&de->de_ih->ih_key, key)) {
153
		print_block(de->de_bh, 0, -1, -1);
154 155 156
		reiserfs_panic(sb, "vs-7005", "found item %h is not directory "
			       "item or does not belong to the same directory "
			       "as key %K", de->de_ih, key);
157 158 159
	}
#endif				/* CONFIG_REISERFS_CHECK */

160 161 162 163
	/*
	 * binary search in directory item by third component of the
	 * key. sets de->de_entry_num of de
	 */
164 165 166
	retval = bin_search_in_dir_item(de, cpu_key_k_offset(key));
	path->pos_in_item = de->de_entry_num;
	if (retval != NAME_NOT_FOUND) {
167 168 169 170
		/*
		 * ugly, but rename needs de_bh, de_deh, de_name,
		 * de_namelen, de_objectid set
		 */
171 172 173 174
		set_de_name_and_namelen(de);
		set_de_object_key(de);
	}
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
175 176 177 178
}

/* Keyed 32-bit hash function using TEA in a Davis-Meyer function */

179 180 181 182 183 184
/*
 * The third component is hashed, and you can choose from more than
 * one hash function.  Per directory hashes are not yet implemented
 * but are thought about. This function should be moved to hashes.c
 * Jedi, please do so.  -Hans
 */
185 186
static __u32 get_third_component(struct super_block *s,
				 const char *name, int len)
Linus Torvalds's avatar
Linus Torvalds committed
187
{
188 189 190 191 192 193 194 195 196
	__u32 res;

	if (!len || (len == 1 && name[0] == '.'))
		return DOT_OFFSET;
	if (len == 2 && name[0] == '.' && name[1] == '.')
		return DOT_DOT_OFFSET;

	res = REISERFS_SB(s)->s_hash_function(name, len);

197
	/* take bits from 7-th to 30-th including both bounds */
198 199
	res = GET_HASH_VALUE(res);
	if (res == 0)
200 201 202 203
		/*
		 * needed to have no names before "." and ".." those have hash
		 * value == 0 and generation conters 1 and 2 accordingly
		 */
204 205
		res = 128;
	return res + MAX_GENERATION_NUMBER;
Linus Torvalds's avatar
Linus Torvalds committed
206 207
}

208 209
static int reiserfs_match(struct reiserfs_dir_entry *de,
			  const char *name, int namelen)
Linus Torvalds's avatar
Linus Torvalds committed
210
{
211
	int retval = NAME_NOT_FOUND;
Linus Torvalds's avatar
Linus Torvalds committed
212

213 214 215 216 217
	if ((namelen == de->de_namelen) &&
	    !memcmp(de->de_name, name, de->de_namelen))
		retval =
		    (de_visible(de->de_deh + de->de_entry_num) ? NAME_FOUND :
		     NAME_FOUND_INVISIBLE);
Linus Torvalds's avatar
Linus Torvalds committed
218

219
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
220 221 222 223
}

/* de's de_bh, de_ih, de_deh, de_item_num, de_entry_num are set already */

224
/* used when hash collisions exist */
Linus Torvalds's avatar
Linus Torvalds committed
225

226 227 228
static int linear_search_in_dir_item(struct cpu_key *key,
				     struct reiserfs_dir_entry *de,
				     const char *name, int namelen)
Linus Torvalds's avatar
Linus Torvalds committed
229
{
230 231 232
	struct reiserfs_de_head *deh = de->de_deh;
	int retval;
	int i;
Linus Torvalds's avatar
Linus Torvalds committed
233

234
	i = de->de_entry_num;
Linus Torvalds's avatar
Linus Torvalds committed
235

236
	if (i == ih_entry_count(de->de_ih) ||
237 238 239 240
	    GET_HASH_VALUE(deh_offset(deh + i)) !=
	    GET_HASH_VALUE(cpu_key_k_offset(key))) {
		i--;
	}
Linus Torvalds's avatar
Linus Torvalds committed
241

242 243
	RFALSE(de->de_deh != B_I_DEH(de->de_bh, de->de_ih),
	       "vs-7010: array of entry headers not found");
Linus Torvalds's avatar
Linus Torvalds committed
244

245
	deh += i;
Linus Torvalds's avatar
Linus Torvalds committed
246

247
	for (; i >= 0; i--, deh--) {
248
		/* hash value does not match, no need to check whole name */
249 250 251 252 253
		if (GET_HASH_VALUE(deh_offset(deh)) !=
		    GET_HASH_VALUE(cpu_key_k_offset(key))) {
			return NAME_NOT_FOUND;
		}

254
		/* mark that this generation number is used */
255 256
		if (de->de_gen_number_bit_string)
			set_bit(GET_GENERATION_NUMBER(deh_offset(deh)),
257
				de->de_gen_number_bit_string);
Linus Torvalds's avatar
Linus Torvalds committed
258

259
		/* calculate pointer to name and namelen */
260 261
		de->de_entry_num = i;
		set_de_name_and_namelen(de);
Linus Torvalds's avatar
Linus Torvalds committed
262

263 264 265 266
		/*
		 * de's de_name, de_namelen, de_recordlen are set.
		 * Fill the rest.
		 */
267 268
		if ((retval =
		     reiserfs_match(de, name, namelen)) != NAME_NOT_FOUND) {
Linus Torvalds's avatar
Linus Torvalds committed
269

270
			/* key of pointed object */
271
			set_de_object_key(de);
Linus Torvalds's avatar
Linus Torvalds committed
272

273
			store_de_entry_key(de);
Linus Torvalds's avatar
Linus Torvalds committed
274

275
			/* retval can be NAME_FOUND or NAME_FOUND_INVISIBLE */
276 277
			return retval;
		}
Linus Torvalds's avatar
Linus Torvalds committed
278 279
	}

280
	if (GET_GENERATION_NUMBER(le_ih_k_offset(de->de_ih)) == 0)
281 282 283 284 285 286 287 288 289 290 291
		/*
		 * we have reached left most entry in the node. In common we
		 * have to go to the left neighbor, but if generation counter
		 * is 0 already, we know for sure, that there is no name with
		 * the same hash value
		 */
		/*
		 * FIXME: this work correctly only because hash value can not
		 *  be 0. Btw, in case of Yura's hash it is probably possible,
		 * so, this is a bug
		 */
292
		return NAME_NOT_FOUND;
Linus Torvalds's avatar
Linus Torvalds committed
293

294 295
	RFALSE(de->de_item_num,
	       "vs-7015: two diritems of the same directory in one node?");
Linus Torvalds's avatar
Linus Torvalds committed
296

297 298
	return GOTO_PREVIOUS_ITEM;
}
Linus Torvalds's avatar
Linus Torvalds committed
299

300 301 302 303
/*
 * may return NAME_FOUND, NAME_FOUND_INVISIBLE, NAME_NOT_FOUND
 * FIXME: should add something like IOERROR
 */
304
static int reiserfs_find_entry(struct inode *dir, const char *name, int namelen,
305
			       struct treepath *path_to_entry,
306
			       struct reiserfs_dir_entry *de)
Linus Torvalds's avatar
Linus Torvalds committed
307
{
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
	struct cpu_key key_to_search;
	int retval;

	if (namelen > REISERFS_MAX_NAME(dir->i_sb->s_blocksize))
		return NAME_NOT_FOUND;

	/* we will search for this key in the tree */
	make_cpu_key(&key_to_search, dir,
		     get_third_component(dir->i_sb, name, namelen),
		     TYPE_DIRENTRY, 3);

	while (1) {
		retval =
		    search_by_entry_key(dir->i_sb, &key_to_search,
					path_to_entry, de);
		if (retval == IO_ERROR) {
324
			reiserfs_error(dir->i_sb, "zam-7001", "io error");
325 326 327 328 329 330 331
			return IO_ERROR;
		}

		/* compare names for all entries having given hash value */
		retval =
		    linear_search_in_dir_item(&key_to_search, de, name,
					      namelen);
332 333 334 335
		/*
		 * there is no need to scan directory anymore.
		 * Given entry found or does not exist
		 */
336 337 338 339 340
		if (retval != GOTO_PREVIOUS_ITEM) {
			path_to_entry->pos_in_item = de->de_entry_num;
			return retval;
		}

341 342 343 344
		/*
		 * there is left neighboring item of this directory
		 * and given entry can be there
		 */
345 346 347 348 349
		set_cpu_key_k_offset(&key_to_search,
				     le_ih_k_offset(de->de_ih) - 1);
		pathrelse(path_to_entry);

	}			/* while (1) */
Linus Torvalds's avatar
Linus Torvalds committed
350 351
}

352
static struct dentry *reiserfs_lookup(struct inode *dir, struct dentry *dentry,
353
				      unsigned int flags)
Linus Torvalds's avatar
Linus Torvalds committed
354
{
355 356 357 358 359 360 361 362
	int retval;
	struct inode *inode = NULL;
	struct reiserfs_dir_entry de;
	INITIALIZE_PATH(path_to_entry);

	if (REISERFS_MAX_NAME(dir->i_sb->s_blocksize) < dentry->d_name.len)
		return ERR_PTR(-ENAMETOOLONG);

363
	reiserfs_write_lock(dir->i_sb);
364

365 366 367 368 369 370
	de.de_gen_number_bit_string = NULL;
	retval =
	    reiserfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len,
				&path_to_entry, &de);
	pathrelse(&path_to_entry);
	if (retval == NAME_FOUND) {
371
		inode = reiserfs_iget(dir->i_sb,
372
				      (struct cpu_key *)&de.de_dir_id);
373
		if (!inode || IS_ERR(inode)) {
374
			reiserfs_write_unlock(dir->i_sb);
375 376 377
			return ERR_PTR(-EACCES);
		}

378 379
		/*
		 * Propagate the private flag so we know we're
380 381
		 * in the priv tree.  Also clear IOP_XATTR
		 * since we don't have xattrs on xattr files.
382
		 */
383
		if (IS_PRIVATE(dir)) {
384
			inode->i_flags |= S_PRIVATE;
385 386
			inode->i_opflags &= ~IOP_XATTR;
		}
387
	}
388
	reiserfs_write_unlock(dir->i_sb);
389 390
	if (retval == IO_ERROR) {
		return ERR_PTR(-EIO);
Linus Torvalds's avatar
Linus Torvalds committed
391 392
	}

393
	return d_splice_alias(inode, dentry);
394
}
Linus Torvalds's avatar
Linus Torvalds committed
395

396
/*
397 398 399
 * looks up the dentry of the parent directory for child.
 * taken from ext2_get_parent
 */
Linus Torvalds's avatar
Linus Torvalds committed
400 401
struct dentry *reiserfs_get_parent(struct dentry *child)
{
402 403 404 405
	int retval;
	struct inode *inode = NULL;
	struct reiserfs_dir_entry de;
	INITIALIZE_PATH(path_to_entry);
406
	struct inode *dir = d_inode(child);
407 408 409 410 411 412 413 414 415 416 417 418 419

	if (dir->i_nlink == 0) {
		return ERR_PTR(-ENOENT);
	}
	de.de_gen_number_bit_string = NULL;

	reiserfs_write_lock(dir->i_sb);
	retval = reiserfs_find_entry(dir, "..", 2, &path_to_entry, &de);
	pathrelse(&path_to_entry);
	if (retval != NAME_FOUND) {
		reiserfs_write_unlock(dir->i_sb);
		return ERR_PTR(-ENOENT);
	}
420
	inode = reiserfs_iget(dir->i_sb, (struct cpu_key *)&de.de_dir_id);
Linus Torvalds's avatar
Linus Torvalds committed
421 422
	reiserfs_write_unlock(dir->i_sb);

423
	return d_obtain_alias(inode);
424
}
Linus Torvalds's avatar
Linus Torvalds committed
425

426
/* add entry to the directory (entry can be hidden).
Linus Torvalds's avatar
Linus Torvalds committed
427 428 429 430 431

insert definition of when hidden directories are used here -Hans

 Does not mark dir   inode dirty, do it after successesfull call to it */

432 433 434
static int reiserfs_add_entry(struct reiserfs_transaction_handle *th,
			      struct inode *dir, const char *name, int namelen,
			      struct inode *inode, int visible)
Linus Torvalds's avatar
Linus Torvalds committed
435
{
436 437 438 439
	struct cpu_key entry_key;
	struct reiserfs_de_head *deh;
	INITIALIZE_PATH(path);
	struct reiserfs_dir_entry de;
440
	DECLARE_BITMAP(bit_string, MAX_GENERATION_NUMBER + 1);
441
	int gen_number;
442 443 444 445 446 447 448

	/*
	 * 48 bytes now and we avoid kmalloc if we
	 * create file with short name
	 */
	char small_buf[32 + DEH_SIZE];

449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
	char *buffer;
	int buflen, paste_size;
	int retval;

	BUG_ON(!th->t_trans_id);

	/* cannot allow items to be added into a busy deleted directory */
	if (!namelen)
		return -EINVAL;

	if (namelen > REISERFS_MAX_NAME(dir->i_sb->s_blocksize))
		return -ENAMETOOLONG;

	/* each entry has unique key. compose it */
	make_cpu_key(&entry_key, dir,
		     get_third_component(dir->i_sb, name, namelen),
		     TYPE_DIRENTRY, 3);

	/* get memory for composing the entry */
	buflen = DEH_SIZE + ROUND_UP(namelen);
	if (buflen > sizeof(small_buf)) {
470
		buffer = kmalloc(buflen, GFP_NOFS);
Al Viro's avatar
Al Viro committed
471
		if (!buffer)
472 473 474 475 476 477 478 479
			return -ENOMEM;
	} else
		buffer = small_buf;

	paste_size =
	    (get_inode_sd_version(dir) ==
	     STAT_DATA_V1) ? (DEH_SIZE + namelen) : buflen;

480 481 482 483
	/*
	 * fill buffer : directory entry head, name[, dir objectid | ,
	 * stat data | ,stat data, dir objectid ]
	 */
484 485 486 487 488
	deh = (struct reiserfs_de_head *)buffer;
	deh->deh_location = 0;	/* JDM Endian safe if 0 */
	put_deh_offset(deh, cpu_key_k_offset(&entry_key));
	deh->deh_state = 0;	/* JDM Endian safe if 0 */
	/* put key (ino analog) to de */
489 490 491 492 493

	/* safe: k_dir_id is le */
	deh->deh_dir_id = INODE_PKEY(inode)->k_dir_id;
	/* safe: k_objectid is le */
	deh->deh_objectid = INODE_PKEY(inode)->k_objectid;
494 495 496 497 498 499

	/* copy name */
	memcpy((char *)(deh + 1), name, namelen);
	/* padd by 0s to the 4 byte boundary */
	padd_item((char *)(deh + 1), ROUND_UP(namelen), namelen);

500 501 502 503
	/*
	 * entry is ready to be pasted into tree, set 'visibility'
	 * and 'stat data in entry' attributes
	 */
504 505 506 507 508
	mark_de_without_sd(deh);
	visible ? mark_de_visible(deh) : mark_de_hidden(deh);

	/* find the proper place for the new entry */
	memset(bit_string, 0, sizeof(bit_string));
509
	de.de_gen_number_bit_string = bit_string;
510 511 512
	retval = reiserfs_find_entry(dir, name, namelen, &path, &de);
	if (retval != NAME_NOT_FOUND) {
		if (buffer != small_buf)
513
			kfree(buffer);
514 515 516 517 518 519 520
		pathrelse(&path);

		if (retval == IO_ERROR) {
			return -EIO;
		}

		if (retval != NAME_FOUND) {
521 522 523
			reiserfs_error(dir->i_sb, "zam-7002",
				       "reiserfs_find_entry() returned "
				       "unexpected value (%d)", retval);
524 525 526 527
		}

		return -EEXIST;
	}
Linus Torvalds's avatar
Linus Torvalds committed
528

529
	gen_number =
530
	    find_first_zero_bit(bit_string,
531 532 533
				MAX_GENERATION_NUMBER + 1);
	if (gen_number > MAX_GENERATION_NUMBER) {
		/* there is no free generation number */
534 535 536
		reiserfs_warning(dir->i_sb, "reiserfs-7010",
				 "Congratulations! we have got hash function "
				 "screwed up");
537
		if (buffer != small_buf)
538
			kfree(buffer);
539 540 541 542 543 544 545 546 547 548
		pathrelse(&path);
		return -EBUSY;
	}
	/* adjust offset of directory enrty */
	put_deh_offset(deh, SET_GENERATION_NUMBER(deh_offset(deh), gen_number));
	set_cpu_key_k_offset(&entry_key, deh_offset(deh));

	/* update max-hash-collisions counter in reiserfs_sb_info */
	PROC_INFO_MAX(th->t_super, max_hash_collisions, gen_number);

549 550
	/* we need to re-search for the insertion point */
	if (gen_number != 0) {
551 552
		if (search_by_entry_key(dir->i_sb, &entry_key, &path, &de) !=
		    NAME_NOT_FOUND) {
553 554 555
			reiserfs_warning(dir->i_sb, "vs-7032",
					 "entry with this key (%K) already "
					 "exists", &entry_key);
556 557

			if (buffer != small_buf)
558
				kfree(buffer);
559 560 561
			pathrelse(&path);
			return -EBUSY;
		}
Linus Torvalds's avatar
Linus Torvalds committed
562 563
	}

564 565 566 567 568
	/* perform the insertion of the entry that we have prepared */
	retval =
	    reiserfs_paste_into_item(th, &path, &entry_key, dir, buffer,
				     paste_size);
	if (buffer != small_buf)
569
		kfree(buffer);
570 571 572
	if (retval) {
		reiserfs_check_path(&path);
		return retval;
Linus Torvalds's avatar
Linus Torvalds committed
573 574
	}

575
	dir->i_size += paste_size;
576
	dir->i_mtime = dir->i_ctime = current_time(dir);
577
	if (!S_ISDIR(inode->i_mode) && visible)
578
		/* reiserfs_mkdir or reiserfs_rename will do that by itself */
579
		reiserfs_update_sd(th, dir);
Linus Torvalds's avatar
Linus Torvalds committed
580

581 582
	reiserfs_check_path(&path);
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
583 584
}

585 586 587 588 589 590
/*
 * quota utility function, call if you've had to abort after calling
 * new_inode_init, and have not called reiserfs_new_inode yet.
 * This should only be called on inodes that do not have stat data
 * inserted into the tree yet.
 */
591 592
static int drop_new_inode(struct inode *inode)
{
593
	dquot_drop(inode);
594 595 596 597
	make_bad_inode(inode);
	inode->i_flags |= S_NOQUOTA;
	iput(inode);
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
598 599
}

600 601 602 603 604 605
/*
 * utility function that does setup for reiserfs_new_inode.
 * dquot_initialize needs lots of credits so it's better to have it
 * outside of a transaction, so we had to pull some bits of
 * reiserfs_new_inode out into this func.
 */
Al Viro's avatar
Al Viro committed
606
static int new_inode_init(struct inode *inode, struct inode *dir, umode_t mode)
607
{
608 609 610 611
	/*
	 * Make inode invalid - just in case we are going to drop it before
	 * the initialization happens
	 */
612
	INODE_PKEY(inode)->k_objectid = 0;
613 614 615 616

	/*
	 * the quota init calls have to know who to charge the quota to, so
	 * we have to set uid and gid here
617
	 */
618
	inode_init_owner(&init_user_ns, inode, dir, mode);
619
	return dquot_initialize(inode);
Linus Torvalds's avatar
Linus Torvalds committed
620 621
}

622 623
static int reiserfs_create(struct user_namespace *mnt_userns, struct inode *dir,
			   struct dentry *dentry, umode_t mode, bool excl)
Linus Torvalds's avatar
Linus Torvalds committed
624
{
625 626
	int retval;
	struct inode *inode;
627 628 629 630
	/*
	 * We need blocks for transaction + (user+group)*(quotas
	 * for new inode + update of quota for directory owner)
	 */
631 632 633 634 635
	int jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 2 +
	    2 * (REISERFS_QUOTA_INIT_BLOCKS(dir->i_sb) +
		 REISERFS_QUOTA_TRANS_BLOCKS(dir->i_sb));
	struct reiserfs_transaction_handle th;
636
	struct reiserfs_security_handle security;
637

638 639 640
	retval = dquot_initialize(dir);
	if (retval)
		return retval;
641

642 643 644
	if (!(inode = new_inode(dir->i_sb))) {
		return -ENOMEM;
	}
645 646 647 648 649
	retval = new_inode_init(inode, dir, mode);
	if (retval) {
		drop_new_inode(inode);
		return retval;
	}
Linus Torvalds's avatar
Linus Torvalds committed
650

Jeff Mahoney's avatar
Jeff Mahoney committed
651
	jbegin_count += reiserfs_cache_default_acl(dir);
652
	retval = reiserfs_security_init(dir, inode, &dentry->d_name, &security);
653 654 655 656 657
	if (retval < 0) {
		drop_new_inode(inode);
		return retval;
	}
	jbegin_count += retval;
658
	reiserfs_write_lock(dir->i_sb);
Linus Torvalds's avatar
Linus Torvalds committed
659

660 661 662 663 664 665 666 667
	retval = journal_begin(&th, dir->i_sb, jbegin_count);
	if (retval) {
		drop_new_inode(inode);
		goto out_failed;
	}

	retval =
	    reiserfs_new_inode(&th, dir, mode, NULL, 0 /*i_size */ , dentry,
668
			       inode, &security);
669 670 671 672 673 674 675 676 677 678 679 680
	if (retval)
		goto out_failed;

	inode->i_op = &reiserfs_file_inode_operations;
	inode->i_fop = &reiserfs_file_operations;
	inode->i_mapping->a_ops = &reiserfs_address_space_operations;

	retval =
	    reiserfs_add_entry(&th, dir, dentry->d_name.name,
			       dentry->d_name.len, inode, 1 /*visible */ );
	if (retval) {
		int err;
681
		drop_nlink(inode);
682
		reiserfs_update_sd(&th, inode);
683
		err = journal_end(&th);
684 685
		if (err)
			retval = err;
Al Viro's avatar
Al Viro committed
686
		unlock_new_inode(inode);
687 688 689 690 691
		iput(inode);
		goto out_failed;
	}
	reiserfs_update_inode_transaction(inode);
	reiserfs_update_inode_transaction(dir);
Linus Torvalds's avatar
Linus Torvalds committed
692

693
	d_instantiate_new(dentry, inode);
694
	retval = journal_end(&th);
Linus Torvalds's avatar
Linus Torvalds committed
695

696
out_failed:
697 698 699
	reiserfs_write_unlock(dir->i_sb);
	return retval;
}
Linus Torvalds's avatar
Linus Torvalds committed
700

701 702
static int reiserfs_mknod(struct user_namespace *mnt_userns, struct inode *dir,
			  struct dentry *dentry, umode_t mode, dev_t rdev)
703 704 705 706
{
	int retval;
	struct inode *inode;
	struct reiserfs_transaction_handle th;
707
	struct reiserfs_security_handle security;
708 709 710 711
	/*
	 * We need blocks for transaction + (user+group)*(quotas
	 * for new inode + update of quota for directory owner)
	 */
712 713 714 715 716
	int jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 3 +
	    2 * (REISERFS_QUOTA_INIT_BLOCKS(dir->i_sb) +
		 REISERFS_QUOTA_TRANS_BLOCKS(dir->i_sb));

717 718 719
	retval = dquot_initialize(dir);
	if (retval)
		return retval;
720

721 722 723
	if (!(inode = new_inode(dir->i_sb))) {
		return -ENOMEM;
	}
724 725 726 727 728
	retval = new_inode_init(inode, dir, mode);
	if (retval) {
		drop_new_inode(inode);
		return retval;
	}
Linus Torvalds's avatar
Linus Torvalds committed
729

Jeff Mahoney's avatar
Jeff Mahoney committed
730
	jbegin_count += reiserfs_cache_default_acl(dir);
731
	retval = reiserfs_security_init(dir, inode, &dentry->d_name, &security);
732 733 734 735 736
	if (retval < 0) {
		drop_new_inode(inode);
		return retval;
	}
	jbegin_count += retval;
737
	reiserfs_write_lock(dir->i_sb);
Linus Torvalds's avatar
Linus Torvalds committed
738

739 740 741 742 743
	retval = journal_begin(&th, dir->i_sb, jbegin_count);
	if (retval) {
		drop_new_inode(inode);
		goto out_failed;
	}
Linus Torvalds's avatar
Linus Torvalds committed
744

745 746
	retval =
	    reiserfs_new_inode(&th, dir, mode, NULL, 0 /*i_size */ , dentry,
747
			       inode, &security);
748 749 750
	if (retval) {
		goto out_failed;
	}
Linus Torvalds's avatar
Linus Torvalds committed
751

752 753 754
	inode->i_op = &reiserfs_special_inode_operations;
	init_special_inode(inode, inode->i_mode, rdev);

755
	/* FIXME: needed for block and char devices only */
756 757 758 759 760 761 762 763 764 765
	reiserfs_update_sd(&th, inode);

	reiserfs_update_inode_transaction(inode);
	reiserfs_update_inode_transaction(dir);

	retval =
	    reiserfs_add_entry(&th, dir, dentry->d_name.name,
			       dentry->d_name.len, inode, 1 /*visible */ );
	if (retval) {
		int err;
766
		drop_nlink(inode);
767
		reiserfs_update_sd(&th, inode);
768
		err = journal_end(&th);
769 770
		if (err)
			retval = err;
Al Viro's avatar
Al Viro committed
771
		unlock_new_inode(inode);
772 773 774
		iput(inode);
		goto out_failed;
	}
Linus Torvalds's avatar
Linus Torvalds committed
775

776
	d_instantiate_new(dentry, inode);
777
	retval = journal_end(&th);
Linus Torvalds's avatar
Linus Torvalds committed
778

779
out_failed:
780 781
	reiserfs_write_unlock(dir->i_sb);
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
782 783
}

784 785
static int reiserfs_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
			  struct dentry *dentry, umode_t mode)
Linus Torvalds's avatar
Linus Torvalds committed
786
{
787 788 789
	int retval;
	struct inode *inode;
	struct reiserfs_transaction_handle th;
790
	struct reiserfs_security_handle security;
791 792 793 794
	/*
	 * We need blocks for transaction + (user+group)*(quotas
	 * for new inode + update of quota for directory owner)
	 */
795 796 797 798
	int jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 3 +
	    2 * (REISERFS_QUOTA_INIT_BLOCKS(dir->i_sb) +
		 REISERFS_QUOTA_TRANS_BLOCKS(dir->i_sb));
Linus Torvalds's avatar
Linus Torvalds committed
799

800 801 802
	retval = dquot_initialize(dir);
	if (retval)
		return retval;
803

Linus Torvalds's avatar
Linus Torvalds committed
804
#ifdef DISPLACE_NEW_PACKING_LOCALITIES
805 806 807 808
	/*
	 * set flag that new packing locality created and new blocks
	 * for the content of that directory are not displaced yet
	 */
809
	REISERFS_I(dir)->new_packing_locality = 1;
Linus Torvalds's avatar
Linus Torvalds committed
810
#endif
811 812 813 814
	mode = S_IFDIR | mode;
	if (!(inode = new_inode(dir->i_sb))) {
		return -ENOMEM;
	}
815 816 817 818 819
	retval = new_inode_init(inode, dir, mode);
	if (retval) {
		drop_new_inode(inode);
		return retval;
	}
820

Jeff Mahoney's avatar
Jeff Mahoney committed
821
	jbegin_count += reiserfs_cache_default_acl(dir);
822
	retval = reiserfs_security_init(dir, inode, &dentry->d_name, &security);
823 824 825 826 827
	if (retval < 0) {
		drop_new_inode(inode);
		return retval;
	}
	jbegin_count += retval;
828
	reiserfs_write_lock(dir->i_sb);
829 830 831 832 833 834

	retval = journal_begin(&th, dir->i_sb, jbegin_count);
	if (retval) {
		drop_new_inode(inode);
		goto out_failed;
	}
Linus Torvalds's avatar
Linus Torvalds committed
835

836 837 838
	/*
	 * inc the link count now, so another writer doesn't overflow
	 * it while we sleep later on.
839 840 841
	 */
	INC_DIR_INODE_NLINK(dir)

842 843 844 845
	retval = reiserfs_new_inode(&th, dir, mode, NULL /*symlink */,
				    old_format_only(dir->i_sb) ?
				    EMPTY_DIR_SIZE_V1 : EMPTY_DIR_SIZE,
				    dentry, inode, &security);
846
	if (retval) {
Al Viro's avatar
Al Viro committed
847
		DEC_DIR_INODE_NLINK(dir)
848 849 850 851 852 853 854 855 856
		goto out_failed;
	}

	reiserfs_update_inode_transaction(inode);
	reiserfs_update_inode_transaction(dir);

	inode->i_op = &reiserfs_dir_inode_operations;
	inode->i_fop = &reiserfs_dir_operations;

857
	/* note, _this_ add_entry will not update dir's stat data */
858 859 860 861 862
	retval =
	    reiserfs_add_entry(&th, dir, dentry->d_name.name,
			       dentry->d_name.len, inode, 1 /*visible */ );
	if (retval) {
		int err;
863
		clear_nlink(inode);
864 865
		DEC_DIR_INODE_NLINK(dir);
		reiserfs_update_sd(&th, inode);
866
		err = journal_end(&th);
867 868
		if (err)
			retval = err;
Al Viro's avatar
Al Viro committed
869
		unlock_new_inode(inode);
870 871 872
		iput(inode);
		goto out_failed;
	}
873
	/* the above add_entry did not update dir's stat data */
874 875
	reiserfs_update_sd(&th, dir);

876
	d_instantiate_new(dentry, inode);
877
	retval = journal_end(&th);
878
out_failed:
879
	reiserfs_write_unlock(dir->i_sb);
880
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
881 882
}

883
static inline int reiserfs_empty_dir(struct inode *inode)
Linus Torvalds's avatar
Linus Torvalds committed
884
{
885 886 887 888 889
	/*
	 * we can cheat because an old format dir cannot have
	 * EMPTY_DIR_SIZE, and a new format dir cannot have
	 * EMPTY_DIR_SIZE_V1.  So, if the inode is either size,
	 * regardless of disk format version, the directory is empty.
890 891 892 893 894 895
	 */
	if (inode->i_size != EMPTY_DIR_SIZE &&
	    inode->i_size != EMPTY_DIR_SIZE_V1) {
		return 0;
	}
	return 1;
Linus Torvalds's avatar
Linus Torvalds committed
896 897
}

898
static int reiserfs_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds's avatar
Linus Torvalds committed
899
{
900 901 902 903 904 905 906
	int retval, err;
	struct inode *inode;
	struct reiserfs_transaction_handle th;
	int jbegin_count;
	INITIALIZE_PATH(path);
	struct reiserfs_dir_entry de;

907 908 909 910 911 912
	/*
	 * we will be doing 2 balancings and update 2 stat data, we
	 * change quotas of the owner of the directory and of the owner
	 * of the parent directory.  The quota structure is possibly
	 * deleted only on last iput => outside of this transaction
	 */
913 914 915 916
	jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 2 + 2 +
	    4 * REISERFS_QUOTA_TRANS_BLOCKS(dir->i_sb);

917 918 919
	retval = dquot_initialize(dir);
	if (retval)
		return retval;
920

921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
	reiserfs_write_lock(dir->i_sb);
	retval = journal_begin(&th, dir->i_sb, jbegin_count);
	if (retval)
		goto out_rmdir;

	de.de_gen_number_bit_string = NULL;
	if ((retval =
	     reiserfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len,
				 &path, &de)) == NAME_NOT_FOUND) {
		retval = -ENOENT;
		goto end_rmdir;
	} else if (retval == IO_ERROR) {
		retval = -EIO;
		goto end_rmdir;
	}

937
	inode = d_inode(dentry);
938 939 940 941 942

	reiserfs_update_inode_transaction(inode);
	reiserfs_update_inode_transaction(dir);

	if (de.de_objectid != inode->i_ino) {
943 944 945
		/*
		 * FIXME: compare key of an object and a key found in the entry
		 */
946 947 948 949 950 951 952 953 954
		retval = -EIO;
		goto end_rmdir;
	}
	if (!reiserfs_empty_dir(inode)) {
		retval = -ENOTEMPTY;
		goto end_rmdir;
	}

	/* cut entry from dir directory */
955 956
	retval = reiserfs_cut_from_item(&th, &path, &de.de_entry_key,
					dir, NULL,	/* page */
957 958 959 960 961
					0 /*new file size - not used here */ );
	if (retval < 0)
		goto end_rmdir;

	if (inode->i_nlink != 2 && inode->i_nlink != 1)
962 963 964
		reiserfs_error(inode->i_sb, "reiserfs-7040",
			       "empty directory has nlink != 2 (%d)",
			       inode->i_nlink);
965

966
	clear_nlink(inode);
967
	inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(dir);
968 969 970
	reiserfs_update_sd(&th, inode);

	DEC_DIR_INODE_NLINK(dir)
971
	dir->i_size -= (DEH_SIZE + de.de_entrylen);
972 973 974 975 976
	reiserfs_update_sd(&th, dir);

	/* prevent empty directory from getting lost */
	add_save_link(&th, inode, 0 /* not truncate */ );

977
	retval = journal_end(&th);
978
	reiserfs_check_path(&path);
979
out_rmdir:
980 981 982
	reiserfs_write_unlock(dir->i_sb);
	return retval;

983
end_rmdir:
984 985 986 987 988
	/*
	 * we must release path, because we did not call
	 * reiserfs_cut_from_item, or reiserfs_cut_from_item does not
	 * release path if operation was not complete
	 */
989
	pathrelse(&path);
990
	err = journal_end(&th);
991 992
	reiserfs_write_unlock(dir->i_sb);
	return err ? err : retval;
Linus Torvalds's avatar
Linus Torvalds committed
993 994
}

995
static int reiserfs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds's avatar
Linus Torvalds committed
996
{
997 998 999 1000 1001 1002 1003 1004
	int retval, err;
	struct inode *inode;
	struct reiserfs_dir_entry de;
	INITIALIZE_PATH(path);
	struct reiserfs_transaction_handle th;
	int jbegin_count;
	unsigned long savelink;

1005 1006 1007
	retval = dquot_initialize(dir);
	if (retval)
		return retval;
1008

1009
	inode = d_inode(dentry);
1010

1011 1012 1013 1014 1015 1016 1017
	/*
	 * in this transaction we can be doing at max two balancings and
	 * update two stat datas, we change quotas of the owner of the
	 * directory and of the owner of the parent directory. The quota
	 * structure is possibly deleted only on iput => outside of
	 * this transaction
	 */
1018 1019 1020 1021
	jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 2 + 2 +
	    4 * REISERFS_QUOTA_TRANS_BLOCKS(dir->i_sb);

1022
	reiserfs_write_lock(dir->i_sb);
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
	retval = journal_begin(&th, dir->i_sb, jbegin_count);
	if (retval)
		goto out_unlink;

	de.de_gen_number_bit_string = NULL;
	if ((retval =
	     reiserfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len,
				 &path, &de)) == NAME_NOT_FOUND) {
		retval = -ENOENT;
		goto end_unlink;
	} else if (retval == IO_ERROR) {
		retval = -EIO;
		goto end_unlink;
	}

	reiserfs_update_inode_transaction(inode);
	reiserfs_update_inode_transaction(dir);

	if (de.de_objectid != inode->i_ino) {
1042 1043 1044
		/*
		 * FIXME: compare key of an object and a key found in the entry
		 */
1045 1046 1047 1048 1049
		retval = -EIO;
		goto end_unlink;
	}

	if (!inode->i_nlink) {
1050 1051 1052
		reiserfs_warning(inode->i_sb, "reiserfs-7042",
				 "deleting nonexistent file (%lu), %d",
				 inode->i_ino, inode->i_nlink);
1053
		set_nlink(inode, 1);
1054 1055
	}

1056
	drop_nlink(inode);
1057 1058 1059 1060 1061 1062 1063 1064

	/*
	 * we schedule before doing the add_save_link call, save the link
	 * count so we don't race
	 */
	savelink = inode->i_nlink;

	retval =
1065
	    reiserfs_cut_from_item(&th, &path, &de.de_entry_key, dir, NULL,
1066 1067
				   0);
	if (retval < 0) {
1068
		inc_nlink(inode);
1069 1070
		goto end_unlink;
	}
1071
	inode->i_ctime = current_time(inode);
1072 1073 1074
	reiserfs_update_sd(&th, inode);

	dir->i_size -= (de.de_entrylen + DEH_SIZE);
1075
	dir->i_ctime = dir->i_mtime = current_time(dir);
1076 1077 1078 1079 1080 1081
	reiserfs_update_sd(&th, dir);

	if (!savelink)
		/* prevent file from getting lost */
		add_save_link(&th, inode, 0 /* not truncate */ );

1082
	retval = journal_end(&th);
1083
	reiserfs_check_path(&path);
1084
	reiserfs_write_unlock(dir->i_sb);
1085 1086
	return retval;

1087
end_unlink:
1088
	pathrelse(&path);
1089
	err = journal_end(&th);
1090
	reiserfs_check_path(&path);
Linus Torvalds's avatar
Linus Torvalds committed
1091
	if (err)
1092
		retval = err;
1093
out_unlink:
1094
	reiserfs_write_unlock(dir->i_sb);
1095
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
1096 1097
}

1098 1099 1100
static int reiserfs_symlink(struct user_namespace *mnt_userns,
			    struct inode *parent_dir, struct dentry *dentry,
			    const char *symname)
Linus Torvalds's avatar
Linus Torvalds committed
1101
{
1102 1103 1104 1105 1106
	int retval;
	struct inode *inode;
	char *name;
	int item_len;
	struct reiserfs_transaction_handle th;
1107
	struct reiserfs_security_handle security;
1108
	int mode = S_IFLNK | S_IRWXUGO;
1109 1110 1111 1112
	/*
	 * We need blocks for transaction + (user+group)*(quotas for
	 * new inode + update of quota for directory owner)
	 */
1113 1114 1115 1116 1117
	int jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 3 +
	    2 * (REISERFS_QUOTA_INIT_BLOCKS(parent_dir->i_sb) +
		 REISERFS_QUOTA_TRANS_BLOCKS(parent_dir->i_sb));

1118 1119 1120
	retval = dquot_initialize(parent_dir);
	if (retval)
		return retval;
1121

1122 1123 1124
	if (!(inode = new_inode(parent_dir->i_sb))) {
		return -ENOMEM;
	}
1125 1126 1127 1128 1129
	retval = new_inode_init(inode, parent_dir, mode);
	if (retval) {
		drop_new_inode(inode);
		return retval;
	}
1130

1131 1132
	retval = reiserfs_security_init(parent_dir, inode, &dentry->d_name,
					&security);
1133 1134 1135 1136 1137 1138
	if (retval < 0) {
		drop_new_inode(inode);
		return retval;
	}
	jbegin_count += retval;

1139 1140 1141 1142 1143 1144 1145 1146
	reiserfs_write_lock(parent_dir->i_sb);
	item_len = ROUND_UP(strlen(symname));
	if (item_len > MAX_DIRECT_ITEM_LEN(parent_dir->i_sb->s_blocksize)) {
		retval = -ENAMETOOLONG;
		drop_new_inode(inode);
		goto out_failed;
	}

1147
	name = kmalloc(item_len, GFP_NOFS);
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
	if (!name) {
		drop_new_inode(inode);
		retval = -ENOMEM;
		goto out_failed;
	}
	memcpy(name, symname, strlen(symname));
	padd_item(name, item_len, strlen(symname));

	retval = journal_begin(&th, parent_dir->i_sb, jbegin_count);
	if (retval) {
		drop_new_inode(inode);
1159
		kfree(name);
1160 1161 1162 1163 1164
		goto out_failed;
	}

	retval =
	    reiserfs_new_inode(&th, parent_dir, mode, name, strlen(symname),
1165
			       dentry, inode, &security);
1166
	kfree(name);
1167 1168 1169
	if (retval) {		/* reiserfs_new_inode iputs for us */
		goto out_failed;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1170

1171 1172 1173 1174
	reiserfs_update_inode_transaction(inode);
	reiserfs_update_inode_transaction(parent_dir);

	inode->i_op = &reiserfs_symlink_inode_operations;
1175
	inode_nohighmem(inode);
1176 1177 1178 1179 1180 1181
	inode->i_mapping->a_ops = &reiserfs_address_space_operations;

	retval = reiserfs_add_entry(&th, parent_dir, dentry->d_name.name,
				    dentry->d_name.len, inode, 1 /*visible */ );
	if (retval) {
		int err;
1182
		drop_nlink(inode);
1183
		reiserfs_update_sd(&th, inode);
1184
		err = journal_end(&th);
1185 1186
		if (err)
			retval = err;
Al Viro's avatar
Al Viro committed
1187
		unlock_new_inode(inode);
1188 1189 1190
		iput(inode);
		goto out_failed;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1191

1192
	d_instantiate_new(dentry, inode);
1193
	retval = journal_end(&th);
1194
out_failed:
1195 1196
	reiserfs_write_unlock(parent_dir->i_sb);
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
1197 1198
}

1199 1200 1201 1202
static int reiserfs_link(struct dentry *old_dentry, struct inode *dir,
			 struct dentry *dentry)
{
	int retval;
1203
	struct inode *inode = d_inode(old_dentry);
1204
	struct reiserfs_transaction_handle th;
1205 1206 1207 1208
	/*
	 * We need blocks for transaction + update of quotas for
	 * the owners of the directory
	 */
1209 1210 1211 1212
	int jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 3 +
	    2 * REISERFS_QUOTA_TRANS_BLOCKS(dir->i_sb);

1213 1214 1215
	retval = dquot_initialize(dir);
	if (retval)
		return retval;
1216

1217 1218
	reiserfs_write_lock(dir->i_sb);
	if (inode->i_nlink >= REISERFS_LINK_MAX) {
1219
		/* FIXME: sd_nlink is 32 bit for new files */
1220 1221 1222 1223 1224
		reiserfs_write_unlock(dir->i_sb);
		return -EMLINK;
	}

	/* inc before scheduling so reiserfs_unlink knows we are here */
1225
	inc_nlink(inode);
1226 1227 1228

	retval = journal_begin(&th, dir->i_sb, jbegin_count);
	if (retval) {
1229
		drop_nlink(inode);
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
		reiserfs_write_unlock(dir->i_sb);
		return retval;
	}

	/* create new entry */
	retval =
	    reiserfs_add_entry(&th, dir, dentry->d_name.name,
			       dentry->d_name.len, inode, 1 /*visible */ );

	reiserfs_update_inode_transaction(inode);
	reiserfs_update_inode_transaction(dir);

	if (retval) {
		int err;
1244
		drop_nlink(inode);
1245
		err = journal_end(&th);
1246 1247 1248 1249
		reiserfs_write_unlock(dir->i_sb);
		return err ? err : retval;
	}

1250
	inode->i_ctime = current_time(inode);
1251 1252
	reiserfs_update_sd(&th, inode);

Al Viro's avatar
Al Viro committed
1253
	ihold(inode);
1254
	d_instantiate(dentry, inode);
1255
	retval = journal_end(&th);
1256 1257 1258
	reiserfs_write_unlock(dir->i_sb);
	return retval;
}
Linus Torvalds's avatar
Linus Torvalds committed
1259

1260
/* de contains information pointing to an entry which */
1261 1262
static int de_still_valid(const char *name, int len,
			  struct reiserfs_dir_entry *de)
Linus Torvalds's avatar
Linus Torvalds committed
1263
{
1264 1265
	struct reiserfs_dir_entry tmp = *de;

1266
	/* recalculate pointer to name and name length */
1267
	set_de_name_and_namelen(&tmp);
1268
	/* FIXME: could check more */
1269 1270 1271
	if (tmp.de_namelen != len || memcmp(name, de->de_name, len))
		return 0;
	return 1;
Linus Torvalds's avatar
Linus Torvalds committed
1272 1273
}

1274 1275 1276
static int entry_points_to_object(const char *name, int len,
				  struct reiserfs_dir_entry *de,
				  struct inode *inode)
Linus Torvalds's avatar
Linus Torvalds committed
1277
{
1278 1279 1280 1281 1282
	if (!de_still_valid(name, len, de))
		return 0;

	if (inode) {
		if (!de_visible(de->de_deh + de->de_entry_num))
1283 1284
			reiserfs_panic(inode->i_sb, "vs-7042",
				       "entry must be visible");
1285 1286
		return (de->de_objectid == inode->i_ino) ? 1 : 0;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1287

1288 1289
	/* this must be added hidden entry */
	if (de_visible(de->de_deh + de->de_entry_num))
1290
		reiserfs_panic(NULL, "vs-7043", "entry must be visible");
Linus Torvalds's avatar
Linus Torvalds committed
1291

1292
	return 1;
Linus Torvalds's avatar
Linus Torvalds committed
1293 1294 1295
}

/* sets key of objectid the entry has to point to */
1296 1297
static void set_ino_in_dir_entry(struct reiserfs_dir_entry *de,
				 struct reiserfs_key *key)
Linus Torvalds's avatar
Linus Torvalds committed
1298
{
1299 1300 1301
	/* JDM These operations are endian safe - both are le */
	de->de_deh[de->de_entry_num].deh_dir_id = key->k_dir_id;
	de->de_deh[de->de_entry_num].deh_objectid = key->k_objectid;
Linus Torvalds's avatar
Linus Torvalds committed
1302 1303
}

1304
/*
Linus Torvalds's avatar
Linus Torvalds committed
1305 1306
 * process, that is going to call fix_nodes/do_balance must hold only
 * one path. If it holds 2 or more, it can get into endless waiting in
1307
 * get_empty_nodes or its clones
Linus Torvalds's avatar
Linus Torvalds committed
1308
 */
1309 1310
static int reiserfs_rename(struct user_namespace *mnt_userns,
			   struct inode *old_dir, struct dentry *old_dentry,
1311 1312
			   struct inode *new_dir, struct dentry *new_dentry,
			   unsigned int flags)
Linus Torvalds's avatar
Linus Torvalds committed
1313
{
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
	int retval;
	INITIALIZE_PATH(old_entry_path);
	INITIALIZE_PATH(new_entry_path);
	INITIALIZE_PATH(dot_dot_entry_path);
	struct item_head new_entry_ih, old_entry_ih, dot_dot_ih;
	struct reiserfs_dir_entry old_de, new_de, dot_dot_de;
	struct inode *old_inode, *new_dentry_inode;
	struct reiserfs_transaction_handle th;
	int jbegin_count;
	umode_t old_inode_mode;
	unsigned long savelink = 1;
1325
	struct timespec64 ctime;
1326

1327 1328 1329
	if (flags & ~RENAME_NOREPLACE)
		return -EINVAL;

1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
	/*
	 * three balancings: (1) old name removal, (2) new name insertion
	 * and (3) maybe "save" link insertion
	 * stat data updates: (1) old directory,
	 * (2) new directory and (3) maybe old object stat data (when it is
	 * directory) and (4) maybe stat data of object to which new entry
	 * pointed initially and (5) maybe block containing ".." of
	 * renamed directory
	 * quota updates: two parent directories
	 */
1340 1341 1342 1343
	jbegin_count =
	    JOURNAL_PER_BALANCE_CNT * 3 + 5 +
	    4 * REISERFS_QUOTA_TRANS_BLOCKS(old_dir->i_sb);

1344 1345 1346 1347 1348 1349
	retval = dquot_initialize(old_dir);
	if (retval)
		return retval;
	retval = dquot_initialize(new_dir);
	if (retval)
		return retval;
1350

1351 1352
	old_inode = d_inode(old_dentry);
	new_dentry_inode = d_inode(new_dentry);
1353

1354 1355 1356 1357
	/*
	 * make sure that oldname still exists and points to an object we
	 * are going to rename
	 */
1358 1359 1360 1361 1362 1363 1364 1365
	old_de.de_gen_number_bit_string = NULL;
	reiserfs_write_lock(old_dir->i_sb);
	retval =
	    reiserfs_find_entry(old_dir, old_dentry->d_name.name,
				old_dentry->d_name.len, &old_entry_path,
				&old_de);
	pathrelse(&old_entry_path);
	if (retval == IO_ERROR) {
Linus Torvalds's avatar
Linus Torvalds committed
1366
		reiserfs_write_unlock(old_dir->i_sb);
1367
		return -EIO;
Linus Torvalds's avatar
Linus Torvalds committed
1368
	}
1369 1370 1371 1372

	if (retval != NAME_FOUND || old_de.de_objectid != old_inode->i_ino) {
		reiserfs_write_unlock(old_dir->i_sb);
		return -ENOENT;
Linus Torvalds's avatar
Linus Torvalds committed
1373 1374
	}

1375 1376
	old_inode_mode = old_inode->i_mode;
	if (S_ISDIR(old_inode_mode)) {
1377 1378 1379 1380 1381
		/*
		 * make sure that directory being renamed has correct ".."
		 * and that its new parent directory has not too many links
		 * already
		 */
1382 1383 1384 1385 1386 1387 1388
		if (new_dentry_inode) {
			if (!reiserfs_empty_dir(new_dentry_inode)) {
				reiserfs_write_unlock(old_dir->i_sb);
				return -ENOTEMPTY;
			}
		}

1389 1390 1391
		/*
		 * directory is renamed, its parent directory will be changed,
		 * so find ".." entry
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
		 */
		dot_dot_de.de_gen_number_bit_string = NULL;
		retval =
		    reiserfs_find_entry(old_inode, "..", 2, &dot_dot_entry_path,
					&dot_dot_de);
		pathrelse(&dot_dot_entry_path);
		if (retval != NAME_FOUND) {
			reiserfs_write_unlock(old_dir->i_sb);
			return -EIO;
		}

		/* inode number of .. must equal old_dir->i_ino */
		if (dot_dot_de.de_objectid != old_dir->i_ino) {
			reiserfs_write_unlock(old_dir->i_sb);
			return -EIO;
		}
Linus Torvalds's avatar
Linus Torvalds committed
1408
	}
1409 1410 1411 1412 1413

	retval = journal_begin(&th, old_dir->i_sb, jbegin_count);
	if (retval) {
		reiserfs_write_unlock(old_dir->i_sb);
		return retval;
Linus Torvalds's avatar
Linus Torvalds committed
1414
	}
1415 1416 1417 1418 1419 1420 1421

	/* add new entry (or find the existing one) */
	retval =
	    reiserfs_add_entry(&th, new_dir, new_dentry->d_name.name,
			       new_dentry->d_name.len, old_inode, 0);
	if (retval == -EEXIST) {
		if (!new_dentry_inode) {
1422 1423
			reiserfs_panic(old_dir->i_sb, "vs-7050",
				       "new entry is found, new inode == 0");
1424 1425
		}
	} else if (retval) {
1426
		int err = journal_end(&th);
1427 1428
		reiserfs_write_unlock(old_dir->i_sb);
		return err ? err : retval;
Linus Torvalds's avatar
Linus Torvalds committed
1429 1430
	}

1431 1432 1433
	reiserfs_update_inode_transaction(old_dir);
	reiserfs_update_inode_transaction(new_dir);

1434 1435 1436
	/*
	 * this makes it so an fsync on an open fd for the old name will
	 * commit the rename operation
1437 1438 1439 1440 1441 1442 1443
	 */
	reiserfs_update_inode_transaction(old_inode);

	if (new_dentry_inode)
		reiserfs_update_inode_transaction(new_dentry_inode);

	while (1) {
1444 1445 1446 1447
		/*
		 * look for old name using corresponding entry key
		 * (found by reiserfs_find_entry)
		 */
1448 1449 1450 1451 1452
		if ((retval =
		     search_by_entry_key(new_dir->i_sb, &old_de.de_entry_key,
					 &old_entry_path,
					 &old_de)) != NAME_FOUND) {
			pathrelse(&old_entry_path);
1453
			journal_end(&th);
1454 1455 1456 1457
			reiserfs_write_unlock(old_dir->i_sb);
			return -EIO;
		}

1458
		copy_item_head(&old_entry_ih, tp_item_head(&old_entry_path));
1459 1460 1461

		reiserfs_prepare_for_journal(old_inode->i_sb, old_de.de_bh, 1);

1462
		/* look for new name by reiserfs_find_entry */
1463 1464 1465 1466 1467
		new_de.de_gen_number_bit_string = NULL;
		retval =
		    reiserfs_find_entry(new_dir, new_dentry->d_name.name,
					new_dentry->d_name.len, &new_entry_path,
					&new_de);
1468 1469 1470 1471 1472 1473
		/*
		 * reiserfs_add_entry should not return IO_ERROR,
		 * because it is called with essentially same parameters from
		 * reiserfs_add_entry above, and we'll catch any i/o errors
		 * before we get here.
		 */
1474 1475 1476
		if (retval != NAME_FOUND_INVISIBLE && retval != NAME_FOUND) {
			pathrelse(&new_entry_path);
			pathrelse(&old_entry_path);
1477
			journal_end(&th);
1478 1479 1480 1481
			reiserfs_write_unlock(old_dir->i_sb);
			return -EIO;
		}

1482
		copy_item_head(&new_entry_ih, tp_item_head(&new_entry_path));
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494

		reiserfs_prepare_for_journal(old_inode->i_sb, new_de.de_bh, 1);

		if (S_ISDIR(old_inode->i_mode)) {
			if ((retval =
			     search_by_entry_key(new_dir->i_sb,
						 &dot_dot_de.de_entry_key,
						 &dot_dot_entry_path,
						 &dot_dot_de)) != NAME_FOUND) {
				pathrelse(&dot_dot_entry_path);
				pathrelse(&new_entry_path);
				pathrelse(&old_entry_path);
1495
				journal_end(&th);
1496 1497 1498 1499
				reiserfs_write_unlock(old_dir->i_sb);
				return -EIO;
			}
			copy_item_head(&dot_dot_ih,
1500
				       tp_item_head(&dot_dot_entry_path));
1501
			/* node containing ".." gets into transaction */
1502 1503 1504
			reiserfs_prepare_for_journal(old_inode->i_sb,
						     dot_dot_de.de_bh, 1);
		}
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
		/*
		 * we should check seals here, not do
		 * this stuff, yes? Then, having
		 * gathered everything into RAM we
		 * should lock the buffers, yes?  -Hans
		 */
		/*
		 * probably.  our rename needs to hold more
		 * than one path at once.  The seals would
		 * have to be written to deal with multi-path
		 * issues -chris
1516
		 */
1517 1518 1519 1520
		/*
		 * sanity checking before doing the rename - avoid races many
		 * of the above checks could have scheduled.  We have to be
		 * sure our items haven't been shifted by another process.
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
		 */
		if (item_moved(&new_entry_ih, &new_entry_path) ||
		    !entry_points_to_object(new_dentry->d_name.name,
					    new_dentry->d_name.len,
					    &new_de, new_dentry_inode) ||
		    item_moved(&old_entry_ih, &old_entry_path) ||
		    !entry_points_to_object(old_dentry->d_name.name,
					    old_dentry->d_name.len,
					    &old_de, old_inode)) {
			reiserfs_restore_prepared_buffer(old_inode->i_sb,
							 new_de.de_bh);
			reiserfs_restore_prepared_buffer(old_inode->i_sb,
							 old_de.de_bh);
			if (S_ISDIR(old_inode_mode))
				reiserfs_restore_prepared_buffer(old_inode->
								 i_sb,
								 dot_dot_de.
								 de_bh);
			continue;
		}
		if (S_ISDIR(old_inode_mode)) {
			if (item_moved(&dot_dot_ih, &dot_dot_entry_path) ||
			    !entry_points_to_object("..", 2, &dot_dot_de,
						    old_dir)) {
				reiserfs_restore_prepared_buffer(old_inode->
								 i_sb,
								 old_de.de_bh);
				reiserfs_restore_prepared_buffer(old_inode->
								 i_sb,
								 new_de.de_bh);
				reiserfs_restore_prepared_buffer(old_inode->
								 i_sb,
								 dot_dot_de.
								 de_bh);
				continue;
			}
		}

		RFALSE(S_ISDIR(old_inode_mode) &&
		       !buffer_journal_prepared(dot_dot_de.de_bh), "");

		break;
Linus Torvalds's avatar
Linus Torvalds committed
1563 1564
	}

1565 1566 1567 1568
	/*
	 * ok, all the changes can be done in one fell swoop when we
	 * have claimed all the buffers needed.
	 */
Linus Torvalds's avatar
Linus Torvalds committed
1569

1570 1571
	mark_de_visible(new_de.de_deh + new_de.de_entry_num);
	set_ino_in_dir_entry(&new_de, INODE_PKEY(old_inode));
1572
	journal_mark_dirty(&th, new_de.de_bh);
Linus Torvalds's avatar
Linus Torvalds committed
1573

1574
	mark_de_hidden(old_de.de_deh + old_de.de_entry_num);
1575
	journal_mark_dirty(&th, old_de.de_bh);
1576
	ctime = current_time(old_dir);
1577 1578
	old_dir->i_ctime = old_dir->i_mtime = ctime;
	new_dir->i_ctime = new_dir->i_mtime = ctime;
1579 1580 1581 1582
	/*
	 * thanks to Alex Adriaanse <alex_a@caltech.edu> for patch
	 * which adds ctime update of renamed object
	 */
1583 1584 1585
	old_inode->i_ctime = ctime;

	if (new_dentry_inode) {
1586
		/* adjust link number of the victim */
1587
		if (S_ISDIR(new_dentry_inode->i_mode)) {
1588
			clear_nlink(new_dentry_inode);
1589
		} else {
1590
			drop_nlink(new_dentry_inode);
1591 1592 1593
		}
		new_dentry_inode->i_ctime = ctime;
		savelink = new_dentry_inode->i_nlink;
Linus Torvalds's avatar
Linus Torvalds committed
1594
	}
1595

Linus Torvalds's avatar
Linus Torvalds committed
1596
	if (S_ISDIR(old_inode_mode)) {
1597
		/* adjust ".." of renamed directory */
1598
		set_ino_in_dir_entry(&dot_dot_de, INODE_PKEY(new_dir));
1599
		journal_mark_dirty(&th, dot_dot_de.de_bh);
1600

1601 1602 1603 1604
		/*
		 * there (in new_dir) was no directory, so it got new link
		 * (".."  of renamed directory)
		 */
1605 1606 1607 1608 1609
		if (!new_dentry_inode)
			INC_DIR_INODE_NLINK(new_dir);

		/* old directory lost one link - ".. " of renamed directory */
		DEC_DIR_INODE_NLINK(old_dir);
Linus Torvalds's avatar
Linus Torvalds committed
1610
	}
1611 1612 1613 1614
	/*
	 * looks like in 2.3.99pre3 brelse is atomic.
	 * so we can use pathrelse
	 */
1615 1616
	pathrelse(&new_entry_path);
	pathrelse(&dot_dot_entry_path);
Linus Torvalds's avatar
Linus Torvalds committed
1617

1618 1619 1620 1621 1622
	/*
	 * FIXME: this reiserfs_cut_from_item's return value may screw up
	 * anybody, but it will panic if will not be able to find the
	 * entry. This needs one more clean up
	 */
1623
	if (reiserfs_cut_from_item
1624
	    (&th, &old_entry_path, &old_de.de_entry_key, old_dir, NULL,
1625
	     0) < 0)
1626 1627
		reiserfs_error(old_dir->i_sb, "vs-7060",
			       "couldn't not cut old name. Fsck later?");
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639

	old_dir->i_size -= DEH_SIZE + old_de.de_entrylen;

	reiserfs_update_sd(&th, old_dir);
	reiserfs_update_sd(&th, new_dir);
	reiserfs_update_sd(&th, old_inode);

	if (new_dentry_inode) {
		if (savelink == 0)
			add_save_link(&th, new_dentry_inode,
				      0 /* not truncate */ );
		reiserfs_update_sd(&th, new_dentry_inode);
Linus Torvalds's avatar
Linus Torvalds committed
1640
	}
1641

1642
	retval = journal_end(&th);
1643 1644
	reiserfs_write_unlock(old_dir->i_sb);
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
1645 1646
}

1647
/* directories can handle most operations...  */
1648
const struct inode_operations reiserfs_dir_inode_operations = {
1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
	.create = reiserfs_create,
	.lookup = reiserfs_lookup,
	.link = reiserfs_link,
	.unlink = reiserfs_unlink,
	.symlink = reiserfs_symlink,
	.mkdir = reiserfs_mkdir,
	.rmdir = reiserfs_rmdir,
	.mknod = reiserfs_mknod,
	.rename = reiserfs_rename,
	.setattr = reiserfs_setattr,
	.listxattr = reiserfs_listxattr,
	.permission = reiserfs_permission,
1661
	.get_acl = reiserfs_get_acl,
1662
	.set_acl = reiserfs_set_acl,
1663 1664
	.fileattr_get = reiserfs_fileattr_get,
	.fileattr_set = reiserfs_fileattr_set,
Linus Torvalds's avatar
Linus Torvalds committed
1665 1666 1667 1668 1669 1670
};

/*
 * symlink operations.. same as page_symlink_inode_operations, with xattr
 * stuff added
 */
1671
const struct inode_operations reiserfs_symlink_inode_operations = {
1672
	.get_link	= page_get_link,
1673 1674 1675
	.setattr = reiserfs_setattr,
	.listxattr = reiserfs_listxattr,
	.permission = reiserfs_permission,
Linus Torvalds's avatar
Linus Torvalds committed
1676 1677 1678 1679 1680
};

/*
 * special file operations.. just xattr/acl stuff
 */
1681
const struct inode_operations reiserfs_special_inode_operations = {
1682 1683 1684
	.setattr = reiserfs_setattr,
	.listxattr = reiserfs_listxattr,
	.permission = reiserfs_permission,
1685
	.get_acl = reiserfs_get_acl,
1686
	.set_acl = reiserfs_set_acl,
Linus Torvalds's avatar
Linus Torvalds committed
1687
};