namei.c 31.0 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
	loff_t f_pos;
	int block, flen;
152
	char *fname = NULL;
L
Linus Torvalds 已提交
153 154 155
	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 164
	size = udf_ext0_offset(dir) + dir->i_size;
	f_pos = udf_ext0_offset(dir);
L
Linus Torvalds 已提交
165

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

M
Marcin Slusarz 已提交
181
		fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
182 183
		if (!fibh->sbh)
			goto out_err;
L
Linus Torvalds 已提交
184 185
	}

186 187 188 189
	fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
	if (!fname)
		goto out_err;

190
	while (f_pos < size) {
191 192
		fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
					&elen, &offset);
193 194
		if (!fi)
			goto out_err;
L
Linus Torvalds 已提交
195 196 197 198

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

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

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

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

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

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

		if (!lfi)
			continue;

M
Marcin Slusarz 已提交
232 233
		flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
		if (flen && udf_match(flen, fname, dentry->d_name.len,
234 235
				      dentry->d_name.name))
			goto out_ok;
L
Linus Torvalds 已提交
236
	}
237

238 239
out_err:
	fi = NULL;
L
Linus Torvalds 已提交
240
	if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
241 242
		brelse(fibh->ebh);
	brelse(fibh->sbh);
243
out_ok:
J
Jan Kara 已提交
244
	brelse(epos.bh);
245
	kfree(fname);
246

247
	return fi;
L
Linus Torvalds 已提交
248 249
}

250 251
static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
				 struct nameidata *nd)
L
Linus Torvalds 已提交
252 253
{
	struct inode *inode = NULL;
254
	struct fileIdentDesc cfi;
L
Linus Torvalds 已提交
255 256
	struct udf_fileident_bh fibh;

257
	if (dentry->d_name.len > UDF_NAME_LEN - 2)
L
Linus Torvalds 已提交
258 259 260 261 262
		return ERR_PTR(-ENAMETOOLONG);

	lock_kernel();
#ifdef UDF_RECOVERY
	/* temporary shorthand for specifying files by inode number */
263
	if (!strncmp(dentry->d_name.name, ".B=", 3)) {
264 265
		kernel_lb_addr lb = {
			.logicalBlockNum = 0,
M
Marcin Slusarz 已提交
266 267 268
			.partitionReferenceNum =
				simple_strtoul(dentry->d_name.name + 3,
						NULL, 0),
269
		};
L
Linus Torvalds 已提交
270
		inode = udf_iget(dir->i_sb, lb);
271
		if (!inode) {
L
Linus Torvalds 已提交
272 273 274
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
M
Marcin Slusarz 已提交
275
	} else
276
#endif /* UDF_RECOVERY */
L
Linus Torvalds 已提交
277

278
	if (udf_find_entry(dir, dentry, &fibh, &cfi)) {
L
Linus Torvalds 已提交
279
		if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
280 281
			brelse(fibh.ebh);
		brelse(fibh.sbh);
L
Linus Torvalds 已提交
282 283

		inode = udf_iget(dir->i_sb, lelb_to_cpu(cfi.icb.extLocation));
284
		if (!inode) {
L
Linus Torvalds 已提交
285 286 287 288 289 290
			unlock_kernel();
			return ERR_PTR(-EACCES);
		}
	}
	unlock_kernel();
	d_add(dentry, inode);
291

L
Linus Torvalds 已提交
292 293 294
	return NULL;
}

295 296 297 298
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 已提交
299
{
M
Marcin Slusarz 已提交
300
	struct super_block *sb = dir->i_sb;
301
	struct fileIdentDesc *fi = NULL;
302
	char *name = NULL;
L
Linus Torvalds 已提交
303 304
	int namelen;
	loff_t f_pos;
305
	loff_t size = udf_ext0_offset(dir) + dir->i_size;
L
Linus Torvalds 已提交
306 307 308 309
	int nfidlen;
	uint8_t lfi;
	uint16_t liu;
	int block;
J
Jan Kara 已提交
310 311
	kernel_lb_addr eloc;
	uint32_t elen;
312
	sector_t offset;
313
	struct extent_position epos = {};
314
	struct udf_inode_info *dinfo;
L
Linus Torvalds 已提交
315

316 317 318 319 320 321 322
	fibh->sbh = fibh->ebh = NULL;
	name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
	if (!name) {
		*err = -ENOMEM;
		goto out_err;
	}

323 324
	if (dentry) {
		if (!dentry->d_name.len) {
L
Linus Torvalds 已提交
325
			*err = -EINVAL;
326
			goto out_err;
L
Linus Torvalds 已提交
327
		}
M
Marcin Slusarz 已提交
328 329 330
		namelen = udf_put_filename(sb, dentry->d_name.name, name,
						 dentry->d_name.len);
		if (!namelen) {
L
Linus Torvalds 已提交
331
			*err = -ENAMETOOLONG;
332
			goto out_err;
L
Linus Torvalds 已提交
333
		}
334
	} else {
L
Linus Torvalds 已提交
335
		namelen = 0;
336
	}
L
Linus Torvalds 已提交
337 338 339

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

340
	f_pos = udf_ext0_offset(dir);
L
Linus Torvalds 已提交
341

342
	fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
343
	dinfo = UDF_I(dir);
344 345 346 347 348 349 350 351
	if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
		if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
		    &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
			block = udf_get_lb_pblock(dir->i_sb,
					dinfo->i_location, 0);
			fibh->soffset = fibh->eoffset = sb->s_blocksize;
			goto add;
		}
L
Linus Torvalds 已提交
352
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
353
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
354
			if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
355
				epos.offset -= sizeof(short_ad);
356
			else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
357
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
358
		} else
