namei.c 32.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * namei.c
 *
 * PURPOSE
 *      Inode name handling routines for the OSTA-UDF(tm) filesystem.
 *
 * COPYRIGHT
 *      This file is distributed under the terms of the GNU General Public
 *      License (GPL). Copies of the GPL can be obtained from:
 *              ftp://prep.ai.mit.edu/pub/gnu/GPL
 *      Each contributing author retains all rights to their own work.
 *
 *  (C) 1998-2004 Ben Fennema
 *  (C) 1999-2000 Stelias Computing Inc
 *
 * HISTORY
 *
 *  12/12/98 blf  Created. Split out the lookup code from dir.c
 *  04/19/99 blf  link, mknod, symlink support
 */

#include "udfdecl.h"

#include "udf_i.h"
#include "udf_sb.h"
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/quotaops.h>
#include <linux/smp_lock.h>
#include <linux/buffer_head.h>
A
Alexey Dobriyan 已提交
33
#include <linux/sched.h>
L
Linus Torvalds 已提交
34

35 36
static inline int udf_match(int len1, const char *name1, int len2,
			    const char *name2)
L
Linus Torvalds 已提交
37 38 39
{
	if (len1 != len2)
		return 0;
40

L
Linus Torvalds 已提交
41 42 43 44
	return !memcmp(name1, name2, len1);
}

int udf_write_fi(struct inode *inode, struct fileIdentDesc *cfi,
45
		 struct fileIdentDesc *sfi, struct udf_fileident_bh *fibh,
M
Marcin Slusarz 已提交
46
		 uint8_t *impuse, uint8_t *fileident)
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55
{
	uint16_t crclen = fibh->eoffset - fibh->soffset - sizeof(tag);
	uint16_t crc;
	uint8_t checksum = 0;
	int i;
	int offset;
	uint16_t liu = le16_to_cpu(cfi->lengthOfImpUse);
	uint8_t lfi = cfi->lengthFileIdent;
	int padlen = fibh->eoffset - fibh->soffset - liu - lfi -
56
		sizeof(struct fileIdentDesc);
L
Linus Torvalds 已提交
57 58 59 60 61 62 63
	int adinicb = 0;

	if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB)
		adinicb = 1;

	offset = fibh->soffset + sizeof(struct fileIdentDesc);

64
	if (impuse) {
65 66 67
		if (adinicb || (offset + liu < 0)) {
			memcpy((uint8_t *)sfi->impUse, impuse, liu);
		} else if (offset >= 0) {
L
Linus Torvalds 已提交
68
			memcpy(fibh->ebh->b_data + offset, impuse, liu);
69 70
		} else {
			memcpy((uint8_t *)sfi->impUse, impuse, -offset);
M
Marcin Slusarz 已提交
71 72
			memcpy(fibh->ebh->b_data, impuse - offset,
				liu + offset);
L
Linus Torvalds 已提交
73 74 75 76 77
		}
	}

	offset += liu;

78
	if (fileident) {
79 80 81
		if (adinicb || (offset + lfi < 0)) {
			memcpy((uint8_t *)sfi->fileIdent + liu, fileident, lfi);
		} else if (offset >= 0) {
L
Linus Torvalds 已提交
82
			memcpy(fibh->ebh->b_data + offset, fileident, lfi);
83
		} else {
M
Marcin Slusarz 已提交
84 85 86 87
			memcpy((uint8_t *)sfi->fileIdent + liu, fileident,
				-offset);
			memcpy(fibh->ebh->b_data, fileident - offset,
				lfi + offset);
L
Linus Torvalds 已提交
88 89 90 91 92
		}
	}

	offset += lfi;

93 94 95
	if (adinicb || (offset + padlen < 0)) {
		memset((uint8_t *)sfi->padding + liu + lfi, 0x00, padlen);
	} else if (offset >= 0) {
L
Linus Torvalds 已提交
96
		memset(fibh->ebh->b_data + offset, 0x00, padlen);
97 98
	} else {
		memset((uint8_t *)sfi->padding + liu + lfi, 0x00, -offset);
L
Linus Torvalds 已提交
99 100 101
		memset(fibh->ebh->b_data, 0x00, padlen + offset);
	}

102 103 104 105 106
	crc = udf_crc((uint8_t *)cfi + sizeof(tag),
		      sizeof(struct fileIdentDesc) - sizeof(tag), 0);

	if (fibh->sbh == fibh->ebh) {
		crc = udf_crc((uint8_t *)sfi->impUse,
M
Marcin Slusarz 已提交
107 108
			      crclen + sizeof(tag) -
			      sizeof(struct fileIdentDesc), crc);
109
	} else if (sizeof(struct fileIdentDesc) >= -fibh->soffset) {
M
Marcin Slusarz 已提交
110 111 112 113 114 115
		crc = udf_crc(fibh->ebh->b_data +
					sizeof(struct fileIdentDesc) +
					fibh->soffset,
			      crclen + sizeof(tag) -
					sizeof(struct fileIdentDesc),
			      crc);
116 117
	} else {
		crc = udf_crc((uint8_t *)sfi->impUse,
M
Marcin Slusarz 已提交
118 119
			      -fibh->soffset - sizeof(struct fileIdentDesc),
			      crc);
L
Linus Torvalds 已提交
120 121 122 123 124 125
		crc = udf_crc(fibh->ebh->b_data, fibh->eoffset, crc);
	}

	cfi->descTag.descCRC = cpu_to_le16(crc);
	cfi->descTag.descCRCLength = cpu_to_le16(crclen);

126
	for (i = 0; i < 16; i++) {
L
Linus Torvalds 已提交
127
		if (i != 4)
128 129
			checksum += ((uint8_t *)&cfi->descTag)[i];
	}
L
Linus Torvalds 已提交
130 131

	cfi->descTag.tagChecksum = checksum;
132
	if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) {
M
Marcin Slusarz 已提交
133 134
		memcpy((uint8_t *)sfi, (uint8_t *)cfi,
			sizeof(struct fileIdentDesc));
135 136 137
	} else {
		memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset);
		memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset,
138
		       sizeof(struct fileIdentDesc) + fibh->soffset);
L
Linus Torvalds 已提交
139 140
	}

141
	if (adinicb) {
L
Linus Torvalds 已提交
142
		mark_inode_dirty(inode);
143
	} else {
L
Linus Torvalds 已提交
144 145 146 147 148 149 150
		if (fibh->sbh != fibh->ebh)
			mark_buffer_dirty_inode(fibh->ebh, inode);
		mark_buffer_dirty_inode(fibh->sbh, inode);
	}
	return 0;
}

151 152 153 154
static struct fileIdentDesc *udf_find_entry(struct inode *dir,
					    struct dentry *dentry,
					    struct udf_fileident_bh *fibh,
					    struct fileIdentDesc *cfi)
