blob: cd2115060fdcc728aeefc7a21e80f6fc6af9c28c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * namei.c
3 *
4 * PURPOSE
5 * Inode name handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1998-2004 Ben Fennema
14 * (C) 1999-2000 Stelias Computing Inc
15 *
16 * HISTORY
17 *
18 * 12/12/98 blf Created. Split out the lookup code from dir.c
19 * 04/19/99 blf link, mknod, symlink support
20 */
21
22#include "udfdecl.h"
23
24#include "udf_i.h"
25#include "udf_sb.h"
26#include <linux/string.h>
27#include <linux/errno.h>
28#include <linux/mm.h>
29#include <linux/slab.h>
30#include <linux/quotaops.h>
31#include <linux/smp_lock.h>
32#include <linux/buffer_head.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040033#include <linux/sched.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020034#include <linux/crc-itu-t.h>
Rasmus Rohde221e5832008-04-30 17:22:06 +020035#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070037static inline int udf_match(int len1, const char *name1, int len2,
38 const char *name2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 if (len1 != len2)
41 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 return !memcmp(name1, name2, len1);
44}
45
46int udf_write_fi(struct inode *inode, struct fileIdentDesc *cfi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070047 struct fileIdentDesc *sfi, struct udf_fileident_bh *fibh,
Marcin Slusarz4b111112008-02-08 04:20:36 -080048 uint8_t *impuse, uint8_t *fileident)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020050 uint16_t crclen = fibh->eoffset - fibh->soffset - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 uint16_t crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 int offset;
53 uint16_t liu = le16_to_cpu(cfi->lengthOfImpUse);
54 uint8_t lfi = cfi->lengthFileIdent;
55 int padlen = fibh->eoffset - fibh->soffset - liu - lfi -
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070056 sizeof(struct fileIdentDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int adinicb = 0;
58
Marcin Slusarzc0b34432008-02-08 04:20:42 -080059 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 adinicb = 1;
61
62 offset = fibh->soffset + sizeof(struct fileIdentDesc);
63
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070064 if (impuse) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070065 if (adinicb || (offset + liu < 0)) {
66 memcpy((uint8_t *)sfi->impUse, impuse, liu);
67 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 memcpy(fibh->ebh->b_data + offset, impuse, liu);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070069 } else {
70 memcpy((uint8_t *)sfi->impUse, impuse, -offset);
Marcin Slusarz4b111112008-02-08 04:20:36 -080071 memcpy(fibh->ebh->b_data, impuse - offset,
72 liu + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74 }
75
76 offset += liu;
77
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070078 if (fileident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070079 if (adinicb || (offset + lfi < 0)) {
80 memcpy((uint8_t *)sfi->fileIdent + liu, fileident, lfi);
81 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 memcpy(fibh->ebh->b_data + offset, fileident, lfi);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070083 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -080084 memcpy((uint8_t *)sfi->fileIdent + liu, fileident,
85 -offset);
86 memcpy(fibh->ebh->b_data, fileident - offset,
87 lfi + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89 }
90
91 offset += lfi;
92
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070093 if (adinicb || (offset + padlen < 0)) {
94 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, padlen);
95 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 memset(fibh->ebh->b_data + offset, 0x00, padlen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070097 } else {
98 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, -offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 memset(fibh->ebh->b_data, 0x00, padlen + offset);
100 }
101
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200102 crc = crc_itu_t(0, (uint8_t *)cfi + sizeof(struct tag),
103 sizeof(struct fileIdentDesc) - sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700105 if (fibh->sbh == fibh->ebh) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200106 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200107 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200108 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700109 } else if (sizeof(struct fileIdentDesc) >= -fibh->soffset) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200110 crc = crc_itu_t(crc, fibh->ebh->b_data +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800111 sizeof(struct fileIdentDesc) +
112 fibh->soffset,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200113 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200114 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700115 } else {
Bob Copelandf845fce2008-04-17 09:47:48 +0200116 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
117 -fibh->soffset - sizeof(struct fileIdentDesc));
118 crc = crc_itu_t(crc, fibh->ebh->b_data, fibh->eoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120
121 cfi->descTag.descCRC = cpu_to_le16(crc);
122 cfi->descTag.descCRCLength = cpu_to_le16(crclen);
Marcin Slusarz3f2587b2008-02-08 04:20:39 -0800123 cfi->descTag.tagChecksum = udf_tag_checksum(&cfi->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700125 if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800126 memcpy((uint8_t *)sfi, (uint8_t *)cfi,
127 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700128 } else {
129 memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset);
130 memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700131 sizeof(struct fileIdentDesc) + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700134 if (adinicb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700136 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (fibh->sbh != fibh->ebh)
138 mark_buffer_dirty_inode(fibh->ebh, inode);
139 mark_buffer_dirty_inode(fibh->sbh, inode);
140 }
141 return 0;
142}
143
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700144static struct fileIdentDesc *udf_find_entry(struct inode *dir,
Al Viro9fbb76c2008-10-12 00:15:17 -0400145 struct qstr *child,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700146 struct udf_fileident_bh *fibh,
147 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700149 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 loff_t f_pos;
151 int block, flen;
Jan Karab80697c2008-03-04 14:14:05 +0100152 char *fname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 char *nameptr;
154 uint8_t lfi;
155 uint16_t liu;
KAMBAROV, ZAURec471dc2005-06-28 20:45:10 -0700156 loff_t size;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200157 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700158 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700159 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700160 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800161 struct udf_inode_info *dinfo = UDF_I(dir);
Al Viro9fbb76c2008-10-12 00:15:17 -0400162 int isdotdot = child->len == 2 &&
163 child->name[0] == '.' && child->name[1] == '.';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jan Karaaf793292008-02-08 04:20:50 -0800165 size = udf_ext0_offset(dir) + dir->i_size;
166 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Jan Karab80697c2008-03-04 14:14:05 +0100168 fibh->sbh = fibh->ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800169 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +0100170 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
171 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
172 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30))
173 goto out_err;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200174 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700175 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800176 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200177 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800178 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200179 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800180 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 offset = 0;
182
Marcin Slusarz4b111112008-02-08 04:20:36 -0800183 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
Jan Karab80697c2008-03-04 14:14:05 +0100184 if (!fibh->sbh)
185 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
Jan Karab80697c2008-03-04 14:14:05 +0100188 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
189 if (!fname)
190 goto out_err;
191
Jan Karaaf793292008-02-08 04:20:50 -0800192 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700193 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
194 &elen, &offset);
Jan Karab80697c2008-03-04 14:14:05 +0100195 if (!fi)
196 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 liu = le16_to_cpu(cfi->lengthOfImpUse);
199 lfi = cfi->lengthFileIdent;
200
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700201 if (fibh->sbh == fibh->ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 nameptr = fi->fileIdent + liu;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700203 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int poffset; /* Unpaded ending offset */
205
Marcin Slusarz4b111112008-02-08 04:20:36 -0800206 poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
207 liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Marcin Slusarz4b111112008-02-08 04:20:36 -0800209 if (poffset >= lfi)
210 nameptr = (uint8_t *)(fibh->ebh->b_data +
211 poffset - lfi);
212 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 nameptr = fname;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800214 memcpy(nameptr, fi->fileIdent + liu,
215 lfi - poffset);
216 memcpy(nameptr + lfi - poffset,
217 fibh->ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219 }
220
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700221 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
222 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 continue;
224 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700225
226 if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
227 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 continue;
229 }
230
Rasmus Rohde221e5832008-04-30 17:22:06 +0200231 if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) &&
232 isdotdot) {
233 brelse(epos.bh);
234 return fi;
235 }
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (!lfi)
238 continue;
239
Marcin Slusarz4b111112008-02-08 04:20:36 -0800240 flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
Al Viro9fbb76c2008-10-12 00:15:17 -0400241 if (flen && udf_match(flen, fname, child->len, child->name))
Jan Karab80697c2008-03-04 14:14:05 +0100242 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700244
Jan Karab80697c2008-03-04 14:14:05 +0100245out_err:
246 fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700248 brelse(fibh->ebh);
249 brelse(fibh->sbh);
Jan Karab80697c2008-03-04 14:14:05 +0100250out_ok:
Jan Kara3bf25cb2007-05-08 00:35:16 -0700251 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100252 kfree(fname);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700253
Jan Karab80697c2008-03-04 14:14:05 +0100254 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700257static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
258 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 struct inode *inode = NULL;
Jayachandran Cdb9a3692006-02-03 03:04:50 -0800261 struct fileIdentDesc cfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 struct udf_fileident_bh fibh;
263
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700264 if (dentry->d_name.len > UDF_NAME_LEN - 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return ERR_PTR(-ENAMETOOLONG);
266
267 lock_kernel();
268#ifdef UDF_RECOVERY
269 /* temporary shorthand for specifying files by inode number */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700270 if (!strncmp(dentry->d_name.name, ".B=", 3)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200271 struct kernel_lb_addr lb = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700272 .logicalBlockNum = 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800273 .partitionReferenceNum =
274 simple_strtoul(dentry->d_name.name + 3,
275 NULL, 0),
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700276 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 inode = udf_iget(dir->i_sb, lb);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700278 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 unlock_kernel();
280 return ERR_PTR(-EACCES);
281 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800282 } else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700283#endif /* UDF_RECOVERY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Al Viro9fbb76c2008-10-12 00:15:17 -0400285 if (udf_find_entry(dir, &dentry->d_name, &fibh, &cfi)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200286 struct kernel_lb_addr loc;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700289 brelse(fibh.ebh);
290 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Pekka Enberg97e961f2008-10-15 12:29:03 +0200292 loc = lelb_to_cpu(cfi.icb.extLocation);
293 inode = udf_iget(dir->i_sb, &loc);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700294 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 unlock_kernel();
296 return ERR_PTR(-EACCES);
297 }
298 }
299 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700300
Rasmus Rohde221e5832008-04-30 17:22:06 +0200301 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700304static struct fileIdentDesc *udf_add_entry(struct inode *dir,
305 struct dentry *dentry,
306 struct udf_fileident_bh *fibh,
307 struct fileIdentDesc *cfi, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800309 struct super_block *sb = dir->i_sb;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700310 struct fileIdentDesc *fi = NULL;
Jan Karab80697c2008-03-04 14:14:05 +0100311 char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 int namelen;
313 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800314 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 int nfidlen;
316 uint8_t lfi;
317 uint16_t liu;
318 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200319 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200320 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700321 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700322 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800323 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Jan Karab80697c2008-03-04 14:14:05 +0100325 fibh->sbh = fibh->ebh = NULL;
326 name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
327 if (!name) {
328 *err = -ENOMEM;
329 goto out_err;
330 }
331
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700332 if (dentry) {
333 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100335 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800337 namelen = udf_put_filename(sb, dentry->d_name.name, name,
338 dentry->d_name.len);
339 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100341 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700343 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 nfidlen = (sizeof(struct fileIdentDesc) + namelen + 3) & ~3;
348
Jan Karaaf793292008-02-08 04:20:50 -0800349 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Jan Karaaf793292008-02-08 04:20:50 -0800351 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800352 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100353 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
354 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
355 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
356 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200357 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100358 fibh->soffset = fibh->eoffset = sb->s_blocksize;
359 goto add;
360 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200361 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700362 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800363 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200364 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800365 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200366 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800367 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 offset = 0;
369
Marcin Slusarz4b111112008-02-08 04:20:36 -0800370 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
371 if (!fibh->sbh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100373 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800376 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
Jan Karaaf793292008-02-08 04:20:50 -0800379 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700380 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
381 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700383 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100385 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
388 liu = le16_to_cpu(cfi->lengthOfImpUse);
389 lfi = cfi->lengthFileIdent;
390
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700391 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800392 if (((sizeof(struct fileIdentDesc) +
393 liu + lfi + 3) & ~3) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 cfi->descTag.tagSerialNum = cpu_to_le16(1);
395 cfi->fileVersionNum = cpu_to_le16(1);
396 cfi->fileCharacteristics = 0;
397 cfi->lengthFileIdent = namelen;
398 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800399 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
400 name))
Jan Karab80697c2008-03-04 14:14:05 +0100401 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800402 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100404 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 }
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700410add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 f_pos += nfidlen;
412
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800413 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700414 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700415 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700416 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 fibh->soffset -= udf_ext0_offset(dir);
418 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800419 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700421 brelse(fibh->ebh);
422 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800423 fibh->sbh = fibh->ebh =
424 udf_expand_dir_adinicb(dir, &block, err);
425 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100426 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800427 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700428 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800429 /* Load extent udf_expand_dir_adinicb() has created */
430 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
Jan Kara2c948b32009-12-03 13:39:28 +0100433 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700434 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 fibh->soffset = fibh->eoffset;
436 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700437 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700438 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 fibh->sbh = fibh->ebh;
440 }
441
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800442 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
443 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800444 fi = (struct fileIdentDesc *)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800445 (dinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800446 fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800447 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800448 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700449 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800450 block = eloc.logicalBlockNum +
451 ((elen - 1) >>
452 dir->i_sb->s_blocksize_bits);
453 fi = (struct fileIdentDesc *)
454 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700456 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100457 /* Round up last extent in the file */
458 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
459 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
460 epos.offset -= sizeof(struct short_ad);
461 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
462 epos.offset -= sizeof(struct long_ad);
463 udf_write_aext(dir, &epos, &eloc, elen, 1);
464 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
465 - 1) & ~(sb->s_blocksize - 1);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 fibh->soffset = fibh->eoffset - sb->s_blocksize;
468 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700469 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700470 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 fibh->sbh = fibh->ebh;
472 }
473
474 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700475 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800476 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800477 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100478 if (!fibh->ebh)
479 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700481 if (!fibh->soffset) {
Jan Karaff116fc2007-05-08 00:35:14 -0700482 if (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700483 (EXT_RECORDED_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700485 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800486 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700487 block++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Jan Kara3bf25cb2007-05-08 00:35:16 -0700489 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 fibh->sbh = fibh->ebh;
491 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700492 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800494 (fibh->sbh->b_data + sb->s_blocksize +
495 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497 }
498
499 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800500 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800501 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200502 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800504 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200505 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 cfi->fileVersionNum = cpu_to_le16(1);
507 cfi->lengthFileIdent = namelen;
508 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700509 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800511 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
512 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100513 else {
514 /* Find the last extent and truncate it to proper size */
515 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
516 (EXT_RECORDED_ALLOCATED >> 30))
517 ;
518 elen -= dinfo->i_lenExtents - dir->i_size;
519 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
520 epos.offset -= sizeof(struct short_ad);
521 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
522 epos.offset -= sizeof(struct long_ad);
523 udf_write_aext(dir, &epos, &eloc, elen, 1);
524 dinfo->i_lenExtents = dir->i_size;
525 }
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100528 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700529 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100531 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
Jan Karab80697c2008-03-04 14:14:05 +0100533
534out_err:
535 fi = NULL;
536 if (fibh->sbh != fibh->ebh)
537 brelse(fibh->ebh);
538 brelse(fibh->sbh);
539out_ok:
540 brelse(epos.bh);
541 kfree(name);
542 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700546 struct udf_fileident_bh *fibh,
547 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200552 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
555}
556
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700557static int udf_create(struct inode *dir, struct dentry *dentry, int mode,
558 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct udf_fileident_bh fibh;
561 struct inode *inode;
562 struct fileIdentDesc cfi, *fi;
563 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800564 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 lock_kernel();
567 inode = udf_new_inode(dir, mode, &err);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700568 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 unlock_kernel();
570 return err;
571 }
572
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800573 iinfo = UDF_I(inode);
574 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 inode->i_data.a_ops = &udf_adinicb_aops;
576 else
577 inode->i_data.a_ops = &udf_aops;
578 inode->i_op = &udf_file_inode_operations;
579 inode->i_fop = &udf_file_operations;
580 inode->i_mode = mode;
581 mark_inode_dirty(inode);
582
Marcin Slusarz4b111112008-02-08 04:20:36 -0800583 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
584 if (!fi) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700585 inode->i_nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 mark_inode_dirty(inode);
587 iput(inode);
588 unlock_kernel();
589 return err;
590 }
591 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800592 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700593 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800594 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800596 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700599 brelse(fibh.ebh);
600 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 unlock_kernel();
602 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return 0;
605}
606
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700607static int udf_mknod(struct inode *dir, struct dentry *dentry, int mode,
608 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700610 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 struct udf_fileident_bh fibh;
612 struct fileIdentDesc cfi, *fi;
613 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800614 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (!old_valid_dev(rdev))
617 return -EINVAL;
618
619 lock_kernel();
620 err = -EIO;
621 inode = udf_new_inode(dir, mode, &err);
622 if (!inode)
623 goto out;
624
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800625 iinfo = UDF_I(inode);
David Howells7706bb32008-11-14 10:39:03 +1100626 inode->i_uid = current_fsuid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 init_special_inode(inode, mode, rdev);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800628 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
629 if (!fi) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700630 inode->i_nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 mark_inode_dirty(inode);
632 iput(inode);
633 unlock_kernel();
634 return err;
635 }
636 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800637 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700638 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800639 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800641 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 mark_inode_dirty(inode);
644
645 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700646 brelse(fibh.ebh);
647 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 d_instantiate(dentry, inode);
649 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700650
651out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 unlock_kernel();
653 return err;
654}
655
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700656static int udf_mkdir(struct inode *dir, struct dentry *dentry, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700658 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 struct udf_fileident_bh fibh;
660 struct fileIdentDesc cfi, *fi;
661 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800662 struct udf_inode_info *dinfo = UDF_I(dir);
663 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 lock_kernel();
666 err = -EMLINK;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700667 if (dir->i_nlink >= (256 << sizeof(dir->i_nlink)) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 goto out;
669
670 err = -EIO;
671 inode = udf_new_inode(dir, S_IFDIR, &err);
672 if (!inode)
673 goto out;
674
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800675 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 inode->i_op = &udf_dir_inode_operations;
677 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800678 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
679 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 inode->i_nlink--;
681 mark_inode_dirty(inode);
682 iput(inode);
683 goto out;
684 }
685 inode->i_nlink = 2;
686 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800687 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700688 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800689 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800690 cfi.fileCharacteristics =
691 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700693 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 inode->i_mode = S_IFDIR | mode;
695 if (dir->i_mode & S_ISGID)
696 inode->i_mode |= S_ISGID;
697 mark_inode_dirty(inode);
698
Marcin Slusarz4b111112008-02-08 04:20:36 -0800699 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
700 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 inode->i_nlink = 0;
702 mark_inode_dirty(inode);
703 iput(inode);
704 goto out;
705 }
706 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800707 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700708 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800709 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
711 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700712 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 mark_inode_dirty(dir);
714 d_instantiate(dentry, inode);
715 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700716 brelse(fibh.ebh);
717 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700719
720out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 unlock_kernel();
722 return err;
723}
724
725static int empty_dir(struct inode *dir)
726{
727 struct fileIdentDesc *fi, cfi;
728 struct udf_fileident_bh fibh;
729 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800730 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200732 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700733 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700734 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700735 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800736 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Jan Karaaf793292008-02-08 04:20:50 -0800738 f_pos = udf_ext0_offset(dir);
739 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800741 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800743 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800744 &epos, &eloc, &elen, &offset) ==
745 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200746 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700747 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800748 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200749 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800750 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200751 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800752 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 offset = 0;
754
Marcin Slusarz4b111112008-02-08 04:20:36 -0800755 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
756 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700757 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return 0;
759 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700760 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700761 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
763 }
764
Jan Karaaf793292008-02-08 04:20:50 -0800765 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700766 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
767 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700768 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700770 brelse(fibh.ebh);
771 brelse(fibh.sbh);
772 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return 0;
774 }
775
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700776 if (cfi.lengthFileIdent &&
777 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700779 brelse(fibh.ebh);
780 brelse(fibh.sbh);
781 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return 0;
783 }
784 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700787 brelse(fibh.ebh);
788 brelse(fibh.sbh);
789 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return 1;
792}
793
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700794static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700797 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 struct udf_fileident_bh fibh;
799 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200800 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 retval = -ENOENT;
803 lock_kernel();
Al Viro9fbb76c2008-10-12 00:15:17 -0400804 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!fi)
806 goto out;
807
808 retval = -EIO;
809 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200810 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 goto end_rmdir;
812 retval = -ENOTEMPTY;
813 if (!empty_dir(inode))
814 goto end_rmdir;
815 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
816 if (retval)
817 goto end_rmdir;
818 if (inode->i_nlink != 2)
819 udf_warning(inode->i_sb, "udf_rmdir",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700820 "empty directory has nlink != 2 (%d)",
821 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700822 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700824 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800825 inode->i_ctime = dir->i_ctime = dir->i_mtime =
826 current_fs_time(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 mark_inode_dirty(dir);
828
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700829end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700831 brelse(fibh.ebh);
832 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700833
834out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 unlock_kernel();
836 return retval;
837}
838
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700839static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700842 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct udf_fileident_bh fibh;
844 struct fileIdentDesc *fi;
845 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200846 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 retval = -ENOENT;
849 lock_kernel();
Al Viro9fbb76c2008-10-12 00:15:17 -0400850 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (!fi)
852 goto out;
853
854 retval = -EIO;
855 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200856 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto end_unlink;
858
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700859 if (!inode->i_nlink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 udf_debug("Deleting nonexistent file (%lu), %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700861 inode->i_ino, inode->i_nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 inode->i_nlink = 1;
863 }
864 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
865 if (retval)
866 goto end_unlink;
867 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
868 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700869 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 inode->i_ctime = dir->i_ctime;
871 retval = 0;
872
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700873end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700875 brelse(fibh.ebh);
876 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700877
878out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 unlock_kernel();
880 return retval;
881}
882
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700883static int udf_symlink(struct inode *dir, struct dentry *dentry,
884 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700886 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct pathComponent *pc;
888 char *compstart;
889 struct udf_fileident_bh fibh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700890 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 int eoffset, elen = 0;
892 struct fileIdentDesc *fi;
893 struct fileIdentDesc cfi;
894 char *ea;
895 int err;
896 int block;
Jan Karab80697c2008-03-04 14:14:05 +0100897 char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 int namelen;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800899 struct buffer_head *bh;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800900 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 lock_kernel();
Marcin Slusarz4b111112008-02-08 04:20:36 -0800903 inode = udf_new_inode(dir, S_IFLNK, &err);
904 if (!inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 goto out;
906
Jan Karab80697c2008-03-04 14:14:05 +0100907 name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
908 if (!name) {
909 err = -ENOMEM;
910 goto out_no_entry;
911 }
912
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800913 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 inode->i_mode = S_IFLNK | S_IRWXUGO;
915 inode->i_data.a_ops = &udf_symlink_aops;
916 inode->i_op = &page_symlink_inode_operations;
917
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800918 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200919 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700920 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800923 iinfo->i_location.partitionReferenceNum,
924 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (!block)
926 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800927 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700928 epos.offset = udf_file_entry_alloc_offset(inode);
929 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800931 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800932 iinfo->i_location.partitionReferenceNum;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700933 bsize = inode->i_sb->s_blocksize;
934 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200935 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700936 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 block = udf_get_pblock(inode->i_sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800939 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800940 0);
Jan Kara2c948b32009-12-03 13:39:28 +0100941 epos.bh = udf_tgetblk(inode->i_sb, block);
Jan Karaff116fc2007-05-08 00:35:14 -0700942 lock_buffer(epos.bh);
943 memset(epos.bh->b_data, 0x00, inode->i_sb->s_blocksize);
944 set_buffer_uptodate(epos.bh);
945 unlock_buffer(epos.bh);
946 mark_buffer_dirty_inode(epos.bh, inode);
947 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800948 } else
949 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 eoffset = inode->i_sb->s_blocksize - udf_ext0_offset(inode);
952 pc = (struct pathComponent *)ea;
953
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700954 if (*symname == '/') {
955 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 symname++;
957 } while (*symname == '/');
958
959 pc->componentType = 1;
960 pc->lengthComponentIdent = 0;
961 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 elen += sizeof(struct pathComponent);
963 }
964
965 err = -ENAMETOOLONG;
966
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700967 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (elen + sizeof(struct pathComponent) > eoffset)
969 goto out_no_entry;
970
971 pc = (struct pathComponent *)(ea + elen);
972
973 compstart = (char *)symname;
974
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700975 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 symname++;
977 } while (*symname && *symname != '/');
978
979 pc->componentType = 5;
980 pc->lengthComponentIdent = 0;
981 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700982 if (compstart[0] == '.') {
983 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800985 else if ((symname - compstart) == 2 &&
986 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 pc->componentType = 3;
988 }
989
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700990 if (pc->componentType == 5) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700991 namelen = udf_put_filename(inode->i_sb, compstart, name,
992 symname - compstart);
993 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 goto out_no_entry;
995
Marcin Slusarz4b111112008-02-08 04:20:36 -0800996 if (elen + sizeof(struct pathComponent) + namelen >
997 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 goto out_no_entry;
999 else
1000 pc->lengthComponentIdent = namelen;
1001
1002 memcpy(pc->componentIdent, name, namelen);
1003 }
1004
1005 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
1006
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001007 if (*symname) {
1008 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 symname++;
1010 } while (*symname == '/');
1011 }
1012 }
1013
Jan Kara3bf25cb2007-05-08 00:35:16 -07001014 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001016 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1017 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +01001018 else
1019 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 mark_inode_dirty(inode);
1021
Marcin Slusarz4b111112008-02-08 04:20:36 -08001022 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1023 if (!fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 goto out_no_entry;
1025 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001026 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001027 bh = UDF_SB(inode->i_sb)->s_lvid_bh;
1028 if (bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001029 struct logicalVolIntegrityDesc *lvid =
1030 (struct logicalVolIntegrityDesc *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 struct logicalVolHeaderDesc *lvhd;
1032 uint64_t uniqueID;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001033 lvhd = (struct logicalVolHeaderDesc *)
1034 lvid->logicalVolContentsUse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 uniqueID = le64_to_cpu(lvhd->uniqueID);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001036 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
1037 cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (!(++uniqueID & 0x00000000FFFFFFFFUL))
1039 uniqueID += 16;
1040 lvhd->uniqueID = cpu_to_le64(uniqueID);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001041 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001044 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001047 brelse(fibh.ebh);
1048 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 d_instantiate(dentry, inode);
1050 err = 0;
1051
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001052out:
Jan Karab80697c2008-03-04 14:14:05 +01001053 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 unlock_kernel();
1055 return err;
1056
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001057out_no_entry:
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001058 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 iput(inode);
1060 goto out;
1061}
1062
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001063static int udf_link(struct dentry *old_dentry, struct inode *dir,
1064 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 struct inode *inode = old_dentry->d_inode;
1067 struct udf_fileident_bh fibh;
1068 struct fileIdentDesc cfi, *fi;
1069 int err;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001070 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 lock_kernel();
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001073 if (inode->i_nlink >= (256 << sizeof(inode->i_nlink)) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 unlock_kernel();
1075 return -EMLINK;
1076 }
1077
Marcin Slusarz4b111112008-02-08 04:20:36 -08001078 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1079 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 unlock_kernel();
1081 return err;
1082 }
1083 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001084 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001085 bh = UDF_SB(inode->i_sb)->s_lvid_bh;
1086 if (bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001087 struct logicalVolIntegrityDesc *lvid =
1088 (struct logicalVolIntegrityDesc *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 struct logicalVolHeaderDesc *lvhd;
1090 uint64_t uniqueID;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001091 lvhd = (struct logicalVolHeaderDesc *)
1092 (lvid->logicalVolContentsUse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 uniqueID = le64_to_cpu(lvhd->uniqueID);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001094 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
1095 cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (!(++uniqueID & 0x00000000FFFFFFFFUL))
1097 uniqueID += 16;
1098 lvhd->uniqueID = cpu_to_le64(uniqueID);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001099 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001102 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001106 brelse(fibh.ebh);
1107 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001108 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 inode->i_ctime = current_fs_time(inode->i_sb);
1110 mark_inode_dirty(inode);
1111 atomic_inc(&inode->i_count);
1112 d_instantiate(dentry, inode);
1113 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return 0;
1116}
1117
1118/* Anybody can rename anything with this: the permission checks are left to the
1119 * higher-level routines.
1120 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001121static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
1122 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001124 struct inode *old_inode = old_dentry->d_inode;
1125 struct inode *new_inode = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001127 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1128 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 struct buffer_head *dir_bh = NULL;
1130 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001131 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001132 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 lock_kernel();
Al Viro9fbb76c2008-10-12 00:15:17 -04001135 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001136 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001138 brelse(ofibh.ebh);
1139 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001142 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001143 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 goto end_rename;
1145
Al Viro9fbb76c2008-10-12 00:15:17 -04001146 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001147 if (nfi) {
1148 if (!new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001150 brelse(nfibh.ebh);
1151 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 nfi = NULL;
1153 }
1154 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001155 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001156 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001158 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 retval = -ENOTEMPTY;
1160 if (!empty_dir(new_inode))
1161 goto end_rename;
1162 }
1163 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001164 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001165 dir_fi = udf_get_fileident(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001166 old_iinfo->i_ext.i_data -
1167 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001168 sizeof(struct extendedFileEntry) :
1169 sizeof(struct fileEntry)),
1170 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001171 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1173 if (!dir_bh)
1174 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001175 dir_fi = udf_get_fileident(dir_bh->b_data,
1176 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178 if (!dir_fi)
1179 goto end_rename;
1180 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001181 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001182 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 goto end_rename;
1184
1185 retval = -EMLINK;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001186 if (!new_inode &&
1187 new_dir->i_nlink >=
1188 (256 << sizeof(new_dir->i_nlink)) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 goto end_rename;
1190 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001191 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001192 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1193 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!nfi)
1195 goto end_rename;
1196 }
1197
1198 /*
1199 * Like most other Unix systems, set the ctime for inodes on a
1200 * rename.
1201 */
1202 old_inode->i_ctime = current_fs_time(old_inode->i_sb);
1203 mark_inode_dirty(old_inode);
1204
1205 /*
1206 * ok, that's it
1207 */
1208 ncfi.fileVersionNum = ocfi.fileVersionNum;
1209 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001210 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(struct long_ad));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1212
1213 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001214 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1216
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001217 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 new_inode->i_ctime = current_fs_time(new_inode->i_sb);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001219 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221 old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
1222 mark_inode_dirty(old_dir);
1223
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001224 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001225 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001226 udf_update_tag((char *)dir_fi,
1227 (sizeof(struct fileIdentDesc) +
1228 le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001229 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001231 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001233
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001234 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001235 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001236 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001237 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001238 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 mark_inode_dirty(new_dir);
1240 }
1241 }
1242
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001243 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001245 brelse(ofibh.ebh);
1246 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248
1249 retval = 0;
1250
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001251end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001252 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001253 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001255 brelse(nfibh.ebh);
1256 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return retval;
1261}
1262
Rasmus Rohde221e5832008-04-30 17:22:06 +02001263static struct dentry *udf_get_parent(struct dentry *child)
1264{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001265 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001266 struct inode *inode = NULL;
Al Viro9fbb76c2008-10-12 00:15:17 -04001267 struct qstr dotdot = {.name = "..", .len = 2};
Rasmus Rohde221e5832008-04-30 17:22:06 +02001268 struct fileIdentDesc cfi;
1269 struct udf_fileident_bh fibh;
1270
Rasmus Rohde221e5832008-04-30 17:22:06 +02001271 lock_kernel();
1272 if (!udf_find_entry(child->d_inode, &dotdot, &fibh, &cfi))
1273 goto out_unlock;
1274
1275 if (fibh.sbh != fibh.ebh)
1276 brelse(fibh.ebh);
1277 brelse(fibh.sbh);
1278
Pekka Enberg97e961f2008-10-15 12:29:03 +02001279 tloc = lelb_to_cpu(cfi.icb.extLocation);
1280 inode = udf_iget(child->d_inode->i_sb, &tloc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001281 if (!inode)
1282 goto out_unlock;
1283 unlock_kernel();
1284
Christoph Hellwig44003722008-08-11 15:49:04 +02001285 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001286out_unlock:
1287 unlock_kernel();
1288 return ERR_PTR(-EACCES);
1289}
1290
1291
1292static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1293 u16 partref, __u32 generation)
1294{
1295 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001296 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001297
1298 if (block == 0)
1299 return ERR_PTR(-ESTALE);
1300
1301 loc.logicalBlockNum = block;
1302 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001303 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001304
1305 if (inode == NULL)
1306 return ERR_PTR(-ENOMEM);
1307
1308 if (generation && inode->i_generation != generation) {
1309 iput(inode);
1310 return ERR_PTR(-ESTALE);
1311 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001312 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001313}
1314
1315static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1316 struct fid *fid, int fh_len, int fh_type)
1317{
1318 if ((fh_len != 3 && fh_len != 5) ||
1319 (fh_type != FILEID_UDF_WITH_PARENT &&
1320 fh_type != FILEID_UDF_WITHOUT_PARENT))
1321 return NULL;
1322
1323 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1324 fid->udf.generation);
1325}
1326
1327static struct dentry *udf_fh_to_parent(struct super_block *sb,
1328 struct fid *fid, int fh_len, int fh_type)
1329{
1330 if (fh_len != 5 || fh_type != FILEID_UDF_WITH_PARENT)
1331 return NULL;
1332
1333 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1334 fid->udf.parent_partref,
1335 fid->udf.parent_generation);
1336}
1337static int udf_encode_fh(struct dentry *de, __u32 *fh, int *lenp,
1338 int connectable)
1339{
1340 int len = *lenp;
1341 struct inode *inode = de->d_inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001342 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001343 struct fid *fid = (struct fid *)fh;
1344 int type = FILEID_UDF_WITHOUT_PARENT;
1345
1346 if (len < 3 || (connectable && len < 5))
1347 return 255;
1348
1349 *lenp = 3;
1350 fid->udf.block = location.logicalBlockNum;
1351 fid->udf.partref = location.partitionReferenceNum;
1352 fid->udf.generation = inode->i_generation;
1353
1354 if (connectable && !S_ISDIR(inode->i_mode)) {
1355 spin_lock(&de->d_lock);
1356 inode = de->d_parent->d_inode;
1357 location = UDF_I(inode)->i_location;
1358 fid->udf.parent_block = location.logicalBlockNum;
1359 fid->udf.parent_partref = location.partitionReferenceNum;
1360 fid->udf.parent_generation = inode->i_generation;
1361 spin_unlock(&de->d_lock);
1362 *lenp = 5;
1363 type = FILEID_UDF_WITH_PARENT;
1364 }
1365
1366 return type;
1367}
1368
1369const struct export_operations udf_export_ops = {
1370 .encode_fh = udf_encode_fh,
1371 .fh_to_dentry = udf_fh_to_dentry,
1372 .fh_to_parent = udf_fh_to_parent,
1373 .get_parent = udf_get_parent,
1374};
1375
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001376const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001377 .lookup = udf_lookup,
1378 .create = udf_create,
1379 .link = udf_link,
1380 .unlink = udf_unlink,
1381 .symlink = udf_symlink,
1382 .mkdir = udf_mkdir,
1383 .rmdir = udf_rmdir,
1384 .mknod = udf_mknod,
1385 .rename = udf_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386};