namei.c 32.3 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 46
		 struct fileIdentDesc *sfi, struct udf_fileident_bh *fibh,
		 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 71
		} else {
			memcpy((uint8_t *)sfi->impUse, impuse, -offset);
			memcpy(fibh->ebh->b_data, impuse - offset, liu + offset);
L
Linus Torvalds 已提交
72 73 74 75 76
		}
	}

	offset += liu;

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

	offset += lfi;

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

99 100 101 102 103 104 105 106 107 108 109 110
	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,
			      crclen + sizeof(tag) - sizeof(struct fileIdentDesc), crc);
	} else if (sizeof(struct fileIdentDesc) >= -fibh->soffset) {
		crc = udf_crc(fibh->ebh->b_data + sizeof(struct fileIdentDesc) + fibh->soffset,
			      crclen + sizeof(tag) - sizeof(struct fileIdentDesc), crc);
	} else {
		crc = udf_crc((uint8_t *)sfi->impUse,
			      -fibh->soffset - sizeof(struct fileIdentDesc), crc);
L
Linus Torvalds 已提交
111 112 113 114 115 116
		crc = udf_crc(fibh->ebh->b_data, fibh->eoffset, crc);
	}

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

117
	for (i = 0; i < 16; i++) {
L
Linus Torvalds 已提交
118
		if (i != 4)
119 120
			checksum += ((uint8_t *)&cfi->descTag)[i];
	}
L
Linus Torvalds 已提交
121 122

	cfi->descTag.tagChecksum = checksum;
123 124 125 126 127
	if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) {
		memcpy((uint8_t *)sfi, (uint8_t *)cfi, sizeof(struct fileIdentDesc));
	} else {
		memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset);
		memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset,
128
		       sizeof(struct fileIdentDesc) + fibh->soffset);
L
Linus Torvalds 已提交
129 130
	}

131
	if (adinicb) {
L
Linus Torvalds 已提交
132
		mark_inode_dirty(inode);
133
	} else {
L
Linus Torvalds 已提交
134 135 136 137 138 139 140
		if (fibh->sbh != fibh->ebh)
			mark_buffer_dirty_inode(fibh->ebh, inode);
		mark_buffer_dirty_inode(fibh->sbh, inode);
	}
	return 0;
}

141 142 143 144
static struct fileIdentDesc *udf_find_entry(struct inode *dir,
					    struct dentry *dentry,
					    struct udf_fileident_bh *fibh,
					    struct fileIdentDesc *cfi)
L
Linus Torvalds 已提交
145
{
146
	struct fileIdentDesc *fi = NULL;
L
Linus Torvalds 已提交
147 148 149 150 151 152
	loff_t f_pos;
	int block, flen;
	char fname[UDF_NAME_LEN];
	char *nameptr;
	uint8_t lfi;
	uint16_t liu;
153
	loff_t size;
J
Jan Kara 已提交
154 155
	kernel_lb_addr eloc;
	uint32_t elen;
156
	sector_t offset;
157
	struct extent_position epos = {};
L
Linus Torvalds 已提交
158

159
	size = (udf_ext0_offset(dir) + dir->i_size) >> 2;
L
Linus Torvalds 已提交
160 161
	f_pos = (udf_ext0_offset(dir) >> 2);

162 163
	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 已提交
164
		fibh->sbh = fibh->ebh = NULL;
165 166
	} 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 已提交
167
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
168
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
L
Linus Torvalds 已提交
169
			if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
170
				epos.offset -= sizeof(short_ad);
L
Linus Torvalds 已提交
171
			else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
172
				epos.offset -= sizeof(long_ad);
173
		} else {
L
Linus Torvalds 已提交
174
			offset = 0;
175
		}
L
Linus Torvalds 已提交
176

177
		if (!(fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block))) {
J
Jan Kara 已提交
178
			brelse(epos.bh);
L
Linus Torvalds 已提交
179 180
			return NULL;
		}
181
	} else {
J
Jan Kara 已提交
182
		brelse(epos.bh);
L
Linus Torvalds 已提交
183 184 185
		return NULL;
	}

186 187 188 189
	while ((f_pos < size)) {
		fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
					&elen, &offset);
		if (!fi) {
L
Linus Torvalds 已提交
190
			if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
191 192 193
				brelse(fibh->ebh);
			brelse(fibh->sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
194 195 196 197 198 199
			return NULL;
		}

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

200
		if (fibh->sbh == fibh->ebh) {
L
Linus Torvalds 已提交
201
			nameptr = fi->fileIdent + liu;
202
		} else {
L
Linus Torvalds 已提交
203 204
			int poffset;	/* Unpaded ending offset */

205
			poffset = fibh->soffset + sizeof(struct fileIdentDesc) + liu + lfi;
L
Linus Torvalds 已提交
206

207 208 209
			if (poffset >= lfi) {
				nameptr = (uint8_t *)(fibh->ebh->b_data + poffset - lfi);
			} else {
L
Linus Torvalds 已提交
210
				nameptr = fname;
211 212
				memcpy(nameptr, fi->fileIdent + liu, lfi - poffset);
				memcpy(nameptr + lfi - poffset, fibh->ebh->b_data, poffset);
L
Linus Torvalds 已提交
213 214 215
			}
		}

216 217
		if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
			if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
L
Linus Torvalds 已提交
218 219
				continue;
		}