L
Linus Torvalds 已提交
155
{
156
	struct fileIdentDesc *fi = NULL;
L
Linus Torvalds 已提交
157 158 159 160 161 162
	loff_t f_pos;
	int block, flen;
	char fname[UDF_NAME_LEN];
	char *nameptr;
	uint8_t lfi;
	uint16_t liu;
163
	loff_t size;
J
Jan Kara 已提交
164 165
	kernel_lb_addr eloc;
	uint32_t elen;
166
	sector_t offset;
167
	struct extent_position epos = {};
L
Linus Torvalds 已提交
168

169
	size = (udf_ext0_offset(dir) + dir->i_size) >> 2;
L
Linus Torvalds 已提交
170 171
	f_pos = (udf_ext0_offset(dir) >> 2);

M
Marcin Slusarz 已提交
172 173 174
	fibh->soffset = fibh->eoffset =
		(f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
175
		fibh->sbh = fibh->ebh = NULL;
M
Marcin Slusarz 已提交
176 177 178
	else if (inode_bmap(dir, f_pos >> (dir->i_sb->s_blocksize_bits - 2),
			      &epos, &eloc, &elen, &offset) ==
					(EXT_RECORDED_ALLOCATED >> 30)) {
L
Linus Torvalds 已提交
179
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
180
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
L
Linus Torvalds 已提交
181
			if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
182
				epos.offset -= sizeof(short_ad);
L
Linus Torvalds 已提交
183
			else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
184
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
185
		} else
L
Linus Torvalds 已提交
186 187
			offset = 0;

M
Marcin Slusarz 已提交
188 189
		fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
		if (!fibh->sbh) {
J
Jan Kara 已提交
190
			brelse(epos.bh);
L
Linus Torvalds 已提交
191 192
			return NULL;
		}
193
	} else {
J
Jan Kara 已提交
194
		brelse(epos.bh);
L
Linus Torvalds 已提交
195 196 197
		return NULL;
	}

198 199 200 201
	while ((f_pos < size)) {
		fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
					&elen, &offset);
		if (!fi) {
L
Linus Torvalds 已提交
202
			if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
203 204 205
				brelse(fibh->ebh);
			brelse(fibh->sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
206 207 208 209 210 211
			return NULL;
		}

		liu = le16_to_cpu(cfi->lengthOfImpUse);
		lfi = cfi->lengthFileIdent;

212
		if (fibh->sbh == fibh->ebh) {
L
Linus Torvalds 已提交
213
			nameptr = fi->fileIdent + liu;
214
		} else {
L
Linus Torvalds 已提交
215 216
			int poffset;	/* Unpaded ending offset */

M
Marcin Slusarz 已提交
217 218
			poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
					liu + lfi;
L
Linus Torvalds 已提交
219

M
Marcin Slusarz 已提交
220 221 222 223
			if (poffset >= lfi)
				nameptr = (uint8_t *)(fibh->ebh->b_data +
						      poffset - lfi);
			else {
L
Linus Torvalds 已提交
224
				nameptr = fname;
M
Marcin Slusarz 已提交
225 226 227 228
				memcpy(nameptr, fi->fileIdent + liu,
					lfi - poffset);
				memcpy(nameptr + lfi - poffset,
					fibh->ebh->b_data, poffset);
L
Linus Torvalds 已提交
229 230 231
			}
		}

232 233
		if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
			if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
L
Linus Torvalds 已提交
234 235
				continue;
		}
236 237 238

		if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
			if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE))
L
Linus Torvalds 已提交
239 240 241 242 243 244
				continue;
		}

		if (!lfi)
			continue;

M
Marcin Slusarz 已提交
245 246 247 248 249
		flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
		if (flen && udf_match(flen, fname, dentry->d_name.len,
				      dentry->d_name.name)) {
			brelse(epos.bh);
			return fi;
L
Linus Torvalds 已提交
250 251
		}
	}
252

L
Linus Torvalds 已提交
253
	if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
254 255 256
		brelse(fibh->ebh);
	brelse(fibh->sbh);
	brelse(epos.bh);
257

L
Linus Torvalds 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
	return NULL;
}

/*
 * udf_lookup
 *
 * PURPOSE
 *	Look-up the inode for a given name.
 *
 * DESCRIPTION
 *	Required - lookup_dentry() will return -ENOTDIR if this routine is not
 *	available for a directory. The filesystem is useless if this routine is
 *	not available for at least the filesystem's root directory.
 *
 *	This routine is passed an incomplete dentry - it must be completed by
 *	calling d_add(dentry, inode). If the name does not exist, then the
 *	specified inode must be set to null. An error should only be returned
 *	when the lookup fails for a reason other than the name not existing.
 *	Note that the directory inode semaphore is held during the call.
 *
 *	Refer to lookup_dentry() in fs/namei.c
 *	lookup_dentry() -> lookup() -> real_lookup() -> .
 *
 * PRE-CONDITIONS
 *	dir			Pointer to inode of parent directory.
 *	dentry			Pointer to dentry to complete.
 *	nd			Pointer to lookup nameidata
 *
 * POST-CONDITIONS
 *	<return>		Zero on success.
 *
 * HISTORY
 *	July 1, 1997 - Andrew E. Mileski
 *	Written, tested, and released.
 */

294 295
static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
				 struct nameidata *nd)
