namei.c 32.9 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
{
	uint16_t crclen = fibh->eoffset - fibh->soffset - sizeof(tag);
	uint16_t crc;
	int offset;
	uint16_t liu = le16_to_cpu(cfi->lengthOfImpUse);
	uint8_t lfi = cfi->lengthFileIdent;
	int padlen = fibh->eoffset - fibh->soffset - liu - lfi -
54
		sizeof(struct fileIdentDesc);
L
Linus Torvalds 已提交
55 56
	int adinicb = 0;

57
	if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
58 59 60 61
		adinicb = 1;

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

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

	offset += liu;

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

	offset += lfi;

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

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

	cfi->descTag.descCRC = cpu_to_le16(crc);
	cfi->descTag.descCRCLength = cpu_to_le16(crclen);
123
	cfi->descTag.tagChecksum = udf_tag_checksum(&cfi->descTag);
L
Linus Torvalds 已提交
124

125
	if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) {
M
Marcin Slusarz 已提交
126 127
		memcpy((uint8_t *)sfi, (uint8_t *)cfi,
			sizeof(struct fileIdentDesc));
128 129 130
	} else {
		memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset);
		memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset,
131
		       sizeof(struct fileIdentDesc) + fibh->soffset);
L
Linus Torvalds 已提交
132 133
	}

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

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

163
	size = (udf_ext0_offset(dir) + dir->i_size) >> 2;
L
Linus Torvalds 已提交
164 165
	f_pos = (udf_ext0_offset(dir) >> 2);

M
Marcin Slusarz 已提交
166 167
	fibh->soffset = fibh->eoffset =
		(f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
168
	if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
169
		fibh->sbh = fibh->ebh = NULL;
M
Marcin Slusarz 已提交
170 171 172
	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 已提交
173
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
174
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
175
			if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
176
				epos.offset -= sizeof(short_ad);
177
			else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
178
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
179
		} else
L
Linus Torvalds 已提交
180 181
			offset = 0;

M
Marcin Slusarz 已提交
182 183
		fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
		if (!fibh->sbh) {
J
Jan Kara 已提交
184
			brelse(epos.bh);
L
Linus Torvalds 已提交
185 186
			return NULL;
		}
187
	} else {
J
Jan Kara 已提交
188
		brelse(epos.bh);
L
Linus Torvalds 已提交
189 190 191
		return NULL;
	}

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

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

206
		if (fibh->sbh == fibh->ebh) {
L
Linus Torvalds 已提交
207
			nameptr = fi->fileIdent + liu;
208
		} else {
L
Linus Torvalds 已提交
209 210
			int poffset;	/* Unpaded ending offset */

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

M
Marcin Slusarz 已提交
214 215 216 217
			if (poffset >= lfi)
				nameptr = (uint8_t *)(fibh->ebh->b_data +
						      poffset - lfi);
			else {
L
Linus Torvalds 已提交
218
				nameptr = fname;
M
Marcin Slusarz 已提交
219 220 221 222
				memcpy(nameptr, fi->fileIdent + liu,
					lfi - poffset);
				memcpy(nameptr + lfi - poffset,
					fibh->ebh->b_data, poffset);
L
Linus Torvalds 已提交
223 224 225
			}
		}

226 227
		if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
			if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
L
Linus Torvalds 已提交
228 229
				continue;
		}
230 231 232

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

		if (!lfi)
			continue;

M
Marcin Slusarz 已提交
239 240 241 242 243
		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 已提交
244 245
		}
	}
246

L
Linus Torvalds 已提交
247
	if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
248 249 250
		brelse(fibh->ebh);
	brelse(fibh->sbh);
	brelse(epos.bh);
251

L
Linus Torvalds 已提交
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 278 279 280 281 282 283 284 285 286 287
	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.
 */

288 289
static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
				 struct nameidata *nd)