L
Linus Torvalds 已提交
359 360
			offset = 0;

M
Marcin Slusarz 已提交
361 362
		fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
		if (!fibh->sbh) {
L
Linus Torvalds 已提交
363
			*err = -EIO;
364
			goto out_err;
L
Linus Torvalds 已提交
365 366
		}

367
		block = dinfo->i_location.logicalBlockNum;
L
Linus Torvalds 已提交
368 369
	}

370
	while (f_pos < size) {
371 372
		fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
					&elen, &offset);
L
Linus Torvalds 已提交
373

374
		if (!fi) {
L
Linus Torvalds 已提交
375
			*err = -EIO;
376
			goto out_err;
L
Linus Torvalds 已提交
377 378 379 380 381
		}

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

382
		if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
M
Marcin Slusarz 已提交
383 384
			if (((sizeof(struct fileIdentDesc) +
					liu + lfi + 3) & ~3) == nfidlen) {
L
Linus Torvalds 已提交
385 386 387 388 389
				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 已提交
390 391
				if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
						  name))
392
					goto out_ok;
M
Marcin Slusarz 已提交
393
				else {
L
Linus Torvalds 已提交
394
					*err = -EIO;
395
					goto out_err;
L
Linus Torvalds 已提交
396 397 398 399 400
				}
			}
		}
	}

401
add:
J
Jan Kara 已提交
402 403 404 405 406 407 408 409
	if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
		elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
		if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
			epos.offset -= sizeof(short_ad);
		else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
			epos.offset -= sizeof(long_ad);
		udf_write_aext(dir, &epos, eloc, elen, 1);
	}
L
Linus Torvalds 已提交
410 411
	f_pos += nfidlen;

412
	if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
413
	    sb->s_blocksize - fibh->eoffset < nfidlen) {
J
Jan Kara 已提交
414
		brelse(epos.bh);
J
Jan Kara 已提交
415
		epos.bh = NULL;
L
Linus Torvalds 已提交
416 417
		fibh->soffset -= udf_ext0_offset(dir);
		fibh->eoffset -= udf_ext0_offset(dir);
418
		f_pos -= udf_ext0_offset(dir);
L
Linus Torvalds 已提交
419
		if (fibh->sbh != fibh->ebh)
J
Jan Kara 已提交
420 421
			brelse(fibh->ebh);
		brelse(fibh->sbh);
M
Marcin Slusarz 已提交
422 423 424
		fibh->sbh = fibh->ebh =
				udf_expand_dir_adinicb(dir, &block, err);
		if (!fibh->sbh)
425
			goto out_err;
426
		epos.block = dinfo->i_location;
J
Jan Kara 已提交
427
		epos.offset = udf_file_entry_alloc_offset(dir);
J
Jan Kara 已提交
428 429
		/* Load extent udf_expand_dir_adinicb() has created */
		udf_current_aext(dir, &epos, &eloc, &elen, 1);
L
Linus Torvalds 已提交
430 431
	}

432
	if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
L
Linus Torvalds 已提交
433 434
		fibh->soffset = fibh->eoffset;
		fibh->eoffset += nfidlen;