L
Linus Torvalds 已提交
296 297
{
	struct inode *inode = NULL;
298
	struct fileIdentDesc cfi;
L
Linus Torvalds 已提交
299 300
	struct udf_fileident_bh fibh;

301
	if (dentry->d_name.len > UDF_NAME_LEN - 2)
L
Linus Torvalds 已提交
302 303 304 305 306
		return ERR_PTR(-ENAMETOOLONG);

	lock_kernel();
#ifdef UDF_RECOVERY
	/* temporary shorthand for specifying files by inode number */
307
	if (!strncmp(dentry->d_name.name, ".B=", 3)) {
308 309
		kernel_lb_addr lb = {
			.logicalBlockNum = 0,
M
Marcin Slusarz 已提交
310 311 312
			.partitionReferenceNum =
				simple_strtoul(dentry->d_name.name + 3,
						NULL, 0),
313
		};
L
Linus Torvalds 已提交
314
		inode = udf_iget(dir->i_sb, lb);
315
		if (!inode) {
L
Linus Torvalds 已提交
316 317 318
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
M
Marcin Slusarz 已提交
319
	} else
320
#endif /* UDF_RECOVERY */
L
Linus Torvalds 已提交
321

322
	if (udf_find_entry(dir, dentry, &fibh, &cfi)) {
L
Linus Torvalds 已提交
323
		if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
324 325
			brelse(fibh.ebh);
		brelse(fibh.sbh);
L
Linus Torvalds 已提交
326 327

		inode = udf_iget(dir->i_sb, lelb_to_cpu(cfi.icb.extLocation));
328
		if (!inode) {
L
Linus Torvalds 已提交
329 330 331 332 333 334
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
	}
	unlock_kernel();
	d_add(dentry, inode);
335

L
Linus Torvalds 已提交
336 337 338
	return NULL;
}

339 340 341 342
static struct fileIdentDesc *udf_add_entry(struct inode *dir,
					   struct dentry *dentry,
					   struct udf_fileident_bh *fibh,
					   struct fileIdentDesc *cfi, int *err)
L
Linus Torvalds 已提交
343
{
M
Marcin Slusarz 已提交
344
	struct super_block *sb = dir->i_sb;
345
	struct fileIdentDesc *fi = NULL;
L
Linus Torvalds 已提交
346 347 348 349 350 351 352 353 354 355
	char name[UDF_NAME_LEN], fname[UDF_NAME_LEN];
	int namelen;
	loff_t f_pos;
	int flen;
	char *nameptr;
	loff_t size = (udf_ext0_offset(dir) + dir->i_size) >> 2;
	int nfidlen;
	uint8_t lfi;
	uint16_t liu;
	int block;
J
Jan Kara 已提交
356 357
	kernel_lb_addr eloc;
	uint32_t elen;
358
	sector_t offset;
359
	struct extent_position epos = {};
L
Linus Torvalds 已提交
360

361 362
	if (dentry) {
		if (!dentry->d_name.len) {
L
Linus Torvalds 已提交
363 364 365
			*err = -EINVAL;
			return NULL;
		}
M
Marcin Slusarz 已提交
366 367 368
		namelen = udf_put_filename(sb, dentry->d_name.name, name,
						 dentry->d_name.len);
		if (!namelen) {
L
Linus Torvalds 已提交
369 370 371
			*err = -ENAMETOOLONG;
			return NULL;
		}
372
	} else {
L
Linus Torvalds 已提交
373
		namelen = 0;
374
	}
L
Linus Torvalds 已提交
375 376 377 378 379

	nfidlen = (sizeof(struct fileIdentDesc) + namelen + 3) & ~3;

	f_pos = (udf_ext0_offset(dir) >> 2);

M
Marcin Slusarz 已提交
380 381 382
	fibh->soffset = fibh->eoffset =
			(f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
383
		fibh->sbh = fibh->ebh = NULL;
M
Marcin Slusarz 已提交
384 385 386
	else if (inode_bmap(dir, f_pos >> (dir->i_sb->s_blocksize_bits - 2),
			      &epos, &eloc, &elen, &offset) ==
					(EXT_RECORDED_ALLOCATED >> 30)) {
L
Linus Torvalds 已提交
387
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
388
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
L
Linus Torvalds 已提交
389
			if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
390
				epos.offset -= sizeof(short_ad);
L
Linus Torvalds 已提交
391
			else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
392
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
393
		} else
L
Linus Torvalds 已提交
394 395
			offset = 0;

M
Marcin Slusarz 已提交
396 397
		fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
		if (!fibh->sbh) {
J
Jan Kara 已提交
398
			brelse(epos.bh);
L
Linus Torvalds 已提交
399 400 401 402 403 404
			*err = -EIO;
			return NULL;
		}

		block = UDF_I_LOCATION(dir).logicalBlockNum;

405
	} else {
L
Linus Torvalds 已提交
406 407 408 409 410 411
		block = udf_get_lb_pblock(dir->i_sb, UDF_I_LOCATION(dir), 0);
		fibh->sbh = fibh->ebh = NULL;
		fibh->soffset = fibh->eoffset = sb->s_blocksize;
		goto add;
	}

412 413 414
	while ((f_pos < size)) {
		fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
					&elen, &offset);
L
Linus Torvalds 已提交
415

416
		if (!fi) {
L
Linus Torvalds 已提交
417
			if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
418 419 420
				brelse(fibh->ebh);
			brelse(fibh->sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
421 422 423 424 425 426 427
			*err = -EIO;
			return NULL;
		}

		liu = le16_to_cpu(cfi->lengthOfImpUse);
		lfi = cfi->lengthFileIdent;

M
Marcin Slusarz 已提交
428
		if (fibh->sbh == fibh->ebh)
L
Linus Torvalds 已提交
429
			nameptr = fi->fileIdent + liu;
M
Marcin Slusarz 已提交
430
		else {
L
Linus Torvalds 已提交
431 432
			int poffset;	/* Unpaded ending offset */

M
Marcin Slusarz 已提交
433 434
			poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
					liu + lfi;
L
Linus Torvalds 已提交
435

M
Marcin Slusarz 已提交
436 437 438 439
			if (poffset >= lfi)
				nameptr = (char *)(fibh->ebh->b_data +
						   poffset - lfi);
			else {
L
Linus Torvalds 已提交
440
				nameptr = fname;
M
Marcin Slusarz 已提交
441 442 443 444
				memcpy(nameptr, fi->fileIdent + liu,
					lfi - poffset);
				memcpy(nameptr + lfi - poffset,
					fibh->ebh->b_data, poffset);
L
Linus Torvalds 已提交
445 446 447
			}
		}

448
		if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
M
Marcin Slusarz 已提交
449 450
			if (((sizeof(struct fileIdentDesc) +
					liu + lfi + 3) & ~3) == nfidlen) {
J
Jan Kara 已提交
451
				brelse(epos.bh);
L
Linus Torvalds 已提交
452 453 454 455 456
				cfi->descTag.tagSerialNum = cpu_to_le16(1);
				cfi->fileVersionNum = cpu_to_le16(1);
				cfi->fileCharacteristics = 0;
				cfi->lengthFileIdent = namelen;
				cfi->lengthOfImpUse = cpu_to_le16(0);
M
Marcin Slusarz 已提交
457 458
				if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
						  name))
L
Linus Torvalds 已提交
459
					return fi;
M
Marcin Slusarz 已提交
460
				else {
L
Linus Torvalds 已提交
461 462 463 464 465 466 467 468 469
					*err = -EIO;
					return NULL;
				}
			}
		}

		if (!lfi || !dentry)
			continue;

M
Marcin Slusarz 已提交
470 471 472
		flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
		if (flen && udf_match(flen, fname, dentry->d_name.len,
				      dentry->d_name.name)) {
L
Linus Torvalds 已提交
473
			if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
474 475 476
				brelse(fibh->ebh);
			brelse(fibh->sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
477 478 479 480 481
			*err = -EEXIST;
			return NULL;
		}
	}

482
add:
L
Linus Torvalds 已提交
483 484 485
	f_pos += nfidlen;

	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB &&
486
	    sb->s_blocksize - fibh->eoffset < nfidlen) {
J
Jan Kara 已提交
487
		brelse(epos.bh);
J
Jan Kara 已提交
488
		epos.bh = NULL;
L
Linus Torvalds 已提交
489 490 491 492
		fibh->soffset -= udf_ext0_offset(dir);
		fibh->eoffset -= udf_ext0_offset(dir);
		f_pos -= (udf_ext0_offset(dir) >> 2);
		if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
493 494
			brelse(fibh->ebh);
		brelse(fibh->sbh);
M
Marcin Slusarz 已提交
495 496 497
		fibh->sbh = fibh->ebh =
				udf_expand_dir_adinicb(dir, &block, err);
		if (!fibh->sbh)
L
Linus Torvalds 已提交
498
			return NULL;
J
Jan Kara 已提交
499
		epos.block = UDF_I_LOCATION(dir);
L
Linus Torvalds 已提交
500
		eloc.logicalBlockNum = block;
M
Marcin Slusarz 已提交
501 502
		eloc.partitionReferenceNum =
				UDF_I_LOCATION(dir).partitionReferenceNum;
L
Linus Torvalds 已提交
503
		elen = dir->i_sb->s_blocksize;
J
Jan Kara 已提交
504
		epos.offset = udf_file_entry_alloc_offset(dir);
L
Linus Torvalds 已提交
505
		if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
506
			epos.offset += sizeof(short_ad);
L
Linus Torvalds 已提交
507
		else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
508
			epos.offset += sizeof(long_ad);
L
Linus Torvalds 已提交
509 510
	}