L
Linus Torvalds 已提交
290 291
{
	struct inode *inode = NULL;
292
	struct fileIdentDesc cfi;
L
Linus Torvalds 已提交
293 294
	struct udf_fileident_bh fibh;

295
	if (dentry->d_name.len > UDF_NAME_LEN - 2)
L
Linus Torvalds 已提交
296 297 298 299 300
		return ERR_PTR(-ENAMETOOLONG);

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

316
	if (udf_find_entry(dir, dentry, &fibh, &cfi)) {
L
Linus Torvalds 已提交
317
		if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
318 319
			brelse(fibh.ebh);
		brelse(fibh.sbh);
L
Linus Torvalds 已提交
320 321

		inode = udf_iget(dir->i_sb, lelb_to_cpu(cfi.icb.extLocation));
322
		if (!inode) {
L
Linus Torvalds 已提交
323 324 325 326 327 328
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
	}
	unlock_kernel();
	d_add(dentry, inode);
329

L
Linus Torvalds 已提交
330 331 332
	return NULL;
}

333 334 335 336
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 已提交
337
{
M
Marcin Slusarz 已提交
338
	struct super_block *sb = dir->i_sb;
339
	struct fileIdentDesc *fi = NULL;
L
Linus Torvalds 已提交
340 341 342 343 344 345 346 347 348 349
	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 已提交
350 351
	kernel_lb_addr eloc;
	uint32_t elen;
352
	sector_t offset;
353
	struct extent_position epos = {};
354
	struct udf_inode_info *dinfo;
L
Linus Torvalds 已提交
355

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

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

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

M
Marcin Slusarz 已提交
375 376
	fibh->soffset = fibh->eoffset =
			(f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
377 378
	dinfo = UDF_I(dir);
	if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
379
		fibh->sbh = fibh->ebh = NULL;
M
Marcin Slusarz 已提交
380 381 382
	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 已提交
383
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
384
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
385
			if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
386
				epos.offset -= sizeof(short_ad);
387
			else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
388
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
389
		} else
L
Linus Torvalds 已提交
390 391
			offset = 0;

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

399
		block = dinfo->i_location.logicalBlockNum;
L
Linus Torvalds 已提交
400

401
	} else {
402
		block = udf_get_lb_pblock(dir->i_sb, dinfo->i_location, 0);
L
Linus Torvalds 已提交
403 404 405 406 407
		fibh->sbh = fibh->ebh = NULL;
		fibh->soffset = fibh->eoffset = sb->s_blocksize;
		goto add;
	}

408 409 410
	while ((f_pos < size)) {
		fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
					&elen, &offset);
L
Linus Torvalds 已提交
411

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

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

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

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

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

444
		if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
M
Marcin Slusarz 已提交
445 446
			if (((sizeof(struct fileIdentDesc) +
					liu + lfi + 3) & ~3) == nfidlen) {
J
Jan Kara 已提交
447
				brelse(epos.bh);
L
Linus Torvalds 已提交
448 449 450 451 452
				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 已提交
453 454
				if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
						  name))
L
Linus Torvalds 已提交
455
					return fi;
M
Marcin Slusarz 已提交
456
				else {
L
Linus Torvalds 已提交
457 458 459 460 461 462 463 464 465
					*err = -EIO;
					return NULL;
				}
			}
		}

		if (!lfi || !dentry)
			continue;

M
Marcin Slusarz 已提交
466 467 468
		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 已提交
469
			if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
470 471 472
				brelse(fibh->ebh);
			brelse(fibh->sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
473 474 475 476 477
			*err = -EEXIST;
			return NULL;
		}
	}

478
add:
L
Linus Torvalds 已提交
479 480
	f_pos += nfidlen;

481
	if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
482
	    sb->s_blocksize - fibh->eoffset < nfidlen) {
J
Jan Kara 已提交
483
		brelse(epos.bh);
J
Jan Kara 已提交
484
		epos.bh = NULL;
L
Linus Torvalds 已提交
485 486 487 488
		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 已提交
489 490
			brelse(fibh->ebh);
		brelse(fibh->sbh);
M
Marcin Slusarz 已提交
491 492 493
		fibh->sbh = fibh->ebh =
				udf_expand_dir_adinicb(dir, &block, err);
		if (!fibh->sbh)
L
Linus Torvalds 已提交
494
			return NULL;
495
		epos.block = dinfo->i_location;
L
Linus Torvalds 已提交
496
		eloc.logicalBlockNum = block;
M
Marcin Slusarz 已提交
497
		eloc.partitionReferenceNum =
498
				dinfo->i_location.partitionReferenceNum;
L
Linus Torvalds 已提交
499
		elen = dir->i_sb->s_blocksize;
J
Jan Kara 已提交
500
		epos.offset = udf_file_entry_alloc_offset(dir);
501
		if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
502
			epos.offset += sizeof(short_ad);
503
		else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
504
			epos.offset += sizeof(long_ad);
L
Linus Torvalds 已提交
505 506
	}

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

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

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

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

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

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

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

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