435
		if (fibh->sbh != fibh->ebh) {
J
Jan Kara 已提交
436
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
437 438 439
			fibh->sbh = fibh->ebh;
		}

440 441
		if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
			block = dinfo->i_location.logicalBlockNum;
M
Marcin Slusarz 已提交
442
			fi = (struct fileIdentDesc *)
443
					(dinfo->i_ext.i_data +
444
					 fibh->soffset -
M
Marcin Slusarz 已提交
445
					 udf_ext0_offset(dir) +
446
					 dinfo->i_lenEAttr);
447
		} else {
M
Marcin Slusarz 已提交
448 449 450 451 452
			block = eloc.logicalBlockNum +
					((elen - 1) >>
						dir->i_sb->s_blocksize_bits);
			fi = (struct fileIdentDesc *)
				(fibh->sbh->b_data + fibh->soffset);
L
Linus Torvalds 已提交
453
		}
454
	} else {
L
Linus Torvalds 已提交
455 456
		fibh->soffset = fibh->eoffset - sb->s_blocksize;
		fibh->eoffset += nfidlen - sb->s_blocksize;
457
		if (fibh->sbh != fibh->ebh) {
J
Jan Kara 已提交
458
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
459 460 461 462
			fibh->sbh = fibh->ebh;
		}

		block = eloc.logicalBlockNum + ((elen - 1) >>
463
						dir->i_sb->s_blocksize_bits);
M
Marcin Slusarz 已提交
464
		fibh->ebh = udf_bread(dir,
465
				f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
466 467
		if (!fibh->ebh)
			goto out_err;
L
Linus Torvalds 已提交
468

469
		if (!fibh->soffset) {
J
Jan Kara 已提交
470
			if (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
471
			    (EXT_RECORDED_ALLOCATED >> 30)) {
L
Linus Torvalds 已提交
472
				block = eloc.logicalBlockNum + ((elen - 1) >>
473
					dir->i_sb->s_blocksize_bits);
M
Marcin Slusarz 已提交
474
			} else
475
				block++;
L
Linus Torvalds 已提交
476

J
Jan Kara 已提交
477
			brelse(fibh->sbh);
L
Linus Torvalds 已提交
478 479
			fibh->sbh = fibh->ebh;
			fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
480
		} else {
L
Linus Torvalds 已提交
481
			fi = (struct fileIdentDesc *)
M
Marcin Slusarz 已提交
482 483
				(fibh->sbh->b_data + sb->s_blocksize +
					fibh->soffset);
L
Linus Torvalds 已提交
484 485 486 487
		}
	}

	memset(cfi, 0, sizeof(struct fileIdentDesc));
M
Marcin Slusarz 已提交
488
	if (UDF_SB(sb)->s_udfrev >= 0x0200)
M
Marcin Slusarz 已提交
489 490
		udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
			    sizeof(tag));
L
Linus Torvalds 已提交
491
	else
M
Marcin Slusarz 已提交
492 493
		udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
			    sizeof(tag));
L
Linus Torvalds 已提交
494 495 496
	cfi->fileVersionNum = cpu_to_le16(1);
	cfi->lengthFileIdent = namelen;
	cfi->lengthOfImpUse = cpu_to_le16(0);
497
	if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
L
Linus Torvalds 已提交
498
		dir->i_size += nfidlen;
499 500
		if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
			dinfo->i_lenAlloc += nfidlen;
L
Linus Torvalds 已提交
501
		mark_inode_dirty(dir);
502
		goto out_ok;
503
	} else {
L
Linus Torvalds 已提交
504
		*err = -EIO;
505
		goto out_err;
L
Linus Torvalds 已提交
506
	}
507 508 509 510 511 512 513 514 515 516

out_err:
	fi = NULL;
	if (fibh->sbh != fibh->ebh)
		brelse(fibh->ebh);
	brelse(fibh->sbh);
out_ok:
	brelse(epos.bh);
	kfree(name);
	return fi;
L
Linus Torvalds 已提交
517 518 519
}

static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
520 521
			    struct udf_fileident_bh *fibh,
			    struct fileIdentDesc *cfi)
L
Linus Torvalds 已提交
522 523
{
	cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
524

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

L
Linus Torvalds 已提交
528 529 530
	return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
}

531 532
static int udf_create(struct inode *dir, struct dentry *dentry, int mode,
		      struct nameidata *nd)