511
	if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
L
Linus Torvalds 已提交
512 513
		fibh->soffset = fibh->eoffset;
		fibh->eoffset += nfidlen;
514
		if (fibh->sbh != fibh->ebh) {
J
Jan Kara 已提交
515
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
516 517 518
			fibh->sbh = fibh->ebh;
		}

519
		if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
520
			block = UDF_I_LOCATION(dir).logicalBlockNum;
M
Marcin Slusarz 已提交
521 522 523 524
			fi = (struct fileIdentDesc *)
					(UDF_I_DATA(dir) + fibh->soffset -
					 udf_ext0_offset(dir) +
					 UDF_I_LENEATTR(dir));
525
		} else {
M
Marcin Slusarz 已提交
526 527 528 529 530
			block = eloc.logicalBlockNum +
					((elen - 1) >>
						dir->i_sb->s_blocksize_bits);
			fi = (struct fileIdentDesc *)
				(fibh->sbh->b_data + fibh->soffset);
L
Linus Torvalds 已提交
531
		}
532
	} else {
L
Linus Torvalds 已提交
533 534
		fibh->soffset = fibh->eoffset - sb->s_blocksize;
		fibh->eoffset += nfidlen - sb->s_blocksize;
535
		if (fibh->sbh != fibh->ebh) {
J
Jan Kara 已提交
536
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
537 538 539 540
			fibh->sbh = fibh->ebh;
		}

		block = eloc.logicalBlockNum + ((elen - 1) >>
541
						dir->i_sb->s_blocksize_bits);
M
Marcin Slusarz 已提交
542 543 544
		fibh->ebh = udf_bread(dir,
				f_pos >> (dir->i_sb->s_blocksize_bits - 2),
				1, err);
545
		if (!fibh->ebh) {
J
Jan Kara 已提交
546 547
			brelse(epos.bh);
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
548 549 550
			return NULL;
		}

551
		if (!fibh->soffset) {
J
Jan Kara 已提交
552
			if (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
553
			    (EXT_RECORDED_ALLOCATED >> 30)) {
L
Linus Torvalds 已提交
554
				block = eloc.logicalBlockNum + ((elen - 1) >>
555
					dir->i_sb->s_blocksize_bits);
M
Marcin Slusarz 已提交
556
			} else
557
				block++;
L
Linus Torvalds 已提交
558

J
Jan Kara 已提交
559
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
560 561
			fibh->sbh = fibh->ebh;
			fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
562
		} else {
L
Linus Torvalds 已提交
563
			fi = (struct fileIdentDesc *)
M
Marcin Slusarz 已提交
564 565
				(fibh->sbh->b_data + sb->s_blocksize +
					fibh->soffset);
L
Linus Torvalds 已提交
566 567 568 569
		}
	}

	memset(cfi, 0, sizeof(struct fileIdentDesc));
M
Marcin Slusarz 已提交
570
	if (UDF_SB(sb)->s_udfrev >= 0x0200)
M
Marcin Slusarz 已提交
571 572
		udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
			    sizeof(tag));
L
Linus Torvalds 已提交
573
	else
M
Marcin Slusarz 已提交
574 575
		udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
			    sizeof(tag));
L
Linus Torvalds 已提交
576 577 578
	cfi->fileVersionNum = cpu_to_le16(1);
	cfi->lengthFileIdent = namelen;
	cfi->lengthOfImpUse = cpu_to_le16(0);
579
	if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
J
Jan Kara 已提交
580
		brelse(epos.bh);
L
Linus Torvalds 已提交
581 582 583 584 585
		dir->i_size += nfidlen;
		if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
			UDF_I_LENALLOC(dir) += nfidlen;
		mark_inode_dirty(dir);
		return fi;
586
	} else {
J
Jan Kara 已提交
587
		brelse(epos.bh);
L
Linus Torvalds 已提交
588
		if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
589 590
			brelse(fibh->ebh);
		brelse(fibh->sbh);
L
Linus Torvalds 已提交
591 592 593 594 595 596
		*err = -EIO;
		return NULL;
	}
}

static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
597 598
			    struct udf_fileident_bh *fibh,
			    struct fileIdentDesc *cfi)
L
Linus Torvalds 已提交
599 600
{
	cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
601

L
Linus Torvalds 已提交
602 603
	if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
		memset(&(cfi->icb), 0x00, sizeof(long_ad));
604

L
Linus Torvalds 已提交
605 606 607
	return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
}

608 609
static int udf_create(struct inode *dir, struct dentry *dentry, int mode,
		      struct nameidata *nd)
L
Linus Torvalds 已提交
610 611 612 613 614 615 616 617
{
	struct udf_fileident_bh fibh;
	struct inode *inode;
	struct fileIdentDesc cfi, *fi;
	int err;

	lock_kernel();
	inode = udf_new_inode(dir, mode, &err);
618
	if (!inode) {
L
Linus Torvalds 已提交
619 620 621 622 623 624 625 626 627 628 629 630 631
		unlock_kernel();
		return err;
	}

	if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB)
		inode->i_data.a_ops = &udf_adinicb_aops;
	else
		inode->i_data.a_ops = &udf_aops;
	inode->i_op = &udf_file_inode_operations;
	inode->i_fop = &udf_file_operations;
	inode->i_mode = mode;
	mark_inode_dirty(inode);

M
Marcin Slusarz 已提交
632 633
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
634
		inode->i_nlink--;
L
Linus Torvalds 已提交
635 636 637 638 639 640 641
		mark_inode_dirty(inode);
		iput(inode);
		unlock_kernel();
		return err;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
	cfi.icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(inode));