L
Linus Torvalds 已提交
602 603 604
	return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
}

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

	lock_kernel();
	inode = udf_new_inode(dir, mode, &err);
616
	if (!inode) {
L
Linus Torvalds 已提交
617 618 619 620
		unlock_kernel();
		return err;
	}

621 622
	iinfo = UDF_I(inode);
	if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
623 624 625 626 627 628 629 630
		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 已提交
631 632
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
633
		inode->i_nlink--;
L
Linus Torvalds 已提交
634 635 636 637 638 639
		mark_inode_dirty(inode);
		iput(inode);
		unlock_kernel();
		return err;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
640
	cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
641
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
642
		cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
643
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
644
	if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
645 646
		mark_inode_dirty(dir);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
647 648
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
649 650
	unlock_kernel();
	d_instantiate(dentry, inode);
651

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

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

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

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

673
	iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
674 675
	inode->i_uid = current->fsuid;
	init_special_inode(inode, mode, rdev);
M
Marcin Slusarz 已提交
676 677
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
678
		inode->i_nlink--;
L
Linus Torvalds 已提交
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);
685
	cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
686
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
687
		cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
688
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
689
	if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
690 691 692 693
		mark_inode_dirty(dir);
	mark_inode_dirty(inode);

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

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

704
static int udf_mkdir(struct inode *dir, struct dentry *dentry, int mode)
L
Linus Torvalds 已提交
705
{
706
	struct inode *inode;
L
Linus Torvalds 已提交
707 708 709
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;
710 711
	struct udf_inode_info *dinfo = UDF_I(dir);
	struct udf_inode_info *iinfo;
L
Linus Torvalds 已提交
712 713 714

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

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

723
	iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
724 725
	inode->i_op = &udf_dir_inode_operations;
	inode->i_fop = &udf_dir_operations;
M
Marcin Slusarz 已提交
726 727
	fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
	if (!fi) {
L
Linus Torvalds 已提交
728 729 730 731 732 733 734
		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);
735
	cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
736
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
737
		cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
M
Marcin Slusarz 已提交
738 739
	cfi.fileCharacteristics =
			FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
L
Linus Torvalds 已提交
740
	udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
J
Jan Kara 已提交
741
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
742 743 744 745 746
	inode->i_mode = S_IFDIR | mode;
	if (dir->i_mode & S_ISGID)
		inode->i_mode |= S_ISGID;
	mark_inode_dirty(inode);

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

out:
L
Linus Torvalds 已提交
769 770 771 772 773 774 775 776 777 778 779
	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 已提交
780 781
	kernel_lb_addr eloc;
	uint32_t elen;
782
	sector_t offset;
783
	struct extent_position epos = {};
784
	struct udf_inode_info *dinfo = UDF_I(dir);
L
Linus Torvalds 已提交
785 786 787

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

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

791
	if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
792
		fibh.sbh = fibh.ebh = NULL;
M
Marcin Slusarz 已提交
793 794 795
	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 已提交
796
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
797
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
798
			if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
799
				epos.offset -= sizeof(short_ad);
800
			else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
801
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
802
		} else
L
Linus Torvalds 已提交
803 804
			offset = 0;

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

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

826 827
		if (cfi.lengthFileIdent &&
		    (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
L
Linus Torvalds 已提交
828
			if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
829 830 831
				brelse(fibh.ebh);
			brelse(fibh.sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
832 833 834
			return 0;
		}
	}
835

L
Linus Torvalds 已提交
836
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
837 838 839
		brelse(fibh.ebh);
	brelse(fibh.sbh);
	brelse(epos.bh);
840

L
Linus Torvalds 已提交
841 842 843
	return 1;
}

844
static int udf_rmdir(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 864 865 866 867 868 869
	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",
870 871
			    "empty directory has nlink != 2 (%d)",
			    inode->i_nlink);
872
	clear_nlink(inode);
L
Linus Torvalds 已提交
873
	inode->i_size = 0;
874
	inode_dec_link_count(dir);