220 221 222

		if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
			if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE))
L
Linus Torvalds 已提交
223 224 225 226 227 228
				continue;
		}

		if (!lfi)
			continue;

229
		if ((flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi))) {
230
			if (udf_match(flen, fname, dentry->d_name.len, dentry->d_name.name)) {
J
Jan Kara 已提交
231
				brelse(epos.bh);
L
Linus Torvalds 已提交
232 233 234 235
				return fi;
			}
		}
	}
236

L
Linus Torvalds 已提交
237
	if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
238 239 240
		brelse(fibh->ebh);
	brelse(fibh->sbh);
	brelse(epos.bh);
241

L
Linus Torvalds 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
	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.
 */

278 279
static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
				 struct nameidata *nd)
L
Linus Torvalds 已提交
280 281
{
	struct inode *inode = NULL;
282
	struct fileIdentDesc cfi;
L
Linus Torvalds 已提交
283 284
	struct udf_fileident_bh fibh;

285
	if (dentry->d_name.len > UDF_NAME_LEN - 2)
L
Linus Torvalds 已提交
286 287 288 289 290
		return ERR_PTR(-ENAMETOOLONG);

	lock_kernel();
#ifdef UDF_RECOVERY
	/* temporary shorthand for specifying files by inode number */
291
	if (!strncmp(dentry->d_name.name, ".B=", 3)) {
292 293 294 295 296
		kernel_lb_addr lb = {
			.logicalBlockNum = 0,
			.partitionReferenceNum = simple_strtoul(dentry->d_name.name + 3,
								NULL, 0),
		};
L
Linus Torvalds 已提交
297
		inode = udf_iget(dir->i_sb, lb);
298
		if (!inode) {
L
Linus Torvalds 已提交
299 300 301
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
302 303 304
	}
	else
#endif /* UDF_RECOVERY */
L
Linus Torvalds 已提交
305

306
	if (udf_find_entry(dir, dentry, &fibh, &cfi)) {
L
Linus Torvalds 已提交
307
		if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
308 309
			brelse(fibh.ebh);
		brelse(fibh.sbh);
L
Linus Torvalds 已提交
310 311

		inode = udf_iget(dir->i_sb, lelb_to_cpu(cfi.icb.extLocation));
312
		if (!inode) {
L
Linus Torvalds 已提交
313 314 315 316 317 318
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
	}
	unlock_kernel();
	d_add(dentry, inode);
319

L
Linus Torvalds 已提交
320 321 322
	return NULL;
}

323 324 325 326
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 已提交
327 328
{
	struct super_block *sb;
329
	struct fileIdentDesc *fi = NULL;
L
Linus Torvalds 已提交
330 331 332 333 334 335 336 337 338 339
	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 已提交
340 341
	kernel_lb_addr eloc;
	uint32_t elen;
342
	sector_t offset;
343
	struct extent_position epos = {};
L
Linus Torvalds 已提交
344 345 346

	sb = dir->i_sb;

347 348
	if (dentry) {
		if (!dentry->d_name.len) {
L
Linus Torvalds 已提交
349 350 351
			*err = -EINVAL;
			return NULL;
		}
352 353
		if (!(namelen = udf_put_filename(sb, dentry->d_name.name, name,
						 dentry->d_name.len))) {
L
Linus Torvalds 已提交
354 355 356
			*err = -ENAMETOOLONG;
			return NULL;
		}
357
	} else {
L
Linus Torvalds 已提交
358
		namelen = 0;
359
	}
L
Linus Torvalds 已提交
360 361 362 363 364

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

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

365 366
	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 已提交
367
		fibh->sbh = fibh->ebh = NULL;
368 369
	} 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 已提交
370
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
371
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
L
Linus Torvalds 已提交
372
			if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
373
				epos.offset -= sizeof(short_ad);
L
Linus Torvalds 已提交
374
			else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
375
				epos.offset -= sizeof(long_ad);
376
		} else {
L
Linus Torvalds 已提交
377
			offset = 0;
378
		}
L
Linus Torvalds 已提交
379

380
		if (!(fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block))) {
J
Jan Kara 已提交
381
			brelse(epos.bh);
L
Linus Torvalds 已提交
382 383 384 385 386 387
			*err = -EIO;
			return NULL;
		}

		block = UDF_I_LOCATION(dir).logicalBlockNum;