642 643
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(inode) & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
644
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
M
Marcin Slusarz 已提交
645
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
646 647
		mark_inode_dirty(dir);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
648 649
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
650 651
	unlock_kernel();
	d_instantiate(dentry, inode);
652

L
Linus Torvalds 已提交
653 654 655
	return 0;
}

656 657
static int udf_mknod(struct inode *dir, struct dentry *dentry, int mode,
		     dev_t rdev)
L
Linus Torvalds 已提交
658
{
659
	struct inode *inode;
L
Linus Torvalds 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;

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

	lock_kernel();
	err = -EIO;
	inode = udf_new_inode(dir, mode, &err);
	if (!inode)
		goto out;

	inode->i_uid = current->fsuid;
	init_special_inode(inode, mode, rdev);
M
Marcin Slusarz 已提交
675 676
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
677
		inode->i_nlink--;
L
Linus Torvalds 已提交
678 679 680 681 682 683 684
		mark_inode_dirty(inode);
		iput(inode);
		unlock_kernel();
		return err;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
	cfi.icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(inode));
685 686
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(inode) & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
687
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
M
Marcin Slusarz 已提交
688
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
689 690 691 692
		mark_inode_dirty(dir);
	mark_inode_dirty(inode);

	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
693 694
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
695 696
	d_instantiate(dentry, inode);
	err = 0;
697 698

out:
L
Linus Torvalds 已提交
699 700 701 702
	unlock_kernel();
	return err;
}

703
static int udf_mkdir(struct inode *dir, struct dentry *dentry, int mode)
L
Linus Torvalds 已提交
704
{
705
	struct inode *inode;
L
Linus Torvalds 已提交
706 707 708 709 710 711
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;

	lock_kernel();
	err = -EMLINK;
712
	if (dir->i_nlink >= (256 << sizeof(dir->i_nlink)) - 1)
L
Linus Torvalds 已提交
713 714 715 716 717 718 719 720 721
		goto out;

	err = -EIO;
	inode = udf_new_inode(dir, S_IFDIR, &err);
	if (!inode)
		goto out;

	inode->i_op = &udf_dir_inode_operations;
	inode->i_fop = &udf_dir_operations;
M
Marcin Slusarz 已提交
722 723
	fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
	if (!fi) {
L
Linus Torvalds 已提交
724 725 726 727 728 729 730 731
		inode->i_nlink--;
		mark_inode_dirty(inode);
		iput(inode);
		goto out;
	}
	inode->i_nlink = 2;
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
	cfi.icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(dir));
732 733
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(dir) & 0x00000000FFFFFFFFUL);
M
Marcin Slusarz 已提交
734 735
	cfi.fileCharacteristics =
			FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
L
Linus Torvalds 已提交
736
	udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
J
Jan Kara 已提交
737
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
738 739 740 741 742
	inode->i_mode = S_IFDIR | mode;
	if (dir->i_mode & S_ISGID)
		inode->i_mode |= S_ISGID;
	mark_inode_dirty(inode);

M
Marcin Slusarz 已提交
743 744
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
L
Linus Torvalds 已提交
745 746 747 748 749 750 751
		inode->i_nlink = 0;
		mark_inode_dirty(inode);
		iput(inode);
		goto out;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
	cfi.icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(inode));
752 753
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(inode) & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
754 755
	cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
756
	inc_nlink(dir);
L
Linus Torvalds 已提交
757 758 759
	mark_inode_dirty(dir);
	d_instantiate(dentry, inode);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
760 761
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
762
	err = 0;
763 764

out:
L
Linus Torvalds 已提交
765 766 767 768 769 770 771 772 773 774 775
	unlock_kernel();
	return err;
}