M
Marcin Slusarz 已提交
875 876
	inode->i_ctime = dir->i_ctime = dir->i_mtime =
						current_fs_time(dir->i_sb);
L
Linus Torvalds 已提交
877 878
	mark_inode_dirty(dir);

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

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

889
static int udf_unlink(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
890 891
{
	int retval;
892
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
	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;

909
	if (!inode->i_nlink) {
L
Linus Torvalds 已提交
910
		udf_debug("Deleting nonexistent file (%lu), %d\n",
911
			  inode->i_ino, inode->i_nlink);
L
Linus Torvalds 已提交
912 913 914 915 916 917 918
		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);
919
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
920 921 922
	inode->i_ctime = dir->i_ctime;
	retval = 0;

923
end_unlink:
L
Linus Torvalds 已提交
924
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
925 926
		brelse(fibh.ebh);
	brelse(fibh.sbh);
927 928

out:
L
Linus Torvalds 已提交
929 930 931 932
	unlock_kernel();
	return retval;
}

933 934
static int udf_symlink(struct inode *dir, struct dentry *dentry,
		       const char *symname)
L
Linus Torvalds 已提交
935
{
936
	struct inode *inode;
L
Linus Torvalds 已提交
937 938 939
	struct pathComponent *pc;
	char *compstart;
	struct udf_fileident_bh fibh;
940
	struct extent_position epos = {};
L
Linus Torvalds 已提交
941 942 943 944 945 946 947 948
	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 已提交
949
	struct buffer_head *bh;
950
	struct udf_inode_info *iinfo;
L
Linus Torvalds 已提交
951 952

	lock_kernel();
M
Marcin Slusarz 已提交
953 954
	inode = udf_new_inode(dir, S_IFLNK, &err);
	if (!inode)
L
Linus Torvalds 已提交
955 956
		goto out;

957
	iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
958 959 960 961
	inode->i_mode = S_IFLNK | S_IRWXUGO;
	inode->i_data.a_ops = &udf_symlink_aops;
	inode->i_op = &page_symlink_inode_operations;

962
	if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
J
Jan Kara 已提交
963 964
		kernel_lb_addr eloc;
		uint32_t elen;
L
Linus Torvalds 已提交
965 966

		block = udf_new_block(inode->i_sb, inode,
967 968
				iinfo->i_location.partitionReferenceNum,
				iinfo->i_location.logicalBlockNum, &err);
L
Linus Torvalds 已提交
969 970
		if (!block)
			goto out_no_entry;
971
		epos.block = iinfo->i_location;
J
Jan Kara 已提交
972 973
		epos.offset = udf_file_entry_alloc_offset(inode);
		epos.bh = NULL;
L
Linus Torvalds 已提交
974
		eloc.logicalBlockNum = block;
M
Marcin Slusarz 已提交
975
		eloc.partitionReferenceNum =
976
				iinfo->i_location.partitionReferenceNum;
L
Linus Torvalds 已提交
977
		elen = inode->i_sb->s_blocksize;
978
		iinfo->i_lenExtents = elen;
J
Jan Kara 已提交
979
		udf_add_aext(inode, &epos, eloc, elen, 0);
J
Jan Kara 已提交
980
		brelse(epos.bh);
L
Linus Torvalds 已提交
981 982

		block = udf_get_pblock(inode->i_sb, block,
983
				iinfo->i_location.partitionReferenceNum,
M
Marcin Slusarz 已提交
984
				0);
J
Jan Kara 已提交
985 986 987 988 989 990 991
		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);
992 993
	} else
		ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
L
Linus Torvalds 已提交
994 995 996 997

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