388
	} else {
L
Linus Torvalds 已提交
389 390 391 392 393 394
		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;
	}

395 396 397
	while ((f_pos < size)) {
		fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
					&elen, &offset);
L
Linus Torvalds 已提交
398

399
		if (!fi) {
L
Linus Torvalds 已提交
400
			if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
401 402 403
				brelse(fibh->ebh);
			brelse(fibh->sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
404 405 406 407 408 409 410
			*err = -EIO;
			return NULL;
		}

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

411
		if (fibh->sbh == fibh->ebh) {
L
Linus Torvalds 已提交
412
			nameptr = fi->fileIdent + liu;
413
		} else {
L
Linus Torvalds 已提交
414 415
			int poffset;	/* Unpaded ending offset */

416
			poffset = fibh->soffset + sizeof(struct fileIdentDesc) + liu + lfi;
L
Linus Torvalds 已提交
417

418 419 420
			if (poffset >= lfi) {
				nameptr = (char *)(fibh->ebh->b_data + poffset - lfi);
			} else {
L
Linus Torvalds 已提交
421
				nameptr = fname;
422 423
				memcpy(nameptr, fi->fileIdent + liu, lfi - poffset);
				memcpy(nameptr + lfi - poffset, fibh->ebh->b_data, poffset);
L
Linus Torvalds 已提交
424 425 426
			}
		}

427
		if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
428
			if (((sizeof(struct fileIdentDesc) + liu + lfi + 3) & ~3) == nfidlen) {
J
Jan Kara 已提交
429
				brelse(epos.bh);
L
Linus Torvalds 已提交
430 431 432 433 434
				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);
435
				if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
L
Linus Torvalds 已提交
436
					return fi;
437
				} else {
L
Linus Torvalds 已提交
438 439 440 441 442 443 444 445 446 447
					*err = -EIO;
					return NULL;
				}
			}
		}

		if (!lfi || !dentry)
			continue;

		if ((flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi)) &&
448
		    udf_match(flen, fname, dentry->d_name.len, dentry->d_name.name)) {
L
Linus Torvalds 已提交
449
			if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
450 451 452
				brelse(fibh->ebh);
			brelse(fibh->sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
453 454 455 456 457
			*err = -EEXIST;
			return NULL;
		}
	}

458
add:
L
Linus Torvalds 已提交
459 460 461
	f_pos += nfidlen;

	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB &&
462
	    sb->s_blocksize - fibh->eoffset < nfidlen) {
J
Jan Kara 已提交
463
		brelse(epos.bh);
J
Jan Kara 已提交
464
		epos.bh = NULL;
L
Linus Torvalds 已提交
465 466 467 468
		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 已提交
469 470
			brelse(fibh->ebh);
		brelse(fibh->sbh);
471
		if (!(fibh->sbh = fibh->ebh = udf_expand_dir_adinicb(dir, &block, err)))
L
Linus Torvalds 已提交
472
			return NULL;
J
Jan Kara 已提交
473
		epos.block = UDF_I_LOCATION(dir);
L
Linus Torvalds 已提交
474
		eloc.logicalBlockNum = block;
475
		eloc.partitionReferenceNum = UDF_I_LOCATION(dir).partitionReferenceNum;
L
Linus Torvalds 已提交
476
		elen = dir->i_sb->s_blocksize;
J
Jan Kara 已提交
477
		epos.offset = udf_file_entry_alloc_offset(dir);
L
Linus Torvalds 已提交
478
		if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
479
			epos.offset += sizeof(short_ad);
L
Linus Torvalds 已提交
480
		else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
481
			epos.offset += sizeof(long_ad);
L
Linus Torvalds 已提交
482 483
	}

484
	if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
L
Linus Torvalds 已提交
485 486
		fibh->soffset = fibh->eoffset;
		fibh->eoffset += nfidlen;
487
		if (fibh->sbh != fibh->ebh) {
J
Jan Kara 已提交
488
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
489 490 491
			fibh->sbh = fibh->ebh;
		}

492
		if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
493
			block = UDF_I_LOCATION(dir).logicalBlockNum;
494
			fi = (struct fileIdentDesc *)(UDF_I_DATA(dir) + fibh->soffset -
495 496 497
						      udf_ext0_offset(dir) +
						      UDF_I_LENEATTR(dir));
		} else {
L
Linus Torvalds 已提交
498
			block = eloc.logicalBlockNum + ((elen - 1) >>
499 500
							dir->i_sb->s_blocksize_bits);
			fi = (struct fileIdentDesc *)(fibh->sbh->b_data + fibh->soffset);
L
Linus Torvalds 已提交
501
		}