static int empty_dir(struct inode *dir)
{
	struct fileIdentDesc *fi, cfi;
	struct udf_fileident_bh fibh;
	loff_t f_pos;
	loff_t size = (udf_ext0_offset(dir) + dir->i_size) >> 2;
	int block;
J
Jan Kara 已提交
776 777
	kernel_lb_addr eloc;
	uint32_t elen;
778
	sector_t offset;
779
	struct extent_position epos = {};
L
Linus Torvalds 已提交
780 781 782

	f_pos = (udf_ext0_offset(dir) >> 2);

M
Marcin Slusarz 已提交
783 784
	fibh.soffset = fibh.eoffset =
			(f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
L
Linus Torvalds 已提交
785

M
Marcin Slusarz 已提交
786
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
787
		fibh.sbh = fibh.ebh = NULL;
M
Marcin Slusarz 已提交
788 789 790
	else if (inode_bmap(dir, f_pos >> (dir->i_sb->s_blocksize_bits - 2),
			      &epos, &eloc, &elen, &offset) ==
					(EXT_RECORDED_ALLOCATED >> 30)) {
L
Linus Torvalds 已提交
791
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
792
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
L
Linus Torvalds 已提交
793
			if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
794
				epos.offset -= sizeof(short_ad);
L
Linus Torvalds 已提交
795
			else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
796
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
797
		} else
L
Linus Torvalds 已提交
798 799
			offset = 0;

M
Marcin Slusarz 已提交
800 801
		fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
		if (!fibh.sbh) {
J
Jan Kara 已提交
802
			brelse(epos.bh);
L
Linus Torvalds 已提交
803 804
			return 0;
		}
805
	} else {
J
Jan Kara 已提交
806
		brelse(epos.bh);
L
Linus Torvalds 已提交
807 808 809
		return 0;
	}

810 811 812 813
	while ((f_pos < size)) {
		fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
					&elen, &offset);
		if (!fi) {
L
Linus Torvalds 已提交
814
			if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
815 816 817
				brelse(fibh.ebh);
			brelse(fibh.sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
818 819 820
			return 0;
		}

821 822
		if (cfi.lengthFileIdent &&
		    (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
L
Linus Torvalds 已提交
823
			if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
824 825 826
				brelse(fibh.ebh);
			brelse(fibh.sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
827 828 829
			return 0;
		}
	}
830

L
Linus Torvalds 已提交
831
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
832 833 834
		brelse(fibh.ebh);
	brelse(fibh.sbh);
	brelse(epos.bh);
835

L
Linus Torvalds 已提交
836 837 838
	return 1;
}

839
static int udf_rmdir(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
840 841
{
	int retval;
842
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864
	struct udf_fileident_bh fibh;
	struct fileIdentDesc *fi, cfi;
	kernel_lb_addr tloc;

	retval = -ENOENT;
	lock_kernel();
	fi = udf_find_entry(dir, dentry, &fibh, &cfi);
	if (!fi)
		goto out;

	retval = -EIO;
	tloc = lelb_to_cpu(cfi.icb.extLocation);
	if (udf_get_lb_pblock(dir->i_sb, tloc, 0) != inode->i_ino)
		goto end_rmdir;
	retval = -ENOTEMPTY;
	if (!empty_dir(inode))
		goto end_rmdir;
	retval = udf_delete_entry(dir, fi, &fibh, &cfi);
	if (retval)
		goto end_rmdir;
	if (inode->i_nlink != 2)
		udf_warning(inode->i_sb, "udf_rmdir",
865 866
			    "empty directory has nlink != 2 (%d)",
			    inode->i_nlink);
867
	clear_nlink(inode);
L
Linus Torvalds 已提交
868
	inode->i_size = 0;
869
	inode_dec_link_count(dir);
M
Marcin Slusarz 已提交
870 871
	inode->i_ctime = dir->i_ctime = dir->i_mtime =
						current_fs_time(dir->i_sb);
L
Linus Torvalds 已提交
872 873
	mark_inode_dirty(dir);

874
end_rmdir:
L
Linus Torvalds 已提交
875
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
876 877
		brelse(fibh.ebh);
	brelse(fibh.sbh);
878 879

out:
L
Linus Torvalds 已提交
880 881 882 883
	unlock_kernel();
	return retval;
}

884
static int udf_unlink(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
885 886
{
	int retval;
887
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903
	struct udf_fileident_bh fibh;
	struct fileIdentDesc *fi;
	struct fileIdentDesc cfi;
	kernel_lb_addr tloc;

	retval = -ENOENT;
	lock_kernel();
	fi = udf_find_entry(dir, dentry, &fibh, &cfi);
	if (!fi)
		goto out;

	retval = -EIO;
	tloc = lelb_to_cpu(cfi.icb.extLocation);
	if (udf_get_lb_pblock(dir->i_sb, tloc, 0) != inode->i_ino)
		goto end_unlink;

904
	if (!inode->i_nlink) {
L
Linus Torvalds 已提交
905
		udf_debug("Deleting nonexistent file (%lu), %d\n",
906
			  inode->i_ino, inode->i_nlink);
L
Linus Torvalds 已提交
907 908 909 910 911 912 913
		inode->i_nlink = 1;
	}
	retval = udf_delete_entry(dir, fi, &fibh, &cfi);
	if (retval)
		goto end_unlink;
	dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
	mark_inode_dirty(dir);
914
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
915 916 917
	inode->i_ctime = dir->i_ctime;
	retval = 0;

918
end_unlink:
L
Linus Torvalds 已提交
919
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
920 921
		brelse(fibh.ebh);
	brelse(fibh.sbh);
922 923

out:
L
Linus Torvalds 已提交
924 925 926 927
	unlock_kernel();
	return retval;
}

928 929
static int udf_symlink(struct inode *dir, struct dentry *dentry,
		       const char *symname)
L
Linus Torvalds 已提交
930
{
931
	struct inode *inode;
L
Linus Torvalds 已提交
932 933 934
	struct pathComponent *pc;
	char *compstart;
	struct udf_fileident_bh fibh;
935
	struct extent_position epos = {};
L
Linus Torvalds 已提交
936 937 938 939 940 941 942 943
	int eoffset, elen = 0;
	struct fileIdentDesc *fi;
	struct fileIdentDesc cfi;
	char *ea;
	int err;
	int block;
	char name[UDF_NAME_LEN];
	int namelen;
M
Marcin Slusarz 已提交
944
	struct buffer_head *bh;
L
Linus Torvalds 已提交
945 946

	lock_kernel();
M
Marcin Slusarz 已提交
947 948
	inode = udf_new_inode(dir, S_IFLNK, &err);
	if (!inode)
L
Linus Torvalds 已提交
949 950 951 952 953 954
		goto out;

	inode->i_mode = S_IFLNK | S_IRWXUGO;
	inode->i_data.a_ops = &udf_symlink_aops;
	inode->i_op = &page_symlink_inode_operations;

955
	if (UDF_I_ALLOCTYPE(inode) != ICBTAG_FLAG_AD_IN_ICB) {
J
Jan Kara 已提交
956 957
		kernel_lb_addr eloc;
		uint32_t elen;
L
Linus Torvalds 已提交
958 959

		block = udf_new_block(inode->i_sb, inode,
M
Marcin Slusarz 已提交
960 961
				UDF_I_LOCATION(inode).partitionReferenceNum,
				UDF_I_LOCATION(inode).logicalBlockNum, &err);
L
Linus Torvalds 已提交
962 963
		if (!block)
			goto out_no_entry;
J
Jan Kara 已提交
964 965 966
		epos.block = UDF_I_LOCATION(inode);
		epos.offset = udf_file_entry_alloc_offset(inode);
		epos.bh = NULL;
L
Linus Torvalds 已提交
967
		eloc.logicalBlockNum = block;
M
Marcin Slusarz 已提交
968 969
		eloc.partitionReferenceNum =
				UDF_I_LOCATION(inode).partitionReferenceNum;
L
Linus Torvalds 已提交
970 971
		elen = inode->i_sb->s_blocksize;
		UDF_I_LENEXTENTS(inode) = elen;
J
Jan Kara 已提交
972
		udf_add_aext(inode, &epos, eloc, elen, 0);
J
Jan Kara 已提交
973
		brelse(epos.bh);
L
Linus Torvalds 已提交
974 975

		block = udf_get_pblock(inode->i_sb, block,
M
Marcin Slusarz 已提交
976 977
				UDF_I_LOCATION(inode).partitionReferenceNum,
				0);
J
Jan Kara 已提交
978 979 980 981 982 983 984
		epos.bh = udf_tread(inode->i_sb, block);
		lock_buffer(epos.bh);
		memset(epos.bh->b_data, 0x00, inode->i_sb->s_blocksize);
		set_buffer_uptodate(epos.bh);
		unlock_buffer(epos.bh);
		mark_buffer_dirty_inode(epos.bh, inode);
		ea = epos.bh->b_data + udf_ext0_offset(inode);
985
	} else {
L
Linus Torvalds 已提交
986
		ea = UDF_I_DATA(inode) + UDF_I_LENEATTR(inode);
987
	}
L
Linus Torvalds 已提交
988 989 990 991

	eoffset = inode->i_sb->s_blocksize - udf_ext0_offset(inode);
	pc = (struct pathComponent *)ea;

992 993
	if (*symname == '/') {
		do {
L
Linus Torvalds 已提交
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
			symname++;
		} while (*symname == '/');

		pc->componentType = 1;
		pc->lengthComponentIdent = 0;
		pc->componentFileVersionNum = 0;
		pc += sizeof(struct pathComponent);
		elen += sizeof(struct pathComponent);
	}

	err = -ENAMETOOLONG;

1006
	while (*symname) {
L
Linus Torvalds 已提交
1007 1008 1009 1010 1011 1012 1013
		if (elen + sizeof(struct pathComponent) > eoffset)
			goto out_no_entry;

		pc = (struct pathComponent *)(ea + elen);

		compstart = (char *)symname;

1014
		do {
L
Linus Torvalds 已提交
1015 1016 1017 1018 1019 1020
			symname++;
		} while (*symname && *symname != '/');

		pc->componentType = 5;
		pc->lengthComponentIdent = 0;
		pc->componentFileVersionNum = 0;
1021 1022
		if (compstart[0] == '.') {
			if ((symname - compstart) == 1)
L
Linus Torvalds 已提交
1023
				pc->componentType = 4;
M
Marcin Slusarz 已提交
1024 1025
			else if ((symname - compstart) == 2 &&
					compstart[1] == '.')
L
Linus Torvalds 已提交
1026 1027 1028
				pc->componentType = 3;
		}

1029
		if (pc->componentType == 5) {
1030 1031 1032
			namelen = udf_put_filename(inode->i_sb, compstart, name,
						   symname - compstart);
			if (!namelen)
L
Linus Torvalds 已提交
1033 1034
				goto out_no_entry;

M
Marcin Slusarz 已提交
1035 1036
			if (elen + sizeof(struct pathComponent) + namelen >
					eoffset)
L
Linus Torvalds 已提交
1037 1038 1039 1040 1041 1042 1043 1044 1045
				goto out_no_entry;
			else
				pc->lengthComponentIdent = namelen;

			memcpy(pc->componentIdent, name, namelen);
		}

		elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;

1046 1047
		if (*symname) {
			do {
L
Linus Torvalds 已提交
1048 1049 1050 1051 1052
				symname++;
			} while (*symname == '/');
		}
	}

J
Jan Kara 已提交
1053
	brelse(epos.bh);
L
Linus Torvalds 已提交
1054 1055 1056 1057 1058
	inode->i_size = elen;
	if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB)
		UDF_I_LENALLOC(inode) = inode->i_size;
	mark_inode_dirty(inode);

M
Marcin Slusarz 已提交
1059 1060
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi)
L
Linus Torvalds 已提交
1061 1062 1063
		goto out_no_entry;
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
	cfi.icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(inode));
M
Marcin Slusarz 已提交
1064 1065
	bh = UDF_SB(inode->i_sb)->s_lvid_bh;
	if (bh) {
M
Marcin Slusarz 已提交
1066 1067
		struct logicalVolIntegrityDesc *lvid =
				(struct logicalVolIntegrityDesc *)bh->b_data;
L
Linus Torvalds 已提交
1068 1069
		struct logicalVolHeaderDesc *lvhd;
		uint64_t uniqueID;
M
Marcin Slusarz 已提交
1070 1071
		lvhd = (struct logicalVolHeaderDesc *)
				lvid->logicalVolContentsUse;
L
Linus Torvalds 已提交
1072
		uniqueID = le64_to_cpu(lvhd->uniqueID);
1073 1074
		*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
			cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
1075 1076 1077
		if (!(++uniqueID & 0x00000000FFFFFFFFUL))
			uniqueID += 16;
		lvhd->uniqueID = cpu_to_le64(uniqueID);
M
Marcin Slusarz 已提交
1078
		mark_buffer_dirty(bh);
L
Linus Torvalds 已提交
1079 1080
	}
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
M
Marcin Slusarz 已提交
1081
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
1082 1083
		mark_inode_dirty(dir);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
1084 1085
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
1086 1087 1088
	d_instantiate(dentry, inode);
	err = 0;

1089
out:
L
Linus Torvalds 已提交
1090 1091 1092
	unlock_kernel();
	return err;

1093
out_no_entry:
1094
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
1095 1096 1097 1098
	iput(inode);
	goto out;
}

1099 1100
static int udf_link(struct dentry *old_dentry, struct inode *dir,
		    struct dentry *dentry)
L
Linus Torvalds 已提交
1101 1102 1103 1104 1105
{
	struct inode *inode = old_dentry->d_inode;
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;
M
Marcin Slusarz 已提交
1106
	struct buffer_head *bh;
L
Linus Torvalds 已提交
1107 1108

	lock_kernel();
1109
	if (inode->i_nlink >= (256 << sizeof(inode->i_nlink)) - 1) {
L
Linus Torvalds 已提交
1110 1111 1112 1113
		unlock_kernel();
		return -EMLINK;
	}

M
Marcin Slusarz 已提交
1114 1115
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
L
Linus Torvalds 已提交
1116 1117 1118 1119 1120
		unlock_kernel();
		return err;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
	cfi.icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(inode));
M
Marcin Slusarz 已提交
1121 1122
	bh = UDF_SB(inode->i_sb)->s_lvid_bh;
	if (bh) {
M
Marcin Slusarz 已提交
1123 1124
		struct logicalVolIntegrityDesc *lvid =
				(struct logicalVolIntegrityDesc *)bh->b_data;
L
Linus Torvalds 已提交
1125 1126
		struct logicalVolHeaderDesc *lvhd;
		uint64_t uniqueID;
M
Marcin Slusarz 已提交
1127 1128
		lvhd = (struct logicalVolHeaderDesc *)
				(lvid->logicalVolContentsUse);
L
Linus Torvalds 已提交
1129
		uniqueID = le64_to_cpu(lvhd->uniqueID);
1130 1131
		*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
			cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
1132 1133 1134
		if (!(++uniqueID & 0x00000000FFFFFFFFUL))
			uniqueID += 16;
		lvhd->uniqueID = cpu_to_le64(uniqueID);
M
Marcin Slusarz 已提交
1135
		mark_buffer_dirty(bh);
L
Linus Torvalds 已提交
1136 1137
	}
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
M
Marcin Slusarz 已提交
1138
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
1139
		mark_inode_dirty(dir);
1140

L
Linus Torvalds 已提交
1141
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
1142 1143
		brelse(fibh.ebh);
	brelse(fibh.sbh);
1144
	inc_nlink(inode);
L
Linus Torvalds 已提交
1145 1146 1147 1148 1149
	inode->i_ctime = current_fs_time(inode->i_sb);
	mark_inode_dirty(inode);
	atomic_inc(&inode->i_count);
	d_instantiate(dentry, inode);
	unlock_kernel();
1150

L
Linus Torvalds 已提交
1151 1152 1153 1154 1155 1156
	return 0;
}