998 999
	if (*symname == '/') {
		do {
L
Linus Torvalds 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
			symname++;
		} while (*symname == '/');

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

	err = -ENAMETOOLONG;

1012
	while (*symname) {
L
Linus Torvalds 已提交
1013 1014 1015 1016 1017 1018 1019
		if (elen + sizeof(struct pathComponent) > eoffset)
			goto out_no_entry;

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

		compstart = (char *)symname;

1020
		do {
L
Linus Torvalds 已提交
1021 1022 1023 1024 1025 1026
			symname++;
		} while (*symname && *symname != '/');

		pc->componentType = 5;
		pc->lengthComponentIdent = 0;
		pc->componentFileVersionNum = 0;
1027 1028
		if (compstart[0] == '.') {
			if ((symname - compstart) == 1)
L
Linus Torvalds 已提交
1029
				pc->componentType = 4;
M
Marcin Slusarz 已提交
1030 1031
			else if ((symname - compstart) == 2 &&
					compstart[1] == '.')
L
Linus Torvalds 已提交
1032 1033 1034
				pc->componentType = 3;
		}

1035
		if (pc->componentType == 5) {
1036 1037 1038
			namelen = udf_put_filename(inode->i_sb, compstart, name,
						   symname - compstart);
			if (!namelen)
L
Linus Torvalds 已提交
1039 1040
				goto out_no_entry;

M
Marcin Slusarz 已提交
1041 1042
			if (elen + sizeof(struct pathComponent) + namelen >
					eoffset)
L
Linus Torvalds 已提交
1043 1044 1045 1046 1047 1048 1049 1050 1051
				goto out_no_entry;
			else
				pc->lengthComponentIdent = namelen;

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

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

1052 1053
		if (*symname) {
			do {
L
Linus Torvalds 已提交
1054 1055 1056 1057 1058
				symname++;
			} while (*symname == '/');
		}
	}

J
Jan Kara 已提交
1059
	brelse(epos.bh);
L
Linus Torvalds 已提交
1060
	inode->i_size = elen;
1061 1062
	if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
		iinfo->i_lenAlloc = inode->i_size;
L
Linus Torvalds 已提交
1063 1064
	mark_inode_dirty(inode);

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

1095
out:
L
Linus Torvalds 已提交
1096 1097 1098
	unlock_kernel();
	return err;

1099
out_no_entry:
1100
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
1101 1102 1103 1104
	iput(inode);
	goto out;
}

1105 1106
static int udf_link(struct dentry *old_dentry, struct inode *dir,
		    struct dentry *dentry)
L
Linus Torvalds 已提交
1107 1108 1109 1110 1111
{
	struct inode *inode = old_dentry->d_inode;
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;
M
Marcin Slusarz 已提交
1112
	struct buffer_head *bh;
L
Linus Torvalds 已提交
1113 1114

	lock_kernel();
1115
	if (inode->i_nlink >= (256 << sizeof(inode->i_nlink)) - 1) {
L
Linus Torvalds 已提交
1116 1117 1118 1119
		unlock_kernel();
		return -EMLINK;
	}

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

L
Linus Torvalds 已提交
1147
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
1148 1149
		brelse(fibh.ebh);
	brelse(fibh.sbh);
1150
	inc_nlink(inode);
L
Linus Torvalds 已提交
1151 1152 1153 1154 1155
	inode->i_ctime = current_fs_time(inode->i_sb);
	mark_inode_dirty(inode);
	atomic_inc(&inode->i_count);
	d_instantiate(dentry, inode);
	unlock_kernel();
1156

L
Linus Torvalds 已提交
1157 1158 1159 1160 1161 1162
	return 0;
}

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

	lock_kernel();
M
Marcin Slusarz 已提交
1177 1178
	ofi = udf_find_entry(old_dir, old_dentry, &ofibh, &ocfi);
	if (ofi) {
L
Linus Torvalds 已提交
1179
		if (ofibh.sbh != ofibh.ebh)
J
Jan Kara 已提交
1180 1181
			brelse(ofibh.ebh);
		brelse(ofibh.sbh);
L
Linus Torvalds 已提交
1182 1183 1184
	}
	tloc = lelb_to_cpu(ocfi.icb.extLocation);
	if (!ofi || udf_get_lb_pblock(old_dir->i_sb, tloc, 0)
1185
	    != old_inode->i_ino)
L
Linus Torvalds 已提交
1186 1187 1188
		goto end_rename;

	nfi = udf_find_entry(new_dir, new_dentry, &nfibh, &ncfi);
1189 1190
	if (nfi) {
		if (!new_inode) {
L
Linus Torvalds 已提交
1191
			if (nfibh.sbh != nfibh.ebh)
J
Jan Kara 已提交
1192 1193
				brelse(nfibh.ebh);
			brelse(nfibh.sbh);
L
Linus Torvalds 已提交
1194 1195 1196
			nfi = NULL;
		}
	}
1197
	if (S_ISDIR(old_inode->i_mode)) {
M
Marcin Slusarz 已提交
1198
		int offset = udf_ext0_offset(old_inode);
L
Linus Torvalds 已提交
1199

1200
		if (new_inode) {
L
Linus Torvalds 已提交
1201 1202 1203 1204 1205
			retval = -ENOTEMPTY;
			if (!empty_dir(new_inode))
				goto end_rename;
		}
		retval = -EIO;
1206
		if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
M
Marcin Slusarz 已提交
1207
			dir_fi = udf_get_fileident(
1208 1209
					old_iinfo->i_ext.i_data -
					  (old_iinfo->i_efe ?
M
Marcin Slusarz 已提交
1210 1211 1212
					   sizeof(struct extendedFileEntry) :
					   sizeof(struct fileEntry)),
					old_inode->i_sb->s_blocksize, &offset);
1213
		} else {
L
Linus Torvalds 已提交
1214 1215 1216
			dir_bh = udf_bread(old_inode, 0, 0, &retval);
			if (!dir_bh)
				goto end_rename;
M
Marcin Slusarz 已提交
1217 1218
			dir_fi = udf_get_fileident(dir_bh->b_data,
					old_inode->i_sb->s_blocksize, &offset);
L
Linus Torvalds 已提交
1219 1220 1221 1222
		}
		if (!dir_fi)
			goto end_rename;
		tloc = lelb_to_cpu(dir_fi->icb.extLocation);
M
Marcin Slusarz 已提交
1223 1224
		if (udf_get_lb_pblock(old_inode->i_sb, tloc, 0) !=
				old_dir->i_ino)
L
Linus Torvalds 已提交
1225 1226 1227
			goto end_rename;

		retval = -EMLINK;
M
Marcin Slusarz 已提交
1228 1229 1230
		if (!new_inode &&
			new_dir->i_nlink >=
				(256 << sizeof(new_dir->i_nlink)) - 1)
L
Linus Torvalds 已提交
1231 1232
			goto end_rename;
	}