502
	} else {
L
Linus Torvalds 已提交
503 504
		fibh->soffset = fibh->eoffset - sb->s_blocksize;
		fibh->eoffset += nfidlen - sb->s_blocksize;
505
		if (fibh->sbh != fibh->ebh) {
J
Jan Kara 已提交
506
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
507 508 509 510
			fibh->sbh = fibh->ebh;
		}

		block = eloc.logicalBlockNum + ((elen - 1) >>
511
						dir->i_sb->s_blocksize_bits);
512 513
		fibh->ebh = udf_bread(dir, f_pos >> (dir->i_sb->s_blocksize_bits - 2), 1, err);
		if (!fibh->ebh) {
J
Jan Kara 已提交
514 515
			brelse(epos.bh);
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
516 517 518
			return NULL;
		}

519
		if (!fibh->soffset) {
J
Jan Kara 已提交
520
			if (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
521
			    (EXT_RECORDED_ALLOCATED >> 30)) {
L
Linus Torvalds 已提交
522
				block = eloc.logicalBlockNum + ((elen - 1) >>
523 524
					dir->i_sb->s_blocksize_bits);
			} else {
525
				block++;
526
			}
L
Linus Torvalds 已提交
527

J
Jan Kara 已提交
528
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
529 530
			fibh->sbh = fibh->ebh;
			fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
531
		} else {
L
Linus Torvalds 已提交
532
			fi = (struct fileIdentDesc *)
533
				(fibh->sbh->b_data + sb->s_blocksize + fibh->soffset);
L
Linus Torvalds 已提交
534 535 536 537 538
		}
	}

	memset(cfi, 0, sizeof(struct fileIdentDesc));
	if (UDF_SB_UDFREV(sb) >= 0x0200)
539
		udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block, sizeof(tag));
L
Linus Torvalds 已提交
540
	else
541
		udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block, sizeof(tag));
L
Linus Torvalds 已提交
542 543 544
	cfi->fileVersionNum = cpu_to_le16(1);
	cfi->lengthFileIdent = namelen;
	cfi->lengthOfImpUse = cpu_to_le16(0);
545
	if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
J
Jan Kara 已提交
546
		brelse(epos.bh);
L
Linus Torvalds 已提交
547 548 549 550 551
		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;
552
	} else {
J
Jan Kara 已提交
553
		brelse(epos.bh);
L
Linus Torvalds 已提交
554
		if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
555 556
			brelse(fibh->ebh);
		brelse(fibh->sbh);
L
Linus Torvalds 已提交
557 558 559 560 561 562
		*err = -EIO;
		return NULL;
	}
}

static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
563 564
			    struct udf_fileident_bh *fibh,
			    struct fileIdentDesc *cfi)
L
Linus Torvalds 已提交
565 566
{
	cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
567

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

L
Linus Torvalds 已提交
571 572 573
	return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
}

574 575
static int udf_create(struct inode *dir, struct dentry *dentry, int mode,
		      struct nameidata *nd)
L
Linus Torvalds 已提交
576 577 578 579 580 581 582 583
{
	struct udf_fileident_bh fibh;
	struct inode *inode;
	struct fileIdentDesc cfi, *fi;
	int err;

	lock_kernel();
	inode = udf_new_inode(dir, mode, &err);
584
	if (!inode) {
L
Linus Torvalds 已提交
585 586 587 588 589 590 591 592 593 594 595 596 597
		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);

598 599
	if (!(fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err))) {
		inode->i_nlink--;
L
Linus Torvalds 已提交
600 601 602 603 604 605 606
		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));
607 608
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(inode) & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
609
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
610
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
611 612 613
		mark_inode_dirty(dir);
	}
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
614 615
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
616 617
	unlock_kernel();
	d_instantiate(dentry, inode);
618

L
Linus Torvalds 已提交
619 620 621
	return 0;
}

622 623
static int udf_mknod(struct inode *dir, struct dentry *dentry, int mode,
		     dev_t rdev)
L
Linus Torvalds 已提交
624
{
625
	struct inode *inode;
L
Linus Torvalds 已提交
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
	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);
641 642
	if (!(fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err))) {
		inode->i_nlink--;
L
Linus Torvalds 已提交
643 644 645 646 647 648 649
		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));
650 651
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(inode) & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
652
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
653
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
654 655 656 657 658
		mark_inode_dirty(dir);
	}
	mark_inode_dirty(inode);

	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
659 660
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
661 662
	d_instantiate(dentry, inode);
	err = 0;
663 664

out:
L
Linus Torvalds 已提交
665 666 667 668
	unlock_kernel();
	return err;
}