L
Linus Torvalds 已提交
533 534 535 536 537
{
	struct udf_fileident_bh fibh;
	struct inode *inode;
	struct fileIdentDesc cfi, *fi;
	int err;
538
	struct udf_inode_info *iinfo;
L
Linus Torvalds 已提交
539 540 541

	lock_kernel();
	inode = udf_new_inode(dir, mode, &err);
542
	if (!inode) {
L
Linus Torvalds 已提交
543 544 545 546
		unlock_kernel();
		return err;
	}

547 548
	iinfo = UDF_I(inode);
	if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
549 550 551 552 553 554 555 556
		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 已提交
557 558
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
559
		inode->i_nlink--;
L
Linus Torvalds 已提交
560 561 562 563 564 565
		mark_inode_dirty(inode);
		iput(inode);
		unlock_kernel();
		return err;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
566
	cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
567
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
568
		cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
569
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
570
	if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
571 572
		mark_inode_dirty(dir);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
573 574
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
575 576
	unlock_kernel();
	d_instantiate(dentry, inode);
577

L
Linus Torvalds 已提交
578 579 580
	return 0;
}

581 582
static int udf_mknod(struct inode *dir, struct dentry *dentry, int mode,
		     dev_t rdev)
L
Linus Torvalds 已提交
583
{
584
	struct inode *inode;
L
Linus Torvalds 已提交
585 586 587
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;
588
	struct udf_inode_info *iinfo;
L
Linus Torvalds 已提交
589 590 591 592 593 594 595 596 597 598

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

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

599
	iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
600 601
	inode->i_uid = current->fsuid;
	init_special_inode(inode, mode, rdev);
M
Marcin Slusarz 已提交
602 603
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
604
		inode->i_nlink--;
L
Linus Torvalds 已提交
605 606 607 608 609 610
		mark_inode_dirty(inode);
		iput(inode);
		unlock_kernel();
		return err;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
611
	cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
612
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
613
		cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
614
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
615
	if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
616 617 618 619
		mark_inode_dirty(dir);
	mark_inode_dirty(inode);

	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
620 621
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
622 623
	d_instantiate(dentry, inode);
	err = 0;
624 625

out:
L
Linus Torvalds 已提交
626 627 628 629
	unlock_kernel();
	return err;
}

630
static int udf_mkdir(struct inode *dir, struct dentry *dentry, int mode)
L
Linus Torvalds 已提交
631
{
632
	struct inode *inode;
L
Linus Torvalds 已提交
633 634 635
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;
636 637
	struct udf_inode_info *dinfo = UDF_I(dir);
	struct udf_inode_info *iinfo;
L
Linus Torvalds 已提交
638 639 640

	lock_kernel();
	err = -EMLINK;
641
	if (dir->i_nlink >= (256 << sizeof(dir->i_nlink)) - 1)
L
Linus Torvalds 已提交
642 643 644 645 646 647 648
		goto out;

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

649
	iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
650 651
	inode->i_op = &udf_dir_inode_operations;
	inode->i_fop = &udf_dir_operations;
M
Marcin Slusarz 已提交
652 653
	fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
	if (!fi) {
L
Linus Torvalds 已提交
654 655 656 657 658 659 660
		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);
661
	cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
662
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
663
		cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
M
Marcin Slusarz 已提交
664 665
	cfi.fileCharacteristics =
			FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
L
Linus Torvalds 已提交
666
	udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
J
Jan Kara 已提交
667
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
668 669 670 671 672
	inode->i_mode = S_IFDIR | mode;
	if (dir->i_mode & S_ISGID)
		inode->i_mode |= S_ISGID;
	mark_inode_dirty(inode);

M
Marcin Slusarz 已提交
673 674
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
L
Linus Torvalds 已提交
675 676 677 678 679 680
		inode->i_nlink = 0;
		mark_inode_dirty(inode);
		iput(inode);
		goto out;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
681
	cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
682
	*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
683
		cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
684 685
	cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
686
	inc_nlink(dir);
L
Linus Torvalds 已提交
687 688 689
	mark_inode_dirty(dir);
	d_instantiate(dentry, inode);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
690 691
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
692
	err = 0;
693 694

out:
L
Linus Torvalds 已提交
695 696 697 698 699 700 701 702 703
	unlock_kernel();
	return err;
}