1233
	if (!nfi) {
M
Marcin Slusarz 已提交
1234 1235
		nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
				    &retval);
L
Linus Torvalds 已提交
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
		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);

1259
	if (new_inode) {
L
Linus Torvalds 已提交
1260
		new_inode->i_ctime = current_fs_time(new_inode->i_sb);
1261
		inode_dec_link_count(new_inode);
L
Linus Torvalds 已提交
1262 1263 1264 1265
	}
	old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
	mark_inode_dirty(old_dir);

1266
	if (dir_fi) {
1267
		dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
M
Marcin Slusarz 已提交
1268 1269 1270
		udf_update_tag((char *)dir_fi,
				(sizeof(struct fileIdentDesc) +
				le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
1271
		if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
1272
			mark_inode_dirty(old_inode);
M
Marcin Slusarz 已提交
1273
		else
L
Linus Torvalds 已提交
1274
			mark_buffer_dirty_inode(dir_bh, old_inode);
M
Marcin Slusarz 已提交
1275

1276
		inode_dec_link_count(old_dir);
M
Marcin Slusarz 已提交
1277
		if (new_inode)
1278
			inode_dec_link_count(new_inode);
M
Marcin Slusarz 已提交
1279
		else {
1280
			inc_nlink(new_dir);
L
Linus Torvalds 已提交
1281 1282 1283 1284
			mark_inode_dirty(new_dir);
		}
	}

1285
	if (ofi) {
L
Linus Torvalds 已提交
1286
		if (ofibh.sbh != ofibh.ebh)
J
Jan Kara 已提交
1287 1288
			brelse(ofibh.ebh);
		brelse(ofibh.sbh);
L
Linus Torvalds 已提交
1289 1290 1291 1292
	}

	retval = 0;

1293
end_rename:
J
Jan Kara 已提交
1294
	brelse(dir_bh);
1295
	if (nfi) {
L
Linus Torvalds 已提交
1296
		if (nfibh.sbh != nfibh.ebh)
J
Jan Kara 已提交
1297 1298
			brelse(nfibh.ebh);
		brelse(nfibh.sbh);
L
Linus Torvalds 已提交
1299 1300
	}
	unlock_kernel();
1301

L
Linus Torvalds 已提交
1302 1303 1304
	return retval;
}

1305
const struct inode_operations udf_dir_inode_operations = {
1306 1307 1308 1309 1310 1311 1312 1313 1314
	.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 已提交
1315
};