/* Anybody can rename anything with this: the permission checks are left to the
 * higher-level routines.
 */
1157 1158
static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
		      struct inode *new_dir, struct dentry *new_dentry)
L
Linus Torvalds 已提交
1159
{
1160 1161
	struct inode *old_inode = old_dentry->d_inode;
	struct inode *new_inode = new_dentry->d_inode;
L
Linus Torvalds 已提交
1162
	struct udf_fileident_bh ofibh, nfibh;
M
Marcin Slusarz 已提交
1163 1164
	struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
	struct fileIdentDesc ocfi, ncfi;
L
Linus Torvalds 已提交
1165 1166 1167 1168 1169
	struct buffer_head *dir_bh = NULL;
	int retval = -ENOENT;
	kernel_lb_addr tloc;

	lock_kernel();
M
Marcin Slusarz 已提交
1170 1171
	ofi = udf_find_entry(old_dir, old_dentry, &ofibh, &ocfi);
	if (ofi) {
L
Linus Torvalds 已提交
1172
		if (ofibh.sbh != ofibh.ebh)
J
Jan Kara 已提交
1173 1174
			brelse(ofibh.ebh);
		brelse(ofibh.sbh);
L
Linus Torvalds 已提交
1175 1176 1177
	}
	tloc = lelb_to_cpu(ocfi.icb.extLocation);
	if (!ofi || udf_get_lb_pblock(old_dir->i_sb, tloc, 0)
1178
	    != old_inode->i_ino)
L
Linus Torvalds 已提交
1179 1180 1181
		goto end_rename;

	nfi = udf_find_entry(new_dir, new_dentry, &nfibh, &ncfi);
1182 1183
	if (nfi) {
		if (!new_inode) {
L
Linus Torvalds 已提交
1184
			if (nfibh.sbh != nfibh.ebh)
J
Jan Kara 已提交
1185 1186
				brelse(nfibh.ebh);
			brelse(nfibh.sbh);
L
Linus Torvalds 已提交
1187 1188 1189
			nfi = NULL;
		}
	}
1190
	if (S_ISDIR(old_inode->i_mode)) {
L
Linus Torvalds 已提交
1191 1192
		uint32_t offset = udf_ext0_offset(old_inode);

1193
		if (new_inode) {
L
Linus Torvalds 已提交
1194 1195 1196 1197 1198
			retval = -ENOTEMPTY;
			if (!empty_dir(new_inode))
				goto end_rename;
		}
		retval = -EIO;
1199
		if (UDF_I_ALLOCTYPE(old_inode) == ICBTAG_FLAG_AD_IN_ICB) {
M
Marcin Slusarz 已提交
1200 1201 1202 1203 1204 1205
			dir_fi = udf_get_fileident(
					UDF_I_DATA(old_inode) -
					  (UDF_I_EFE(old_inode) ?
					   sizeof(struct extendedFileEntry) :
					   sizeof(struct fileEntry)),
					old_inode->i_sb->s_blocksize, &offset);
1206
		} else {
L
Linus Torvalds 已提交
1207 1208 1209
			dir_bh = udf_bread(old_inode, 0, 0, &retval);
			if (!dir_bh)
				goto end_rename;
M
Marcin Slusarz 已提交
1210 1211
			dir_fi = udf_get_fileident(dir_bh->b_data,
					old_inode->i_sb->s_blocksize, &offset);
L
Linus Torvalds 已提交
1212 1213 1214 1215
		}
		if (!dir_fi)
			goto end_rename;
		tloc = lelb_to_cpu(dir_fi->icb.extLocation);
M
Marcin Slusarz 已提交
1216 1217
		if (udf_get_lb_pblock(old_inode->i_sb, tloc, 0) !=
				old_dir->i_ino)
L
Linus Torvalds 已提交
1218 1219 1220
			goto end_rename;

		retval = -EMLINK;
M
Marcin Slusarz 已提交
1221 1222 1223
		if (!new_inode &&
			new_dir->i_nlink >=
				(256 << sizeof(new_dir->i_nlink)) - 1)
L
Linus Torvalds 已提交
1224 1225
			goto end_rename;
	}
1226
	if (!nfi) {
M
Marcin Slusarz 已提交
1227 1228
		nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
				    &retval);
L
Linus Torvalds 已提交
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
		if (!nfi)
			goto end_rename;
	}

	/*
	 * Like most other Unix systems, set the ctime for inodes on a
	 * rename.
	 */
	old_inode->i_ctime = current_fs_time(old_inode->i_sb);
	mark_inode_dirty(old_inode);

	/*
	 * ok, that's it
	 */
	ncfi.fileVersionNum = ocfi.fileVersionNum;
	ncfi.fileCharacteristics = ocfi.fileCharacteristics;
	memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(long_ad));
	udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);

	/* The old fid may have moved - find it again */
	ofi = udf_find_entry(old_dir, old_dentry, &ofibh, &ocfi);
	udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);