669
static int udf_mkdir(struct inode *dir, struct dentry *dentry, int mode)
L
Linus Torvalds 已提交
670
{
671
	struct inode *inode;
L
Linus Torvalds 已提交
672 673 674 675 676 677
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;

	lock_kernel();
	err = -EMLINK;
678
	if (dir->i_nlink >= (256 << sizeof(dir->i_nlink)) - 1)
L
Linus Torvalds 已提交
679 680 681 682 683 684 685 686 687
		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;
688
	if (!(fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err))) {
L
Linus Torvalds 已提交
689 690 691 692 693 694 695 696
		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));
697 698 699
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(dir) & 0x00000000FFFFFFFFUL);
	cfi.fileCharacteristics = FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
L
Linus Torvalds 已提交
700
	udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
J
Jan Kara 已提交
701
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
702 703 704 705 706
	inode->i_mode = S_IFDIR | mode;
	if (dir->i_mode & S_ISGID)
		inode->i_mode |= S_ISGID;
	mark_inode_dirty(inode);

707
	if (!(fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err))) {
L
Linus Torvalds 已提交
708 709 710 711 712 713 714
		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));
715 716
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
		cpu_to_le32(UDF_I_UNIQUE(inode) & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
717 718
	cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
719
	inc_nlink(dir);
L
Linus Torvalds 已提交
720 721 722
	mark_inode_dirty(dir);
	d_instantiate(dentry, inode);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
723 724
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
725
	err = 0;
726 727

out:
L
Linus Torvalds 已提交
728 729 730 731 732 733 734 735 736 737 738
	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 已提交
739 740
	kernel_lb_addr eloc;
	uint32_t elen;
741
	sector_t offset;
742
	struct extent_position epos = {};
L
Linus Torvalds 已提交
743 744 745

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

746
	fibh.soffset = fibh.eoffset = (f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
L
Linus Torvalds 已提交
747

748
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
749
		fibh.sbh = fibh.ebh = NULL;
750 751
	} 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 已提交
752
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
753
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
L
Linus Torvalds 已提交
754
			if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
755
				epos.offset -= sizeof(short_ad);
L
Linus Torvalds 已提交
756
			else if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
757
				epos.offset -= sizeof(long_ad);
758
		} else {
L
Linus Torvalds 已提交
759
			offset = 0;
760
		}
L
Linus Torvalds 已提交
761

762
		if (!(fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block))) {
J
Jan Kara 已提交
763
			brelse(epos.bh);
L
Linus Torvalds 已提交
764 765
			return 0;
		}
766
	} else {
J
Jan Kara 已提交
767
		brelse(epos.bh);
L
Linus Torvalds 已提交
768 769 770
		return 0;
	}