static int empty_dir(struct inode *dir)
{
	struct fileIdentDesc *fi, cfi;
	struct udf_fileident_bh fibh;
	loff_t f_pos;
704
	loff_t size = udf_ext0_offset(dir) + dir->i_size;
L
Linus Torvalds 已提交
705
	int block;
J
Jan Kara 已提交
706 707
	kernel_lb_addr eloc;
	uint32_t elen;
708
	sector_t offset;
709
	struct extent_position epos = {};
710
	struct udf_inode_info *dinfo = UDF_I(dir);
L
Linus Torvalds 已提交
711

712 713
	f_pos = udf_ext0_offset(dir);
	fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
L
Linus Torvalds 已提交
714

715
	if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
716
		fibh.sbh = fibh.ebh = NULL;
717
	else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
M
Marcin Slusarz 已提交
718 719
			      &epos, &eloc, &elen, &offset) ==
					(EXT_RECORDED_ALLOCATED >> 30)) {
L
Linus Torvalds 已提交
720
		block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
721
		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
722
			if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
J
Jan Kara 已提交
723
				epos.offset -= sizeof(short_ad);
724
			else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
J
Jan Kara 已提交
725
				epos.offset -= sizeof(long_ad);
M
Marcin Slusarz 已提交
726
		} else
L
Linus Torvalds 已提交
727 728
			offset = 0;

M
Marcin Slusarz 已提交
729 730
		fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
		if (!fibh.sbh) {
J
Jan Kara 已提交
731
			brelse(epos.bh);
L
Linus Torvalds 已提交
732 733
			return 0;
		}
734
	} else {
J
Jan Kara 已提交
735
		brelse(epos.bh);
L
Linus Torvalds 已提交
736 737 738
		return 0;
	}

739
	while (f_pos < size) {
740 741 742
		fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
					&elen, &offset);
		if (!fi) {
L
Linus Torvalds 已提交
743
			if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
744 745 746
				brelse(fibh.ebh);
			brelse(fibh.sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
747 748 749
			return 0;
		}

750 751
		if (cfi.lengthFileIdent &&
		    (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
L
Linus Torvalds 已提交
752
			if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
753 754 755
				brelse(fibh.ebh);
			brelse(fibh.sbh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
756 757 758
			return 0;
		}
	}
759

L
Linus Torvalds 已提交
760
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
761 762 763
		brelse(fibh.ebh);
	brelse(fibh.sbh);
	brelse(epos.bh);
764

L
Linus Torvalds 已提交
765 766 767
	return 1;
}

768
static int udf_rmdir(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
769 770
{
	int retval;
771
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
	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",
794 795
			    "empty directory has nlink != 2 (%d)",
			    inode->i_nlink);
796
	clear_nlink(inode);
L
Linus Torvalds 已提交
797
	inode->i_size = 0;
798
	inode_dec_link_count(dir);
M
Marcin Slusarz 已提交
799 800
	inode->i_ctime = dir->i_ctime = dir->i_mtime =
						current_fs_time(dir->i_sb);
L
Linus Torvalds 已提交
801 802
	mark_inode_dirty(dir);

803
end_rmdir:
L
Linus Torvalds 已提交
804
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
805 806
		brelse(fibh.ebh);
	brelse(fibh.sbh);
807 808

out:
L
Linus Torvalds 已提交
809 810 811 812
	unlock_kernel();
	return retval;
}

813
static int udf_unlink(struct inode *dir, struct dentry *dentry)
L
Linus Torvalds 已提交
814 815
{
	int retval;
816
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
	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;

833
	if (!inode->i_nlink) {
L
Linus Torvalds 已提交
834
		udf_debug("Deleting nonexistent file (%lu), %d\n",
835
			  inode->i_ino, inode->i_nlink);
L
Linus Torvalds 已提交
836 837 838 839 840 841 842
		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);
843
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
844 845 846
	inode->i_ctime = dir->i_ctime;
	retval = 0;

847
end_unlink:
L
Linus Torvalds 已提交
848
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
849 850
		brelse(fibh.ebh);
	brelse(fibh.sbh);
851 852

out:
L
Linus Torvalds 已提交
853 854 855 856
	unlock_kernel();
	return retval;
}

857 858
static int udf_symlink(struct inode *dir, struct dentry *dentry,
		       const char *symname)
L
Linus Torvalds 已提交
859
{
860
	struct inode *inode;
L
Linus Torvalds 已提交
861 862 863
	struct pathComponent *pc;
	char *compstart;
	struct udf_fileident_bh fibh;
864
	struct extent_position epos = {};
L
Linus Torvalds 已提交
865 866 867 868 869 870
	int eoffset, elen = 0;
	struct fileIdentDesc *fi;
	struct fileIdentDesc cfi;
	char *ea;
	int err;
	int block;
871
	char *name = NULL;
L
Linus Torvalds 已提交
872
	int namelen;
M
Marcin Slusarz 已提交
873
	struct buffer_head *bh;
874
	struct udf_inode_info *iinfo;
L
Linus Torvalds 已提交
875 876

	lock_kernel();
M
Marcin Slusarz 已提交
877 878
	inode = udf_new_inode(dir, S_IFLNK, &err);
	if (!inode)
L
Linus Torvalds 已提交
879 880
		goto out;

881 882 883 884 885 886
	name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
	if (!name) {
		err = -ENOMEM;
		goto out_no_entry;
	}

887
	iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
888 889 890 891
	inode->i_mode = S_IFLNK | S_IRWXUGO;
	inode->i_data.a_ops = &udf_symlink_aops;
	inode->i_op = &page_symlink_inode_operations;

892
	if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
J
Jan Kara 已提交
893 894
		kernel_lb_addr eloc;
		uint32_t elen;
L
Linus Torvalds 已提交
895 896

		block = udf_new_block(inode->i_sb, inode,
897 898
				iinfo->i_location.partitionReferenceNum,
				iinfo->i_location.logicalBlockNum, &err);
L
Linus Torvalds 已提交
899 900
		if (!block)
			goto out_no_entry;
901
		epos.block = iinfo->i_location;
J
Jan Kara 已提交
902 903
		epos.offset = udf_file_entry_alloc_offset(inode);
		epos.bh = NULL;
L
Linus Torvalds 已提交
904
		eloc.logicalBlockNum = block;
M
Marcin Slusarz 已提交
905
		eloc.partitionReferenceNum =
906
				iinfo->i_location.partitionReferenceNum;
L
Linus Torvalds 已提交
907
		elen = inode->i_sb->s_blocksize;
908
		iinfo->i_lenExtents = elen;
J
Jan Kara 已提交
909
		udf_add_aext(inode, &epos, eloc, elen, 0);
J
Jan Kara 已提交
910
		brelse(epos.bh);
L
Linus Torvalds 已提交
911 912

		block = udf_get_pblock(inode->i_sb, block,
913
				iinfo->i_location.partitionReferenceNum,
M
Marcin Slusarz 已提交
914
				0);
J
Jan Kara 已提交
915 916 917 918 919 920 921
		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);
922 923
	} else
		ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