1252
	if (new_inode) {
L
Linus Torvalds 已提交
1253
		new_inode->i_ctime = current_fs_time(new_inode->i_sb);
1254
		inode_dec_link_count(new_inode);
L
Linus Torvalds 已提交
1255 1256 1257 1258
	}
	old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
	mark_inode_dirty(old_dir);

1259
	if (dir_fi) {
L
Linus Torvalds 已提交
1260
		dir_fi->icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(new_dir));
M
Marcin Slusarz 已提交
1261 1262 1263 1264
		udf_update_tag((char *)dir_fi,
				(sizeof(struct fileIdentDesc) +
				le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
		if (UDF_I_ALLOCTYPE(old_inode) == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
1265
			mark_inode_dirty(old_inode);
M
Marcin Slusarz 已提交
1266
		else
L
Linus Torvalds 已提交
1267
			mark_buffer_dirty_inode(dir_bh, old_inode);
M
Marcin Slusarz 已提交
1268

1269
		inode_dec_link_count(old_dir);
M
Marcin Slusarz 已提交
1270
		if (new_inode)
1271
			inode_dec_link_count(new_inode);
M
Marcin Slusarz 已提交
1272
		else {
1273
			inc_nlink(new_dir);
L
Linus Torvalds 已提交
1274 1275 1276 1277
			mark_inode_dirty(new_dir);
		}
	}

1278
	if (ofi) {
L
Linus Torvalds 已提交
1279
		if (ofibh.sbh != ofibh.ebh)
J
Jan Kara 已提交
1280 1281
			brelse(ofibh.ebh);
		brelse(ofibh.sbh);
L
Linus Torvalds 已提交
1282 1283 1284 1285
	}

	retval = 0;

1286
end_rename:
J
Jan Kara 已提交
1287
	brelse(dir_bh);
1288
	if (nfi) {
L
Linus Torvalds 已提交
1289
		if (nfibh.sbh != nfibh.ebh)
J
Jan Kara 已提交
1290 1291
			brelse(nfibh.ebh);
		brelse(nfibh.sbh);
L
Linus Torvalds 已提交
1292 1293
	}
	unlock_kernel();
1294

L
Linus Torvalds 已提交
1295 1296 1297
	return retval;
}

1298
const struct inode_operations udf_dir_inode_operations = {
1299 1300 1301 1302 1303 1304 1305 1306 1307
	.lookup				= udf_lookup,
	.create				= udf_create,
	.link				= udf_link,
	.unlink				= udf_unlink,
	.symlink			= udf_symlink,
	.mkdir				= udf_mkdir,
	.rmdir				= udf_rmdir,
	.mknod				= udf_mknod,
	.rename				= udf_rename,
L
Linus Torvalds 已提交
1308
};