771 772 773 774
	while ((f_pos < size)) {
		fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
					&elen, &offset);
		if (!fi) {
L
Linus Torvalds 已提交
775
			if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
776 777 778
				brelse(fibh.ebh);
			brelse(fibh.sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
779 780 781
			return 0;
		}

782 783
		if (cfi.lengthFileIdent &&
		    (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
L
Linus Torvalds 已提交
784
			if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
785 786 787
				brelse(fibh.ebh);
			brelse(fibh.sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
788 789 790
			return 0;
		}
	}
791

L
Linus Torvalds 已提交
792
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
793 794 795
		brelse(fibh.ebh);
	brelse(fibh.sbh);
	brelse(epos.bh);
796

L
Linus Torvalds 已提交
797 798 799
	return 1;
}

800
static int udf_rmdir(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
801 802
{
	int retval;
803
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
	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",
826 827
			    "empty directory has nlink != 2 (%d)",
			    inode->i_nlink);
828
	clear_nlink(inode);
L
Linus Torvalds 已提交
829
	inode->i_size = 0;
830
	inode_dec_link_count(dir);
831
	inode->i_ctime = dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
L
Linus Torvalds 已提交
832 833
	mark_inode_dirty(dir);

834
end_rmdir:
L
Linus Torvalds 已提交
835
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
836 837
		brelse(fibh.ebh);
	brelse(fibh.sbh);
838 839

out:
L
Linus Torvalds 已提交
840 841 842 843
	unlock_kernel();
	return retval;
}

844
static int udf_unlink(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
845 846
{
	int retval;
847
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
	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;

864
	if (!inode->i_nlink) {
L
Linus Torvalds 已提交
865
		udf_debug("Deleting nonexistent file (%lu), %d\n",
866
			  inode->i_ino, inode->i_nlink);
L
Linus Torvalds 已提交
867 868 869 870 871 872 873
		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);
874
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
875 876 877
	inode->i_ctime = dir->i_ctime;
	retval = 0;

878
end_unlink:
L
Linus Torvalds 已提交
879
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
880 881
		brelse(fibh.ebh);
	brelse(fibh.sbh);
882 883

out:
L
Linus Torvalds 已提交
884 885 886 887
	unlock_kernel();
	return retval;
}

888 889
static int udf_symlink(struct inode *dir, struct dentry *dentry,
		       const char *symname)
L
Linus Torvalds 已提交
890
{
891
	struct inode *inode;
L
Linus Torvalds 已提交
892 893 894
	struct pathComponent *pc;
	char *compstart;
	struct udf_fileident_bh fibh;
895
	struct extent_position epos = {};
L
Linus Torvalds 已提交
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
	int eoffset, elen = 0;
	struct fileIdentDesc *fi;
	struct fileIdentDesc cfi;
	char *ea;
	int err;
	int block;
	char name[UDF_NAME_LEN];
	int namelen;

	lock_kernel();
	if (!(inode = udf_new_inode(dir, S_IFLNK, &err)))
		goto out;

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

913
	if (UDF_I_ALLOCTYPE(inode) != ICBTAG_FLAG_AD_IN_ICB) {
J
Jan Kara 已提交
914 915
		kernel_lb_addr eloc;
		uint32_t elen;
L
Linus Torvalds 已提交
916 917

		block = udf_new_block(inode->i_sb, inode,
918 919
				      UDF_I_LOCATION(inode).partitionReferenceNum,
				      UDF_I_LOCATION(inode).logicalBlockNum, &err);
L
Linus Torvalds 已提交
920 921
		if (!block)
			goto out_no_entry;
J
Jan Kara 已提交
922 923 924
		epos.block = UDF_I_LOCATION(inode);
		epos.offset = udf_file_entry_alloc_offset(inode);
		epos.bh = NULL;
L
Linus Torvalds 已提交
925
		eloc.logicalBlockNum = block;
926
		eloc.partitionReferenceNum = UDF_I_LOCATION(inode).partitionReferenceNum;
L
Linus Torvalds 已提交
927 928
		elen = inode->i_sb->s_blocksize;
		UDF_I_LENEXTENTS(inode) = elen;
J
Jan Kara 已提交
929
		udf_add_aext(inode, &epos, eloc, elen, 0);
J
Jan Kara 已提交
930
		brelse(epos.bh);
L
Linus Torvalds 已提交
931 932

		block = udf_get_pblock(inode->i_sb, block,
933
				       UDF_I_LOCATION(inode).partitionReferenceNum, 0);
J
Jan Kara 已提交
934 935 936 937 938 939 940
		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);
941
	} else {
L
Linus Torvalds 已提交
942
		ea = UDF_I_DATA(inode) + UDF_I_LENEATTR(inode);
943
	}
L
Linus Torvalds 已提交
944 945 946 947

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

948 949
	if (*symname == '/') {
		do {
L
Linus Torvalds 已提交
950 951 952 953 954 955 956 957 958 959 960 961
			symname++;
		} while (*symname == '/');

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

	err = -ENAMETOOLONG;

962
	while (*symname) {
L
Linus Torvalds 已提交
963 964 965 966 967 968 969
		if (elen + sizeof(struct pathComponent) > eoffset)
			goto out_no_entry;

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

		compstart = (char *)symname;

970
		do {
L
Linus Torvalds 已提交
971 972 973 974 975 976
			symname++;
		} while (*symname && *symname != '/');

		pc->componentType = 5;
		pc->lengthComponentIdent = 0;
		pc->componentFileVersionNum = 0;
977 978
		if (compstart[0] == '.') {
			if ((symname - compstart) == 1)
L
Linus Torvalds 已提交
979
				pc->componentType = 4;
980
			else if ((symname - compstart) == 2 && compstart[1] == '.')
L
Linus Torvalds 已提交
981 982 983
				pc->componentType = 3;
		}

984
		if (pc->componentType == 5) {
985 986 987
			namelen = udf_put_filename(inode->i_sb, compstart, name,
						   symname - compstart);
			if (!namelen)
L
Linus Torvalds 已提交
988 989
				goto out_no_entry;

990
			if (elen + sizeof(struct pathComponent) + namelen > eoffset)
L
Linus Torvalds 已提交
991 992 993 994 995 996 997 998 999
				goto out_no_entry;
			else
				pc->lengthComponentIdent = namelen;

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

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

1000 1001
		if (*symname) {
			do {
L
Linus Torvalds 已提交
1002 1003 1004 1005 1006
				symname++;
			} while (*symname == '/');
		}
	}

J
Jan Kara 已提交
1007
	brelse(epos.bh);
L
Linus Torvalds 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016
	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);

	if (!(fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err)))
		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));