L
Linus Torvalds 已提交
924 925 926 927

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

928 929
	if (*symname == '/') {
		do {
L
Linus Torvalds 已提交
930 931 932 933 934 935 936 937 938 939 940 941
			symname++;
		} while (*symname == '/');

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

	err = -ENAMETOOLONG;

942
	while (*symname) {
L
Linus Torvalds 已提交
943 944 945 946 947 948 949
		if (elen + sizeof(struct pathComponent) > eoffset)
			goto out_no_entry;

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

		compstart = (char *)symname;

950
		do {
L
Linus Torvalds 已提交
951 952 953 954 955 956
			symname++;
		} while (*symname && *symname != '/');

		pc->componentType = 5;
		pc->lengthComponentIdent = 0;
		pc->componentFileVersionNum = 0;
957 958
		if (compstart[0] == '.') {
			if ((symname - compstart) == 1)
L
Linus Torvalds 已提交
959
				pc->componentType = 4;
M
Marcin Slusarz 已提交
960 961
			else if ((symname - compstart) == 2 &&
					compstart[1] == '.')
L
Linus Torvalds 已提交
962 963 964
				pc->componentType = 3;
		}

965
		if (pc->componentType == 5) {
966 967 968
			namelen = udf_put_filename(inode->i_sb, compstart, name,
						   symname - compstart);
			if (!namelen)
L
Linus Torvalds 已提交
969 970
				goto out_no_entry;

M
Marcin Slusarz 已提交
971 972
			if (elen + sizeof(struct pathComponent) + namelen >
					eoffset)
L
Linus Torvalds 已提交
973 974 975 976 977 978 979 980 981
				goto out_no_entry;
			else
				pc->lengthComponentIdent = namelen;

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

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

982 983
		if (*symname) {
			do {
L
Linus Torvalds 已提交
984 985 986 987 988
				symname++;
			} while (*symname == '/');
		}
	}

J
Jan Kara 已提交
989
	brelse(epos.bh);
L
Linus Torvalds 已提交
990
	inode->i_size = elen;
991 992
	if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
		iinfo->i_lenAlloc = inode->i_size;
L
Linus Torvalds 已提交
993 994
	mark_inode_dirty(inode);

M
Marcin Slusarz 已提交
995 996
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi)
L
Linus Torvalds 已提交
997 998
		goto out_no_entry;
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
999
	cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
M
Marcin Slusarz 已提交
1000 1001
	bh = UDF_SB(inode->i_sb)->s_lvid_bh;
	if (bh) {
M
Marcin Slusarz 已提交
1002 1003
		struct logicalVolIntegrityDesc *lvid =
				(struct logicalVolIntegrityDesc *)bh->b_data;
L
Linus Torvalds 已提交
1004 1005
		struct logicalVolHeaderDesc *lvhd;
		uint64_t uniqueID;
M
Marcin Slusarz 已提交
1006 1007
		lvhd = (struct logicalVolHeaderDesc *)
				lvid->logicalVolContentsUse;
L
Linus Torvalds 已提交
1008
		uniqueID = le64_to_cpu(lvhd->uniqueID);
1009 1010
		*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
			cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
1011 1012 1013
		if (!(++uniqueID & 0x00000000FFFFFFFFUL))
			uniqueID += 16;
		lvhd->uniqueID = cpu_to_le64(uniqueID);
M
Marcin Slusarz 已提交
1014
		mark_buffer_dirty(bh);
L
Linus Torvalds 已提交
1015 1016
	}
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
1017
	if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
1018 1019
		mark_inode_dirty(dir);
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
1020 1021
		brelse(fibh.ebh);
	brelse(fibh.sbh);
L
Linus Torvalds 已提交
1022 1023 1024
	d_instantiate(dentry, inode);
	err = 0;

1025
out:
1026
	kfree(name);
L
Linus Torvalds 已提交
1027 1028 1029
	unlock_kernel();
	return err;

1030
out_no_entry:
1031
	inode_dec_link_count(inode);
L
Linus Torvalds 已提交
1032 1033 1034 1035
	iput(inode);
	goto out;
}

