blob: 26815a25379d6d41251506a18efc6b61b3c049bd [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/buffer_head.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040031#include <linux/sched.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020032#include <linux/crc-itu-t.h>
Rasmus Rohde221e5832008-04-30 17:22:06 +020033#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Al Viro391e8bb2010-01-31 21:28:48 -050035static inline int udf_match(int len1, const unsigned char *name1, int len2,
36 const unsigned char *name2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 if (len1 != len2)
39 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 return !memcmp(name1, name2, len1);
42}
43
44int udf_write_fi(struct inode *inode, struct fileIdentDesc *cfi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070045 struct fileIdentDesc *sfi, struct udf_fileident_bh *fibh,
Marcin Slusarz4b111112008-02-08 04:20:36 -080046 uint8_t *impuse, uint8_t *fileident)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020048 uint16_t crclen = fibh->eoffset - fibh->soffset - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 uint16_t crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 int offset;
51 uint16_t liu = le16_to_cpu(cfi->lengthOfImpUse);
52 uint8_t lfi = cfi->lengthFileIdent;
53 int padlen = fibh->eoffset - fibh->soffset - liu - lfi -
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070054 sizeof(struct fileIdentDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 int adinicb = 0;
56
Marcin Slusarzc0b34432008-02-08 04:20:42 -080057 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 adinicb = 1;
59
60 offset = fibh->soffset + sizeof(struct fileIdentDesc);
61
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070062 if (impuse) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070063 if (adinicb || (offset + liu < 0)) {
64 memcpy((uint8_t *)sfi->impUse, impuse, liu);
65 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 memcpy(fibh->ebh->b_data + offset, impuse, liu);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070067 } else {
68 memcpy((uint8_t *)sfi->impUse, impuse, -offset);
Marcin Slusarz4b111112008-02-08 04:20:36 -080069 memcpy(fibh->ebh->b_data, impuse - offset,
70 liu + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
72 }
73
74 offset += liu;
75
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070076 if (fileident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070077 if (adinicb || (offset + lfi < 0)) {
78 memcpy((uint8_t *)sfi->fileIdent + liu, fileident, lfi);
79 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 memcpy(fibh->ebh->b_data + offset, fileident, lfi);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070081 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -080082 memcpy((uint8_t *)sfi->fileIdent + liu, fileident,
83 -offset);
84 memcpy(fibh->ebh->b_data, fileident - offset,
85 lfi + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87 }
88
89 offset += lfi;
90
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070091 if (adinicb || (offset + padlen < 0)) {
92 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, padlen);
93 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 memset(fibh->ebh->b_data + offset, 0x00, padlen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070095 } else {
96 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, -offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 memset(fibh->ebh->b_data, 0x00, padlen + offset);
98 }
99
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200100 crc = crc_itu_t(0, (uint8_t *)cfi + sizeof(struct tag),
101 sizeof(struct fileIdentDesc) - sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700103 if (fibh->sbh == fibh->ebh) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200104 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200105 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200106 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700107 } else if (sizeof(struct fileIdentDesc) >= -fibh->soffset) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200108 crc = crc_itu_t(crc, fibh->ebh->b_data +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800109 sizeof(struct fileIdentDesc) +
110 fibh->soffset,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200111 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200112 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700113 } else {
Bob Copelandf845fce2008-04-17 09:47:48 +0200114 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
115 -fibh->soffset - sizeof(struct fileIdentDesc));
116 crc = crc_itu_t(crc, fibh->ebh->b_data, fibh->eoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
119 cfi->descTag.descCRC = cpu_to_le16(crc);
120 cfi->descTag.descCRCLength = cpu_to_le16(crclen);
Marcin Slusarz3f2587b2008-02-08 04:20:39 -0800121 cfi->descTag.tagChecksum = udf_tag_checksum(&cfi->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700123 if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800124 memcpy((uint8_t *)sfi, (uint8_t *)cfi,
125 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700126 } else {
127 memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset);
128 memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700129 sizeof(struct fileIdentDesc) + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700132 if (adinicb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700134 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (fibh->sbh != fibh->ebh)
136 mark_buffer_dirty_inode(fibh->ebh, inode);
137 mark_buffer_dirty_inode(fibh->sbh, inode);
138 }
139 return 0;
140}
141
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700142static struct fileIdentDesc *udf_find_entry(struct inode *dir,
Al Viro391e8bb2010-01-31 21:28:48 -0500143 const struct qstr *child,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700144 struct udf_fileident_bh *fibh,
145 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700147 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 loff_t f_pos;
149 int block, flen;
Al Viro391e8bb2010-01-31 21:28:48 -0500150 unsigned char *fname = NULL;
151 unsigned char *nameptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 uint8_t lfi;
153 uint16_t liu;
KAMBAROV, ZAURec471dc2005-06-28 20:45:10 -0700154 loff_t size;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200155 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700156 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700157 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700158 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800159 struct udf_inode_info *dinfo = UDF_I(dir);
Al Viro9fbb76c2008-10-12 00:15:17 -0400160 int isdotdot = child->len == 2 &&
161 child->name[0] == '.' && child->name[1] == '.';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Jan Karaaf793292008-02-08 04:20:50 -0800163 size = udf_ext0_offset(dir) + dir->i_size;
164 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Jan Karab80697c2008-03-04 14:14:05 +0100166 fibh->sbh = fibh->ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800167 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +0100168 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
169 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
170 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30))
171 goto out_err;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200172 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700173 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800174 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200175 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800176 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200177 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800178 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 offset = 0;
180
Marcin Slusarz4b111112008-02-08 04:20:36 -0800181 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
Jan Karab80697c2008-03-04 14:14:05 +0100182 if (!fibh->sbh)
183 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
Jan Karab80697c2008-03-04 14:14:05 +0100186 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
187 if (!fname)
188 goto out_err;
189
Jan Karaaf793292008-02-08 04:20:50 -0800190 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700191 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
192 &elen, &offset);
Jan Karab80697c2008-03-04 14:14:05 +0100193 if (!fi)
194 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 liu = le16_to_cpu(cfi->lengthOfImpUse);
197 lfi = cfi->lengthFileIdent;
198
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700199 if (fibh->sbh == fibh->ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 nameptr = fi->fileIdent + liu;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700201 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int poffset; /* Unpaded ending offset */
203
Marcin Slusarz4b111112008-02-08 04:20:36 -0800204 poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
205 liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Marcin Slusarz4b111112008-02-08 04:20:36 -0800207 if (poffset >= lfi)
208 nameptr = (uint8_t *)(fibh->ebh->b_data +
209 poffset - lfi);
210 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 nameptr = fname;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800212 memcpy(nameptr, fi->fileIdent + liu,
213 lfi - poffset);
214 memcpy(nameptr + lfi - poffset,
215 fibh->ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217 }
218
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700219 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
220 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 continue;
222 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700223
224 if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
225 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 continue;
227 }
228
Rasmus Rohde221e5832008-04-30 17:22:06 +0200229 if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) &&
230 isdotdot) {
231 brelse(epos.bh);
232 return fi;
233 }
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (!lfi)
236 continue;
237
Marcin Slusarz4b111112008-02-08 04:20:36 -0800238 flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
Al Viro9fbb76c2008-10-12 00:15:17 -0400239 if (flen && udf_match(flen, fname, child->len, child->name))
Jan Karab80697c2008-03-04 14:14:05 +0100240 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700242
Jan Karab80697c2008-03-04 14:14:05 +0100243out_err:
244 fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700246 brelse(fibh->ebh);
247 brelse(fibh->sbh);
Jan Karab80697c2008-03-04 14:14:05 +0100248out_ok:
Jan Kara3bf25cb2007-05-08 00:35:16 -0700249 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100250 kfree(fname);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700251
Jan Karab80697c2008-03-04 14:14:05 +0100252 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700255static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
256 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct inode *inode = NULL;
Jayachandran Cdb9a3692006-02-03 03:04:50 -0800259 struct fileIdentDesc cfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 struct udf_fileident_bh fibh;
261
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700262 if (dentry->d_name.len > UDF_NAME_LEN - 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return ERR_PTR(-ENAMETOOLONG);
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#ifdef UDF_RECOVERY
266 /* temporary shorthand for specifying files by inode number */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700267 if (!strncmp(dentry->d_name.name, ".B=", 3)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200268 struct kernel_lb_addr lb = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700269 .logicalBlockNum = 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800270 .partitionReferenceNum =
271 simple_strtoul(dentry->d_name.name + 3,
272 NULL, 0),
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700273 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 inode = udf_iget(dir->i_sb, lb);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700275 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return ERR_PTR(-EACCES);
277 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800278 } else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700279#endif /* UDF_RECOVERY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Al Viro9fbb76c2008-10-12 00:15:17 -0400281 if (udf_find_entry(dir, &dentry->d_name, &fibh, &cfi)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200282 struct kernel_lb_addr loc;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700285 brelse(fibh.ebh);
286 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Pekka Enberg97e961f2008-10-15 12:29:03 +0200288 loc = lelb_to_cpu(cfi.icb.extLocation);
289 inode = udf_iget(dir->i_sb, &loc);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700290 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return ERR_PTR(-EACCES);
292 }
293 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700294
Rasmus Rohde221e5832008-04-30 17:22:06 +0200295 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700298static struct fileIdentDesc *udf_add_entry(struct inode *dir,
299 struct dentry *dentry,
300 struct udf_fileident_bh *fibh,
301 struct fileIdentDesc *cfi, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800303 struct super_block *sb = dir->i_sb;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700304 struct fileIdentDesc *fi = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500305 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 int namelen;
307 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800308 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int nfidlen;
310 uint8_t lfi;
311 uint16_t liu;
312 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200313 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200314 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700315 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700316 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800317 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Jan Karab80697c2008-03-04 14:14:05 +0100319 fibh->sbh = fibh->ebh = NULL;
320 name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
321 if (!name) {
322 *err = -ENOMEM;
323 goto out_err;
324 }
325
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700326 if (dentry) {
327 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100329 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800331 namelen = udf_put_filename(sb, dentry->d_name.name, name,
332 dentry->d_name.len);
333 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100335 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700337 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 nfidlen = (sizeof(struct fileIdentDesc) + namelen + 3) & ~3;
342
Jan Karaaf793292008-02-08 04:20:50 -0800343 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Jan Karaaf793292008-02-08 04:20:50 -0800345 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800346 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100347 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
348 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
349 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
350 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200351 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100352 fibh->soffset = fibh->eoffset = sb->s_blocksize;
353 goto add;
354 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200355 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700356 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800357 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200358 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800359 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200360 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800361 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 offset = 0;
363
Marcin Slusarz4b111112008-02-08 04:20:36 -0800364 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
365 if (!fibh->sbh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100367 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800370 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Jan Karaaf793292008-02-08 04:20:50 -0800373 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700374 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
375 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700377 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100379 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 liu = le16_to_cpu(cfi->lengthOfImpUse);
383 lfi = cfi->lengthFileIdent;
384
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700385 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800386 if (((sizeof(struct fileIdentDesc) +
387 liu + lfi + 3) & ~3) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 cfi->descTag.tagSerialNum = cpu_to_le16(1);
389 cfi->fileVersionNum = cpu_to_le16(1);
390 cfi->fileCharacteristics = 0;
391 cfi->lengthFileIdent = namelen;
392 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800393 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
394 name))
Jan Karab80697c2008-03-04 14:14:05 +0100395 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800396 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100398 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 }
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700404add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 f_pos += nfidlen;
406
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800407 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700408 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700409 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700410 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 fibh->soffset -= udf_ext0_offset(dir);
412 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800413 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700415 brelse(fibh->ebh);
416 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800417 fibh->sbh = fibh->ebh =
418 udf_expand_dir_adinicb(dir, &block, err);
419 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100420 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800421 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700422 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800423 /* Load extent udf_expand_dir_adinicb() has created */
424 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
Jan Kara2c948b32009-12-03 13:39:28 +0100427 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 fibh->soffset = fibh->eoffset;
430 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700431 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700432 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 fibh->sbh = fibh->ebh;
434 }
435
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800436 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
437 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800438 fi = (struct fileIdentDesc *)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800439 (dinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800440 fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800441 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800442 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700443 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800444 block = eloc.logicalBlockNum +
445 ((elen - 1) >>
446 dir->i_sb->s_blocksize_bits);
447 fi = (struct fileIdentDesc *)
448 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700450 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100451 /* Round up last extent in the file */
452 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
453 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
454 epos.offset -= sizeof(struct short_ad);
455 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
456 epos.offset -= sizeof(struct long_ad);
457 udf_write_aext(dir, &epos, &eloc, elen, 1);
458 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
459 - 1) & ~(sb->s_blocksize - 1);
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 fibh->soffset = fibh->eoffset - sb->s_blocksize;
462 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700463 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700464 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 fibh->sbh = fibh->ebh;
466 }
467
468 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700469 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800470 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800471 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100472 if (!fibh->ebh)
473 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700475 if (!fibh->soffset) {
Jan Karaff116fc2007-05-08 00:35:14 -0700476 if (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700477 (EXT_RECORDED_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700479 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800480 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700481 block++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jan Kara3bf25cb2007-05-08 00:35:16 -0700483 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 fibh->sbh = fibh->ebh;
485 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700486 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800488 (fibh->sbh->b_data + sb->s_blocksize +
489 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491 }
492
493 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800494 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800495 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200496 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800498 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200499 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 cfi->fileVersionNum = cpu_to_le16(1);
501 cfi->lengthFileIdent = namelen;
502 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700503 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800505 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
506 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100507 else {
508 /* Find the last extent and truncate it to proper size */
509 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
510 (EXT_RECORDED_ALLOCATED >> 30))
511 ;
512 elen -= dinfo->i_lenExtents - dir->i_size;
513 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
514 epos.offset -= sizeof(struct short_ad);
515 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
516 epos.offset -= sizeof(struct long_ad);
517 udf_write_aext(dir, &epos, &eloc, elen, 1);
518 dinfo->i_lenExtents = dir->i_size;
519 }
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100522 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700523 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100525 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
Jan Karab80697c2008-03-04 14:14:05 +0100527
528out_err:
529 fi = NULL;
530 if (fibh->sbh != fibh->ebh)
531 brelse(fibh->ebh);
532 brelse(fibh->sbh);
533out_ok:
534 brelse(epos.bh);
535 kfree(name);
536 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700540 struct udf_fileident_bh *fibh,
541 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200546 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
549}
550
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700551static int udf_create(struct inode *dir, struct dentry *dentry, int mode,
552 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 struct udf_fileident_bh fibh;
555 struct inode *inode;
556 struct fileIdentDesc cfi, *fi;
557 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800558 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 inode = udf_new_inode(dir, mode, &err);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700561 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return err;
563 }
564
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800565 iinfo = UDF_I(inode);
566 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 inode->i_data.a_ops = &udf_adinicb_aops;
568 else
569 inode->i_data.a_ops = &udf_aops;
570 inode->i_op = &udf_file_inode_operations;
571 inode->i_fop = &udf_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 mark_inode_dirty(inode);
573
Marcin Slusarz4b111112008-02-08 04:20:36 -0800574 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
575 if (!fi) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700576 inode->i_nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 mark_inode_dirty(inode);
578 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return err;
580 }
581 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800582 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700583 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800584 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800586 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700589 brelse(fibh.ebh);
590 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594}
595
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700596static int udf_mknod(struct inode *dir, struct dentry *dentry, int mode,
597 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700599 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct udf_fileident_bh fibh;
601 struct fileIdentDesc cfi, *fi;
602 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800603 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 if (!old_valid_dev(rdev))
606 return -EINVAL;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 err = -EIO;
609 inode = udf_new_inode(dir, mode, &err);
610 if (!inode)
611 goto out;
612
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800613 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 init_special_inode(inode, mode, rdev);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800615 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
616 if (!fi) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700617 inode->i_nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 mark_inode_dirty(inode);
619 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return err;
621 }
622 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800623 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700624 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800625 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800627 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 mark_inode_dirty(inode);
630
631 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700632 brelse(fibh.ebh);
633 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 d_instantiate(dentry, inode);
635 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700636
637out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return err;
639}
640
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700641static int udf_mkdir(struct inode *dir, struct dentry *dentry, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700643 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct udf_fileident_bh fibh;
645 struct fileIdentDesc cfi, *fi;
646 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800647 struct udf_inode_info *dinfo = UDF_I(dir);
648 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 err = -EMLINK;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700651 if (dir->i_nlink >= (256 << sizeof(dir->i_nlink)) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 goto out;
653
654 err = -EIO;
Dmitry Monakhova6c5a032010-03-04 17:32:22 +0300655 inode = udf_new_inode(dir, S_IFDIR | mode, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (!inode)
657 goto out;
658
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800659 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 inode->i_op = &udf_dir_inode_operations;
661 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800662 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
663 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 inode->i_nlink--;
665 mark_inode_dirty(inode);
666 iput(inode);
667 goto out;
668 }
669 inode->i_nlink = 2;
670 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800671 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700672 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800673 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800674 cfi.fileCharacteristics =
675 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700677 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 mark_inode_dirty(inode);
679
Marcin Slusarz4b111112008-02-08 04:20:36 -0800680 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
681 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 inode->i_nlink = 0;
683 mark_inode_dirty(inode);
684 iput(inode);
685 goto out;
686 }
687 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800688 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700689 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800690 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
692 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700693 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 mark_inode_dirty(dir);
695 d_instantiate(dentry, inode);
696 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700697 brelse(fibh.ebh);
698 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700700
701out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return err;
703}
704
705static int empty_dir(struct inode *dir)
706{
707 struct fileIdentDesc *fi, cfi;
708 struct udf_fileident_bh fibh;
709 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800710 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200712 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700713 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700714 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700715 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800716 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Jan Karaaf793292008-02-08 04:20:50 -0800718 f_pos = udf_ext0_offset(dir);
719 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800721 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800723 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800724 &epos, &eloc, &elen, &offset) ==
725 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200726 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700727 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800728 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200729 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800730 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200731 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800732 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 offset = 0;
734
Marcin Slusarz4b111112008-02-08 04:20:36 -0800735 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
736 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700737 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return 0;
739 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700740 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700741 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return 0;
743 }
744
Jan Karaaf793292008-02-08 04:20:50 -0800745 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700746 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
747 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700748 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700750 brelse(fibh.ebh);
751 brelse(fibh.sbh);
752 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return 0;
754 }
755
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700756 if (cfi.lengthFileIdent &&
757 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700759 brelse(fibh.ebh);
760 brelse(fibh.sbh);
761 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
763 }
764 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700767 brelse(fibh.ebh);
768 brelse(fibh.sbh);
769 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return 1;
772}
773
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700774static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700777 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct udf_fileident_bh fibh;
779 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200780 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400783 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!fi)
785 goto out;
786
787 retval = -EIO;
788 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200789 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 goto end_rmdir;
791 retval = -ENOTEMPTY;
792 if (!empty_dir(inode))
793 goto end_rmdir;
794 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
795 if (retval)
796 goto end_rmdir;
797 if (inode->i_nlink != 2)
798 udf_warning(inode->i_sb, "udf_rmdir",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700799 "empty directory has nlink != 2 (%d)",
800 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700801 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700803 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800804 inode->i_ctime = dir->i_ctime = dir->i_mtime =
805 current_fs_time(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 mark_inode_dirty(dir);
807
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700808end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700810 brelse(fibh.ebh);
811 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700812
813out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return retval;
815}
816
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700817static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700820 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 struct udf_fileident_bh fibh;
822 struct fileIdentDesc *fi;
823 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200824 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400827 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (!fi)
829 goto out;
830
831 retval = -EIO;
832 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200833 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 goto end_unlink;
835
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700836 if (!inode->i_nlink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 udf_debug("Deleting nonexistent file (%lu), %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700838 inode->i_ino, inode->i_nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 inode->i_nlink = 1;
840 }
841 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
842 if (retval)
843 goto end_unlink;
844 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
845 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700846 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 inode->i_ctime = dir->i_ctime;
848 retval = 0;
849
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700850end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700852 brelse(fibh.ebh);
853 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700854
855out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return retval;
857}
858
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700859static int udf_symlink(struct inode *dir, struct dentry *dentry,
860 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700862 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 struct pathComponent *pc;
Al Viro391e8bb2010-01-31 21:28:48 -0500864 const char *compstart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct udf_fileident_bh fibh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700866 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 int eoffset, elen = 0;
868 struct fileIdentDesc *fi;
869 struct fileIdentDesc cfi;
Al Viro391e8bb2010-01-31 21:28:48 -0500870 uint8_t *ea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 int err;
872 int block;
Al Viro391e8bb2010-01-31 21:28:48 -0500873 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 int namelen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800875 struct udf_inode_info *iinfo;
Jan Karad664b6a2010-10-20 18:28:46 +0200876 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Dmitry Monakhova6c5a032010-03-04 17:32:22 +0300878 inode = udf_new_inode(dir, S_IFLNK | S_IRWXUGO, &err);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800879 if (!inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 goto out;
881
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100882 iinfo = UDF_I(inode);
883 down_write(&iinfo->i_data_sem);
Jan Karab80697c2008-03-04 14:14:05 +0100884 name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
885 if (!name) {
886 err = -ENOMEM;
887 goto out_no_entry;
888 }
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +0400891 inode->i_op = &udf_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800893 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200894 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700895 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Jan Karad664b6a2010-10-20 18:28:46 +0200897 block = udf_new_block(sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800898 iinfo->i_location.partitionReferenceNum,
899 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (!block)
901 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800902 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700903 epos.offset = udf_file_entry_alloc_offset(inode);
904 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800906 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800907 iinfo->i_location.partitionReferenceNum;
Jan Karad664b6a2010-10-20 18:28:46 +0200908 bsize = sb->s_blocksize;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700909 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200910 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700911 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Jan Karad664b6a2010-10-20 18:28:46 +0200913 block = udf_get_pblock(sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800914 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800915 0);
Jan Karad664b6a2010-10-20 18:28:46 +0200916 epos.bh = udf_tgetblk(sb, block);
Jan Karaff116fc2007-05-08 00:35:14 -0700917 lock_buffer(epos.bh);
Jan Karad664b6a2010-10-20 18:28:46 +0200918 memset(epos.bh->b_data, 0x00, bsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700919 set_buffer_uptodate(epos.bh);
920 unlock_buffer(epos.bh);
921 mark_buffer_dirty_inode(epos.bh, inode);
922 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800923 } else
924 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Jan Karad664b6a2010-10-20 18:28:46 +0200926 eoffset = sb->s_blocksize - udf_ext0_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 pc = (struct pathComponent *)ea;
928
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700929 if (*symname == '/') {
930 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 symname++;
932 } while (*symname == '/');
933
934 pc->componentType = 1;
935 pc->lengthComponentIdent = 0;
936 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 elen += sizeof(struct pathComponent);
938 }
939
940 err = -ENAMETOOLONG;
941
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700942 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (elen + sizeof(struct pathComponent) > eoffset)
944 goto out_no_entry;
945
946 pc = (struct pathComponent *)(ea + elen);
947
Al Viro391e8bb2010-01-31 21:28:48 -0500948 compstart = symname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700950 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 symname++;
952 } while (*symname && *symname != '/');
953
954 pc->componentType = 5;
955 pc->lengthComponentIdent = 0;
956 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700957 if (compstart[0] == '.') {
958 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800960 else if ((symname - compstart) == 2 &&
961 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 pc->componentType = 3;
963 }
964
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700965 if (pc->componentType == 5) {
Jan Karad664b6a2010-10-20 18:28:46 +0200966 namelen = udf_put_filename(sb, compstart, name,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700967 symname - compstart);
968 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 goto out_no_entry;
970
Marcin Slusarz4b111112008-02-08 04:20:36 -0800971 if (elen + sizeof(struct pathComponent) + namelen >
972 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 goto out_no_entry;
974 else
975 pc->lengthComponentIdent = namelen;
976
977 memcpy(pc->componentIdent, name, namelen);
978 }
979
980 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
981
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700982 if (*symname) {
983 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 symname++;
985 } while (*symname == '/');
986 }
987 }
988
Jan Kara3bf25cb2007-05-08 00:35:16 -0700989 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800991 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
992 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +0100993 else
994 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 mark_inode_dirty(inode);
996
Marcin Slusarz4b111112008-02-08 04:20:36 -0800997 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
998 if (!fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto out_no_entry;
Jan Karad664b6a2010-10-20 18:28:46 +02001000 cfi.icb.extLength = cpu_to_le32(sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001001 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001002 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001003 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001004 cpu_to_le32(lvid_get_unique_id(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001007 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 mark_inode_dirty(dir);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001009 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001011 brelse(fibh.ebh);
1012 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 d_instantiate(dentry, inode);
1014 err = 0;
1015
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001016out:
Jan Karab80697c2008-03-04 14:14:05 +01001017 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return err;
1019
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001020out_no_entry:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001021 up_write(&iinfo->i_data_sem);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001022 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 iput(inode);
1024 goto out;
1025}
1026
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001027static int udf_link(struct dentry *old_dentry, struct inode *dir,
1028 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 struct inode *inode = old_dentry->d_inode;
1031 struct udf_fileident_bh fibh;
1032 struct fileIdentDesc cfi, *fi;
1033 int err;
1034
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001035 if (inode->i_nlink >= (256 << sizeof(inode->i_nlink)) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return -EMLINK;
1037 }
1038
Marcin Slusarz4b111112008-02-08 04:20:36 -08001039 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1040 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return err;
1042 }
1043 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001044 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001045 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001046 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001047 cpu_to_le32(lvid_get_unique_id(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001050 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001054 brelse(fibh.ebh);
1055 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001056 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 inode->i_ctime = current_fs_time(inode->i_sb);
1058 mark_inode_dirty(inode);
Al Viro7de9c6e2010-10-23 11:11:40 -04001059 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return 0;
1063}
1064
1065/* Anybody can rename anything with this: the permission checks are left to the
1066 * higher-level routines.
1067 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001068static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
1069 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001071 struct inode *old_inode = old_dentry->d_inode;
1072 struct inode *new_inode = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001074 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1075 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 struct buffer_head *dir_bh = NULL;
1077 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001078 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001079 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Al Viro9fbb76c2008-10-12 00:15:17 -04001081 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001082 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001084 brelse(ofibh.ebh);
1085 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001088 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001089 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 goto end_rename;
1091
Al Viro9fbb76c2008-10-12 00:15:17 -04001092 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001093 if (nfi) {
1094 if (!new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001096 brelse(nfibh.ebh);
1097 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 nfi = NULL;
1099 }
1100 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001101 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001102 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001104 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 retval = -ENOTEMPTY;
1106 if (!empty_dir(new_inode))
1107 goto end_rename;
1108 }
1109 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001110 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001111 dir_fi = udf_get_fileident(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001112 old_iinfo->i_ext.i_data -
1113 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001114 sizeof(struct extendedFileEntry) :
1115 sizeof(struct fileEntry)),
1116 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001117 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1119 if (!dir_bh)
1120 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001121 dir_fi = udf_get_fileident(dir_bh->b_data,
1122 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124 if (!dir_fi)
1125 goto end_rename;
1126 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001127 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001128 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 goto end_rename;
1130
1131 retval = -EMLINK;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001132 if (!new_inode &&
1133 new_dir->i_nlink >=
1134 (256 << sizeof(new_dir->i_nlink)) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 goto end_rename;
1136 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001137 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001138 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1139 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (!nfi)
1141 goto end_rename;
1142 }
1143
1144 /*
1145 * Like most other Unix systems, set the ctime for inodes on a
1146 * rename.
1147 */
1148 old_inode->i_ctime = current_fs_time(old_inode->i_sb);
1149 mark_inode_dirty(old_inode);
1150
1151 /*
1152 * ok, that's it
1153 */
1154 ncfi.fileVersionNum = ocfi.fileVersionNum;
1155 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001156 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(struct long_ad));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1158
1159 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001160 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1162
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001163 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 new_inode->i_ctime = current_fs_time(new_inode->i_sb);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001165 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167 old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
1168 mark_inode_dirty(old_dir);
1169
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001170 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001171 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001172 udf_update_tag((char *)dir_fi,
1173 (sizeof(struct fileIdentDesc) +
1174 le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001175 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001177 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001179
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001180 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001181 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001182 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001183 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001184 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 mark_inode_dirty(new_dir);
1186 }
1187 }
1188
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001189 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001191 brelse(ofibh.ebh);
1192 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194
1195 retval = 0;
1196
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001197end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001198 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001199 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001201 brelse(nfibh.ebh);
1202 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 return retval;
1206}
1207
Rasmus Rohde221e5832008-04-30 17:22:06 +02001208static struct dentry *udf_get_parent(struct dentry *child)
1209{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001210 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001211 struct inode *inode = NULL;
Al Viro9fbb76c2008-10-12 00:15:17 -04001212 struct qstr dotdot = {.name = "..", .len = 2};
Rasmus Rohde221e5832008-04-30 17:22:06 +02001213 struct fileIdentDesc cfi;
1214 struct udf_fileident_bh fibh;
1215
Rasmus Rohde221e5832008-04-30 17:22:06 +02001216 if (!udf_find_entry(child->d_inode, &dotdot, &fibh, &cfi))
1217 goto out_unlock;
1218
1219 if (fibh.sbh != fibh.ebh)
1220 brelse(fibh.ebh);
1221 brelse(fibh.sbh);
1222
Pekka Enberg97e961f2008-10-15 12:29:03 +02001223 tloc = lelb_to_cpu(cfi.icb.extLocation);
1224 inode = udf_iget(child->d_inode->i_sb, &tloc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001225 if (!inode)
1226 goto out_unlock;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001227
Christoph Hellwig44003722008-08-11 15:49:04 +02001228 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001229out_unlock:
Rasmus Rohde221e5832008-04-30 17:22:06 +02001230 return ERR_PTR(-EACCES);
1231}
1232
1233
1234static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1235 u16 partref, __u32 generation)
1236{
1237 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001238 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001239
1240 if (block == 0)
1241 return ERR_PTR(-ESTALE);
1242
1243 loc.logicalBlockNum = block;
1244 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001245 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001246
1247 if (inode == NULL)
1248 return ERR_PTR(-ENOMEM);
1249
1250 if (generation && inode->i_generation != generation) {
1251 iput(inode);
1252 return ERR_PTR(-ESTALE);
1253 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001254 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001255}
1256
1257static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1258 struct fid *fid, int fh_len, int fh_type)
1259{
1260 if ((fh_len != 3 && fh_len != 5) ||
1261 (fh_type != FILEID_UDF_WITH_PARENT &&
1262 fh_type != FILEID_UDF_WITHOUT_PARENT))
1263 return NULL;
1264
1265 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1266 fid->udf.generation);
1267}
1268
1269static struct dentry *udf_fh_to_parent(struct super_block *sb,
1270 struct fid *fid, int fh_len, int fh_type)
1271{
1272 if (fh_len != 5 || fh_type != FILEID_UDF_WITH_PARENT)
1273 return NULL;
1274
1275 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1276 fid->udf.parent_partref,
1277 fid->udf.parent_generation);
1278}
1279static int udf_encode_fh(struct dentry *de, __u32 *fh, int *lenp,
1280 int connectable)
1281{
1282 int len = *lenp;
1283 struct inode *inode = de->d_inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001284 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001285 struct fid *fid = (struct fid *)fh;
1286 int type = FILEID_UDF_WITHOUT_PARENT;
1287
1288 if (len < 3 || (connectable && len < 5))
1289 return 255;
1290
1291 *lenp = 3;
1292 fid->udf.block = location.logicalBlockNum;
1293 fid->udf.partref = location.partitionReferenceNum;
1294 fid->udf.generation = inode->i_generation;
1295
1296 if (connectable && !S_ISDIR(inode->i_mode)) {
1297 spin_lock(&de->d_lock);
1298 inode = de->d_parent->d_inode;
1299 location = UDF_I(inode)->i_location;
1300 fid->udf.parent_block = location.logicalBlockNum;
1301 fid->udf.parent_partref = location.partitionReferenceNum;
1302 fid->udf.parent_generation = inode->i_generation;
1303 spin_unlock(&de->d_lock);
1304 *lenp = 5;
1305 type = FILEID_UDF_WITH_PARENT;
1306 }
1307
1308 return type;
1309}
1310
1311const struct export_operations udf_export_ops = {
1312 .encode_fh = udf_encode_fh,
1313 .fh_to_dentry = udf_fh_to_dentry,
1314 .fh_to_parent = udf_fh_to_parent,
1315 .get_parent = udf_get_parent,
1316};
1317
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001318const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001319 .lookup = udf_lookup,
1320 .create = udf_create,
1321 .link = udf_link,
1322 .unlink = udf_unlink,
1323 .symlink = udf_symlink,
1324 .mkdir = udf_mkdir,
1325 .rmdir = udf_rmdir,
1326 .mknod = udf_mknod,
1327 .rename = udf_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328};
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001329const struct inode_operations udf_symlink_inode_operations = {
1330 .readlink = generic_readlink,
1331 .follow_link = page_follow_link_light,
1332 .put_link = page_put_link,
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001333};