1017
	if (UDF_SB_LVIDBH(inode->i_sb)) {
L
Linus Torvalds 已提交
1018 1019
		struct logicalVolHeaderDesc *lvhd;
		uint64_t uniqueID;
1020
		lvhd = (struct logicalVolHeaderDesc *)(UDF_SB_LVID(inode->i_sb)->logicalVolContentsUse);
L
Linus Torvalds 已提交
1021
		uniqueID = le64_to_cpu(lvhd->uniqueID);
1022 1023
		*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
			cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
1024 1025 1026 1027 1028 1029
		if (!(++uniqueID & 0x00000000FFFFFFFFUL))
			uniqueID += 16;
		lvhd->uniqueID = cpu_to_le64(uniqueID);
		mark_buffer_dirty(UDF_SB_LVIDBH(inode->i_sb));
	}
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
1030
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
1031 1032 1033
		mark_inode_dirty(dir);
	}
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
1034 1035
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
1036 1037 1038
	d_instantiate(dentry, inode);
	err = 0;

1039
out:
L
Linus Torvalds 已提交
1040 1041 1042
	unlock_kernel();
	return err;

1043
out_no_entry:
1044
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
1045 1046 1047 1048
	iput(inode);
	goto out;
}

1049 1050
static int udf_link(struct dentry *old_dentry, struct inode *dir,
		    struct dentry *dentry)
L
Linus Torvalds 已提交
1051 1052 1053 1054 1055 1056 1057
{
	struct inode *inode = old_dentry->d_inode;
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;

	lock_kernel();
1058
	if (inode->i_nlink >= (256 << sizeof(inode->i_nlink)) - 1) {
L
Linus Torvalds 已提交
1059 1060 1061 1062
		unlock_kernel();
		return -EMLINK;
	}

1063
	if (!(fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err))) {
L
Linus Torvalds 已提交
1064 1065 1066 1067 1068
		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));
1069
	if (UDF_SB_LVIDBH(inode->i_sb)) {
L
Linus Torvalds 已提交
1070 1071
		struct logicalVolHeaderDesc *lvhd;
		uint64_t uniqueID;
1072
		lvhd = (struct logicalVolHeaderDesc *)(UDF_SB_LVID(inode->i_sb)->logicalVolContentsUse);
L
Linus Torvalds 已提交
1073
		uniqueID = le64_to_cpu(lvhd->uniqueID);
1074 1075
		*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
			cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
1076 1077 1078 1079 1080 1081
		if (!(++uniqueID & 0x00000000FFFFFFFFUL))
			uniqueID += 16;
		lvhd->uniqueID = cpu_to_le64(uniqueID);
		mark_buffer_dirty(UDF_SB_LVIDBH(inode->i_sb));
	}
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
1082
	if (UDF_I_ALLOCTYPE(dir) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
1083 1084
		mark_inode_dirty(dir);
	}
1085

L
Linus Torvalds 已提交
1086
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
1087 1088
		brelse(fibh.ebh);
	brelse(fibh.sbh);
1089
	inc_nlink(inode);
L
Linus Torvalds 已提交
1090 1091 1092 1093 1094
	inode->i_ctime = current_fs_time(inode->i_sb);
	mark_inode_dirty(inode);
	atomic_inc(&inode->i_count);
	d_instantiate(dentry, inode);
	unlock_kernel();
1095

L
Linus Torvalds 已提交
1096 1097 1098 1099 1100 1101
	return 0;
}

/* Anybody can rename anything with this: the permission checks are left to the
 * higher-level routines.
 */
1102 1103
static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
		      struct inode *new_dir, struct dentry *new_dentry)