1036 1037
static int udf_link(struct dentry *old_dentry, struct inode *dir,
		    struct dentry *dentry)
L
Linus Torvalds 已提交
1038 1039 1040 1041 1042
{
	struct inode *inode = old_dentry->d_inode;
	struct udf_fileident_bh fibh;
	struct fileIdentDesc cfi, *fi;
	int err;
M
Marcin Slusarz 已提交
1043
	struct buffer_head *bh;
L
Linus Torvalds 已提交
1044 1045

	lock_kernel();
1046
	if (inode->i_nlink >= (256 << sizeof(inode->i_nlink)) - 1) {
L
Linus Torvalds 已提交
1047 1048 1049 1050
		unlock_kernel();
		return -EMLINK;
	}

M
Marcin Slusarz 已提交
1051 1052
	fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
	if (!fi) {
L
Linus Torvalds 已提交
1053 1054 1055 1056
		unlock_kernel();
		return err;
	}
	cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
1057
	cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
M
Marcin Slusarz 已提交
1058 1059
	bh = UDF_SB(inode->i_sb)->s_lvid_bh;
	if (bh) {
M
Marcin Slusarz 已提交
1060 1061
		struct logicalVolIntegrityDesc *lvid =
				(struct logicalVolIntegrityDesc *)bh->b_data;
L
Linus Torvalds 已提交
1062 1063
		struct logicalVolHeaderDesc *lvhd;
		uint64_t uniqueID;
M
Marcin Slusarz 已提交
1064 1065
		lvhd = (struct logicalVolHeaderDesc *)
				(lvid->logicalVolContentsUse);
L
Linus Torvalds 已提交
1066
		uniqueID = le64_to_cpu(lvhd->uniqueID);
1067 1068
		*(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
			cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
L
Linus Torvalds 已提交
1069 1070 1071
		if (!(++uniqueID & 0x00000000FFFFFFFFUL))
			uniqueID += 16;
		lvhd->uniqueID = cpu_to_le64(uniqueID);
M
Marcin Slusarz 已提交
1072
		mark_buffer_dirty(bh);
L
Linus Torvalds 已提交
1073 1074
	}
	udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
1075
	if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
1076
		mark_inode_dirty(dir);
1077

L
Linus Torvalds 已提交
1078
	if (fibh.sbh != fibh.ebh)
J
Jan Kara 已提交
1079 1080
		brelse(fibh.ebh);
	brelse(fibh.sbh);
1081
	inc_nlink(inode);
L
Linus Torvalds 已提交
1082 1083 1084 1085 1086
	inode->i_ctime = current_fs_time(inode->i_sb);
	mark_inode_dirty(inode);
	atomic_inc(&inode->i_count);
	d_instantiate(dentry, inode);
	unlock_kernel();
1087

L
Linus Torvalds 已提交
1088 1089 1090 1091 1092 1093
	return 0;
}

/* Anybody can rename anything with this: the permission checks are left to the
 * higher-level routines.
 */
1094 1095
static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
		      struct inode *new_dir, struct dentry *new_dentry)