L
Linus Torvalds 已提交
1104
{
1105 1106
	struct inode *old_inode = old_dentry->d_inode;
	struct inode *new_inode = new_dentry->d_inode;
L
Linus Torvalds 已提交
1107
	struct udf_fileident_bh ofibh, nfibh;
1108
	struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL, ocfi, ncfi;
L
Linus Torvalds 已提交
1109 1110 1111 1112 1113
	struct buffer_head *dir_bh = NULL;
	int retval = -ENOENT;
	kernel_lb_addr tloc;

	lock_kernel();
1114
	if ((ofi = udf_find_entry(old_dir, old_dentry, &ofibh, &ocfi))) {
L
Linus Torvalds 已提交
1115
		if (ofibh.sbh != ofibh.ebh)
J
Jan Kara 已提交
1116 1117
			brelse(ofibh.ebh);
		brelse(ofibh.sbh);
L
Linus Torvalds 已提交
1118 1119 1120
	}
	tloc = lelb_to_cpu(ocfi.icb.extLocation);
	if (!ofi || udf_get_lb_pblock(old_dir->i_sb, tloc, 0)
1121
	    != old_inode->i_ino)
L
Linus Torvalds 已提交
1122 1123 1124
		goto end_rename;

	nfi = udf_find_entry(new_dir, new_dentry, &nfibh, &ncfi);
1125 1126
	if (nfi) {
		if (!new_inode) {
L
Linus Torvalds 已提交
1127
			if (nfibh.sbh != nfibh.ebh)
J
Jan Kara 已提交
1128 1129
				brelse(nfibh.ebh);
			brelse(nfibh.sbh);
L
Linus Torvalds 已提交
1130 1131 1132
			nfi = NULL;
		}
	}
1133
	if (S_ISDIR(old_inode->i_mode)) {
L
Linus Torvalds 已提交
1134 1135
		uint32_t offset = udf_ext0_offset(old_inode);

1136
		if (new_inode) {
L
Linus Torvalds 已提交
1137 1138 1139 1140 1141
			retval = -ENOTEMPTY;
			if (!empty_dir(new_inode))
				goto end_rename;
		}
		retval = -EIO;
1142
		if (UDF_I_ALLOCTYPE(old_inode) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
1143
			dir_fi = udf_get_fileident(UDF_I_DATA(old_inode) -
1144
						   (UDF_I_EFE(old_inode) ?
1145
						    sizeof(struct extendedFileEntry) :
1146
						    sizeof(struct fileEntry)),
1147
						   old_inode->i_sb->s_blocksize, &offset);
1148
		} else {
L
Linus Torvalds 已提交
1149 1150 1151
			dir_bh = udf_bread(old_inode, 0, 0, &retval);
			if (!dir_bh)
				goto end_rename;
1152
			dir_fi = udf_get_fileident(dir_bh->b_data, old_inode->i_sb->s_blocksize, &offset);
L
Linus Torvalds 已提交
1153 1154 1155 1156
		}
		if (!dir_fi)
			goto end_rename;
		tloc = lelb_to_cpu(dir_fi->icb.extLocation);
1157
		if (udf_get_lb_pblock(old_inode->i_sb, tloc, 0) != old_dir->i_ino)
L
Linus Torvalds 已提交
1158 1159 1160
			goto end_rename;

		retval = -EMLINK;
1161
		if (!new_inode && new_dir->i_nlink >= (256 << sizeof(new_dir->i_nlink)) - 1)
L
Linus Torvalds 已提交
1162 1163
			goto end_rename;
	}
1164
	if (!nfi) {
1165
		nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi, &retval);
L
Linus Torvalds 已提交
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
		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);

1189
	if (new_inode) {
L
Linus Torvalds 已提交
1190
		new_inode->i_ctime = current_fs_time(new_inode->i_sb);
1191
		inode_dec_link_count(new_inode);
L
Linus Torvalds 已提交
1192 1193 1194 1195
	}
	old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
	mark_inode_dirty(old_dir);

1196
	if (dir_fi) {
L
Linus Torvalds 已提交
1197 1198
		dir_fi->icb.extLocation = cpu_to_lelb(UDF_I_LOCATION(new_dir));
		udf_update_tag((char *)dir_fi, (sizeof(struct fileIdentDesc) +
1199
						le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
1200
		if (UDF_I_ALLOCTYPE(old_inode) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
1201
			mark_inode_dirty(old_inode);
1202
		} else {
L
Linus Torvalds 已提交
1203
			mark_buffer_dirty_inode(dir_bh, old_inode);
1204
		}
1205
		inode_dec_link_count(old_dir);
1206
		if (new_inode) {
1207
			inode_dec_link_count(new_inode);
1208
		} else {
1209
			inc_nlink(new_dir);
L
Linus Torvalds 已提交
1210 1211 1212 1213
			mark_inode_dirty(new_dir);
		}
	}

1214
	if (ofi) {
L
Linus Torvalds 已提交
1215
		if (ofibh.sbh != ofibh.ebh)
J
Jan Kara 已提交
1216 1217
			brelse(ofibh.ebh);
		brelse(ofibh.sbh);
L
Linus Torvalds 已提交
1218 1219 1220 1221
	}

	retval = 0;

1222
end_rename:
J
Jan Kara 已提交
1223
	brelse(dir_bh);
1224
	if (nfi) {
L
Linus Torvalds 已提交
1225
		if (nfibh.sbh != nfibh.ebh)
J
Jan Kara 已提交
1226 1227
			brelse(nfibh.ebh);
		brelse(nfibh.sbh);
L
Linus Torvalds 已提交
1228 1229
	}
	unlock_kernel();
1230

L
Linus Torvalds 已提交
1231 1232 1233
	return retval;
}

1234
const struct inode_operations udf_dir_inode_operations = {
1235 1236 1237 1238 1239 1240 1241 1242 1243
	.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 已提交
1244
};