L
Linus Torvalds 已提交
1096
{
1097 1098
	struct inode *old_inode = old_dentry->d_inode;
	struct inode *new_inode = new_dentry->d_inode;
L
Linus Torvalds 已提交
1099
	struct udf_fileident_bh ofibh, nfibh;
M
Marcin Slusarz 已提交
1100 1101
	struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
	struct fileIdentDesc ocfi, ncfi;
L
Linus Torvalds 已提交
1102 1103 1104
	struct buffer_head *dir_bh = NULL;
	int retval = -ENOENT;
	kernel_lb_addr tloc;
1105
	struct udf_inode_info *old_iinfo = UDF_I(old_inode);
L
Linus Torvalds 已提交
1106 1107

	lock_kernel();
M
Marcin Slusarz 已提交
1108 1109
	ofi = udf_find_entry(old_dir, old_dentry, &ofibh, &ocfi);
	if (ofi) {
L
Linus Torvalds 已提交
1110
		if (ofibh.sbh != ofibh.ebh)
J
Jan Kara 已提交
1111 1112
			brelse(ofibh.ebh);
		brelse(ofibh.sbh);
L
Linus Torvalds 已提交
1113 1114 1115
	}
	tloc = lelb_to_cpu(ocfi.icb.extLocation);
	if (!ofi || udf_get_lb_pblock(old_dir->i_sb, tloc, 0)
1116
	    != old_inode->i_ino)
L
Linus Torvalds 已提交
1117 1118 1119
		goto end_rename;

	nfi = udf_find_entry(new_dir, new_dentry, &nfibh, &ncfi);
1120 1121
	if (nfi) {
		if (!new_inode) {
L
Linus Torvalds 已提交
1122
			if (nfibh.sbh != nfibh.ebh)
J
Jan Kara 已提交
1123 1124
				brelse(nfibh.ebh);
			brelse(nfibh.sbh);
L
Linus Torvalds 已提交
1125 1126 1127
			nfi = NULL;
		}
	}
1128
	if (S_ISDIR(old_inode->i_mode)) {
M
Marcin Slusarz 已提交
1129
		int offset = udf_ext0_offset(old_inode);
L
Linus Torvalds 已提交
1130

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

		retval = -EMLINK;
M
Marcin Slusarz 已提交
1159 1160 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) {
M
Marcin Slusarz 已提交
1165 1166
		nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
				    &retval);
L
Linus Torvalds 已提交
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
		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);

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

1197
	if (dir_fi) {
1198
		dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
M
Marcin Slusarz 已提交
1199 1200 1201
		udf_update_tag((char *)dir_fi,
				(sizeof(struct fileIdentDesc) +
				le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
1202
		if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
L
Linus Torvalds 已提交
1203
			mark_inode_dirty(old_inode);
M
Marcin Slusarz 已提交
1204
		else
L
Linus Torvalds 已提交
1205
			mark_buffer_dirty_inode(dir_bh, old_inode);
M
Marcin Slusarz 已提交
1206

1207
		inode_dec_link_count(old_dir);
M
Marcin Slusarz 已提交
1208
		if (new_inode)
1209
			inode_dec_link_count(new_inode);
M
Marcin Slusarz 已提交
1210
		else {
1211
			inc_nlink(new_dir);
L
Linus Torvalds 已提交
1212 1213 1214 1215
			mark_inode_dirty(new_dir);
		}
	}

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

	retval = 0;

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

L
Linus Torvalds 已提交
1233 1234 1235
	return retval;
}

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