blob: 6a29fa34c478490cc45732af39072e78fee180e0 [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:
Jan Kara9afadc42008-05-06 18:26:17 +0200411 /* Is there any extent whose size we need to round up? */
412 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB && elen) {
Jan Kara05343c42008-02-08 04:20:51 -0800413 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
414 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200415 epos.offset -= sizeof(struct short_ad);
Jan Kara05343c42008-02-08 04:20:51 -0800416 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200417 epos.offset -= sizeof(struct long_ad);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200418 udf_write_aext(dir, &epos, &eloc, elen, 1);
Jan Kara05343c42008-02-08 04:20:51 -0800419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 f_pos += nfidlen;
421
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800422 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700423 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700424 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700425 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 fibh->soffset -= udf_ext0_offset(dir);
427 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800428 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700430 brelse(fibh->ebh);
431 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800432 fibh->sbh = fibh->ebh =
433 udf_expand_dir_adinicb(dir, &block, err);
434 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100435 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800436 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700437 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800438 /* Load extent udf_expand_dir_adinicb() has created */
439 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700442 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 fibh->soffset = fibh->eoffset;
444 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700445 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700446 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 fibh->sbh = fibh->ebh;
448 }
449
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800450 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
451 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800452 fi = (struct fileIdentDesc *)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800453 (dinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800454 fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800455 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800456 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700457 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800458 block = eloc.logicalBlockNum +
459 ((elen - 1) >>
460 dir->i_sb->s_blocksize_bits);
461 fi = (struct fileIdentDesc *)
462 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700464 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 fibh->soffset = fibh->eoffset - sb->s_blocksize;
466 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700467 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700468 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 fibh->sbh = fibh->ebh;
470 }
471
472 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700473 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800474 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800475 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100476 if (!fibh->ebh)
477 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700479 if (!fibh->soffset) {
Jan Karaff116fc2007-05-08 00:35:14 -0700480 if (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700481 (EXT_RECORDED_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700483 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800484 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700485 block++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Jan Kara3bf25cb2007-05-08 00:35:16 -0700487 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 fibh->sbh = fibh->ebh;
489 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700490 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800492 (fibh->sbh->b_data + sb->s_blocksize +
493 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 }
496
497 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800498 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800499 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200500 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800502 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200503 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 cfi->fileVersionNum = cpu_to_le16(1);
505 cfi->lengthFileIdent = namelen;
506 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700507 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800509 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
510 dinfo->i_lenAlloc += nfidlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100512 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700513 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100515 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Jan Karab80697c2008-03-04 14:14:05 +0100517
518out_err:
519 fi = NULL;
520 if (fibh->sbh != fibh->ebh)
521 brelse(fibh->ebh);
522 brelse(fibh->sbh);
523out_ok:
524 brelse(epos.bh);
525 kfree(name);
526 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
529static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700530 struct udf_fileident_bh *fibh,
531 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200536 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
539}
540
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700541static int udf_create(struct inode *dir, struct dentry *dentry, int mode,
542 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 struct udf_fileident_bh fibh;
545 struct inode *inode;
546 struct fileIdentDesc cfi, *fi;
547 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800548 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 lock_kernel();
551 inode = udf_new_inode(dir, mode, &err);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700552 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 unlock_kernel();
554 return err;
555 }
556
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800557 iinfo = UDF_I(inode);
558 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 inode->i_data.a_ops = &udf_adinicb_aops;
560 else
561 inode->i_data.a_ops = &udf_aops;
562 inode->i_op = &udf_file_inode_operations;
563 inode->i_fop = &udf_file_operations;
564 inode->i_mode = mode;
565 mark_inode_dirty(inode);
566
Marcin Slusarz4b111112008-02-08 04:20:36 -0800567 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
568 if (!fi) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700569 inode->i_nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 mark_inode_dirty(inode);
571 iput(inode);
572 unlock_kernel();
573 return err;
574 }
575 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800576 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700577 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800578 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800580 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700583 brelse(fibh.ebh);
584 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 unlock_kernel();
586 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return 0;
589}
590
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700591static int udf_mknod(struct inode *dir, struct dentry *dentry, int mode,
592 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700594 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct udf_fileident_bh fibh;
596 struct fileIdentDesc cfi, *fi;
597 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800598 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (!old_valid_dev(rdev))
601 return -EINVAL;
602
603 lock_kernel();
604 err = -EIO;
605 inode = udf_new_inode(dir, mode, &err);
606 if (!inode)
607 goto out;
608
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800609 iinfo = UDF_I(inode);
David Howells7706bb32008-11-14 10:39:03 +1100610 inode->i_uid = current_fsuid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 init_special_inode(inode, mode, rdev);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800612 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
613 if (!fi) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700614 inode->i_nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 mark_inode_dirty(inode);
616 iput(inode);
617 unlock_kernel();
618 return err;
619 }
620 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800621 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700622 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800623 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800625 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 mark_inode_dirty(inode);
628
629 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700630 brelse(fibh.ebh);
631 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 d_instantiate(dentry, inode);
633 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700634
635out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 unlock_kernel();
637 return err;
638}
639
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700640static int udf_mkdir(struct inode *dir, struct dentry *dentry, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700642 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct udf_fileident_bh fibh;
644 struct fileIdentDesc cfi, *fi;
645 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800646 struct udf_inode_info *dinfo = UDF_I(dir);
647 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 lock_kernel();
650 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;
655 inode = udf_new_inode(dir, S_IFDIR, &err);
656 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 inode->i_mode = S_IFDIR | mode;
679 if (dir->i_mode & S_ISGID)
680 inode->i_mode |= S_ISGID;
681 mark_inode_dirty(inode);
682
Marcin Slusarz4b111112008-02-08 04:20:36 -0800683 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
684 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 inode->i_nlink = 0;
686 mark_inode_dirty(inode);
687 iput(inode);
688 goto out;
689 }
690 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800691 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700692 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800693 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
695 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700696 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 mark_inode_dirty(dir);
698 d_instantiate(dentry, inode);
699 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700700 brelse(fibh.ebh);
701 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700703
704out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 unlock_kernel();
706 return err;
707}
708
709static int empty_dir(struct inode *dir)
710{
711 struct fileIdentDesc *fi, cfi;
712 struct udf_fileident_bh fibh;
713 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800714 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200716 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700717 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700718 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700719 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800720 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Jan Karaaf793292008-02-08 04:20:50 -0800722 f_pos = udf_ext0_offset(dir);
723 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800725 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800727 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800728 &epos, &eloc, &elen, &offset) ==
729 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200730 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700731 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800732 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200733 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800734 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200735 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800736 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 offset = 0;
738
Marcin Slusarz4b111112008-02-08 04:20:36 -0800739 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
740 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700741 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return 0;
743 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700744 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700745 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return 0;
747 }
748
Jan Karaaf793292008-02-08 04:20:50 -0800749 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700750 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
751 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700752 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700754 brelse(fibh.ebh);
755 brelse(fibh.sbh);
756 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return 0;
758 }
759
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700760 if (cfi.lengthFileIdent &&
761 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700763 brelse(fibh.ebh);
764 brelse(fibh.sbh);
765 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return 0;
767 }
768 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700771 brelse(fibh.ebh);
772 brelse(fibh.sbh);
773 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 1;
776}
777
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700778static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700781 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct udf_fileident_bh fibh;
783 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200784 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 retval = -ENOENT;
787 lock_kernel();
Al Viro9fbb76c2008-10-12 00:15:17 -0400788 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (!fi)
790 goto out;
791
792 retval = -EIO;
793 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200794 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 goto end_rmdir;
796 retval = -ENOTEMPTY;
797 if (!empty_dir(inode))
798 goto end_rmdir;
799 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
800 if (retval)
801 goto end_rmdir;
802 if (inode->i_nlink != 2)
803 udf_warning(inode->i_sb, "udf_rmdir",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700804 "empty directory has nlink != 2 (%d)",
805 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700806 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700808 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800809 inode->i_ctime = dir->i_ctime = dir->i_mtime =
810 current_fs_time(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 mark_inode_dirty(dir);
812
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700813end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700815 brelse(fibh.ebh);
816 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700817
818out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 unlock_kernel();
820 return retval;
821}
822
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700823static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700826 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 struct udf_fileident_bh fibh;
828 struct fileIdentDesc *fi;
829 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200830 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 retval = -ENOENT;
833 lock_kernel();
Al Viro9fbb76c2008-10-12 00:15:17 -0400834 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (!fi)
836 goto out;
837
838 retval = -EIO;
839 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200840 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto end_unlink;
842
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700843 if (!inode->i_nlink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 udf_debug("Deleting nonexistent file (%lu), %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700845 inode->i_ino, inode->i_nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 inode->i_nlink = 1;
847 }
848 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
849 if (retval)
850 goto end_unlink;
851 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
852 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700853 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 inode->i_ctime = dir->i_ctime;
855 retval = 0;
856
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700857end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700859 brelse(fibh.ebh);
860 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700861
862out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 unlock_kernel();
864 return retval;
865}
866
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700867static int udf_symlink(struct inode *dir, struct dentry *dentry,
868 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700870 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 struct pathComponent *pc;
872 char *compstart;
873 struct udf_fileident_bh fibh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700874 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 int eoffset, elen = 0;
876 struct fileIdentDesc *fi;
877 struct fileIdentDesc cfi;
878 char *ea;
879 int err;
880 int block;
Jan Karab80697c2008-03-04 14:14:05 +0100881 char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 int namelen;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800883 struct buffer_head *bh;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800884 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 lock_kernel();
Marcin Slusarz4b111112008-02-08 04:20:36 -0800887 inode = udf_new_inode(dir, S_IFLNK, &err);
888 if (!inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 goto out;
890
Jan Karab80697c2008-03-04 14:14:05 +0100891 name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
892 if (!name) {
893 err = -ENOMEM;
894 goto out_no_entry;
895 }
896
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800897 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 inode->i_mode = S_IFLNK | S_IRWXUGO;
899 inode->i_data.a_ops = &udf_symlink_aops;
900 inode->i_op = &page_symlink_inode_operations;
901
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800902 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200903 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700904 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800907 iinfo->i_location.partitionReferenceNum,
908 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (!block)
910 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800911 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700912 epos.offset = udf_file_entry_alloc_offset(inode);
913 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800915 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800916 iinfo->i_location.partitionReferenceNum;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700917 bsize = inode->i_sb->s_blocksize;
918 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200919 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700920 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 block = udf_get_pblock(inode->i_sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800923 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800924 0);
Jan Karaff116fc2007-05-08 00:35:14 -0700925 epos.bh = udf_tread(inode->i_sb, block);
926 lock_buffer(epos.bh);
927 memset(epos.bh->b_data, 0x00, inode->i_sb->s_blocksize);
928 set_buffer_uptodate(epos.bh);
929 unlock_buffer(epos.bh);
930 mark_buffer_dirty_inode(epos.bh, inode);
931 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800932 } else
933 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 eoffset = inode->i_sb->s_blocksize - udf_ext0_offset(inode);
936 pc = (struct pathComponent *)ea;
937
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700938 if (*symname == '/') {
939 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 symname++;
941 } while (*symname == '/');
942
943 pc->componentType = 1;
944 pc->lengthComponentIdent = 0;
945 pc->componentFileVersionNum = 0;
946 pc += sizeof(struct pathComponent);
947 elen += sizeof(struct pathComponent);
948 }
949
950 err = -ENAMETOOLONG;
951
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700952 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (elen + sizeof(struct pathComponent) > eoffset)
954 goto out_no_entry;
955
956 pc = (struct pathComponent *)(ea + elen);
957
958 compstart = (char *)symname;
959
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700960 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 symname++;
962 } while (*symname && *symname != '/');
963
964 pc->componentType = 5;
965 pc->lengthComponentIdent = 0;
966 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700967 if (compstart[0] == '.') {
968 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800970 else if ((symname - compstart) == 2 &&
971 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 pc->componentType = 3;
973 }
974
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700975 if (pc->componentType == 5) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700976 namelen = udf_put_filename(inode->i_sb, compstart, name,
977 symname - compstart);
978 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 goto out_no_entry;
980
Marcin Slusarz4b111112008-02-08 04:20:36 -0800981 if (elen + sizeof(struct pathComponent) + namelen >
982 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 goto out_no_entry;
984 else
985 pc->lengthComponentIdent = namelen;
986
987 memcpy(pc->componentIdent, name, namelen);
988 }
989
990 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
991
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700992 if (*symname) {
993 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 symname++;
995 } while (*symname == '/');
996 }
997 }
998
Jan Kara3bf25cb2007-05-08 00:35:16 -0700999 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001001 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1002 iinfo->i_lenAlloc = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 mark_inode_dirty(inode);
1004
Marcin Slusarz4b111112008-02-08 04:20:36 -08001005 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1006 if (!fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 goto out_no_entry;
1008 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001009 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001010 bh = UDF_SB(inode->i_sb)->s_lvid_bh;
1011 if (bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001012 struct logicalVolIntegrityDesc *lvid =
1013 (struct logicalVolIntegrityDesc *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct logicalVolHeaderDesc *lvhd;
1015 uint64_t uniqueID;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001016 lvhd = (struct logicalVolHeaderDesc *)
1017 lvid->logicalVolContentsUse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 uniqueID = le64_to_cpu(lvhd->uniqueID);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001019 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
1020 cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (!(++uniqueID & 0x00000000FFFFFFFFUL))
1022 uniqueID += 16;
1023 lvhd->uniqueID = cpu_to_le64(uniqueID);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001024 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
1026 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001027 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001030 brelse(fibh.ebh);
1031 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 d_instantiate(dentry, inode);
1033 err = 0;
1034
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001035out:
Jan Karab80697c2008-03-04 14:14:05 +01001036 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 unlock_kernel();
1038 return err;
1039
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001040out_no_entry:
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001041 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 iput(inode);
1043 goto out;
1044}
1045
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001046static int udf_link(struct dentry *old_dentry, struct inode *dir,
1047 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 struct inode *inode = old_dentry->d_inode;
1050 struct udf_fileident_bh fibh;
1051 struct fileIdentDesc cfi, *fi;
1052 int err;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001053 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 lock_kernel();
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001056 if (inode->i_nlink >= (256 << sizeof(inode->i_nlink)) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 unlock_kernel();
1058 return -EMLINK;
1059 }
1060
Marcin Slusarz4b111112008-02-08 04:20:36 -08001061 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1062 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 unlock_kernel();
1064 return err;
1065 }
1066 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001067 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001068 bh = UDF_SB(inode->i_sb)->s_lvid_bh;
1069 if (bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001070 struct logicalVolIntegrityDesc *lvid =
1071 (struct logicalVolIntegrityDesc *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 struct logicalVolHeaderDesc *lvhd;
1073 uint64_t uniqueID;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001074 lvhd = (struct logicalVolHeaderDesc *)
1075 (lvid->logicalVolContentsUse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 uniqueID = le64_to_cpu(lvhd->uniqueID);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001077 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
1078 cpu_to_le32(uniqueID & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (!(++uniqueID & 0x00000000FFFFFFFFUL))
1080 uniqueID += 16;
1081 lvhd->uniqueID = cpu_to_le64(uniqueID);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001082 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001085 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001089 brelse(fibh.ebh);
1090 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001091 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 inode->i_ctime = current_fs_time(inode->i_sb);
1093 mark_inode_dirty(inode);
1094 atomic_inc(&inode->i_count);
1095 d_instantiate(dentry, inode);
1096 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return 0;
1099}
1100
1101/* Anybody can rename anything with this: the permission checks are left to the
1102 * higher-level routines.
1103 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001104static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
1105 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001107 struct inode *old_inode = old_dentry->d_inode;
1108 struct inode *new_inode = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001110 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1111 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 struct buffer_head *dir_bh = NULL;
1113 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001114 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001115 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 lock_kernel();
Al Viro9fbb76c2008-10-12 00:15:17 -04001118 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001119 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001121 brelse(ofibh.ebh);
1122 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001125 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001126 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 goto end_rename;
1128
Al Viro9fbb76c2008-10-12 00:15:17 -04001129 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001130 if (nfi) {
1131 if (!new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001133 brelse(nfibh.ebh);
1134 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 nfi = NULL;
1136 }
1137 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001138 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001139 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001141 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 retval = -ENOTEMPTY;
1143 if (!empty_dir(new_inode))
1144 goto end_rename;
1145 }
1146 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001147 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001148 dir_fi = udf_get_fileident(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001149 old_iinfo->i_ext.i_data -
1150 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001151 sizeof(struct extendedFileEntry) :
1152 sizeof(struct fileEntry)),
1153 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001154 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1156 if (!dir_bh)
1157 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001158 dir_fi = udf_get_fileident(dir_bh->b_data,
1159 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161 if (!dir_fi)
1162 goto end_rename;
1163 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001164 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001165 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 goto end_rename;
1167
1168 retval = -EMLINK;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001169 if (!new_inode &&
1170 new_dir->i_nlink >=
1171 (256 << sizeof(new_dir->i_nlink)) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 goto end_rename;
1173 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001174 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001175 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1176 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (!nfi)
1178 goto end_rename;
1179 }
1180
1181 /*
1182 * Like most other Unix systems, set the ctime for inodes on a
1183 * rename.
1184 */
1185 old_inode->i_ctime = current_fs_time(old_inode->i_sb);
1186 mark_inode_dirty(old_inode);
1187
1188 /*
1189 * ok, that's it
1190 */
1191 ncfi.fileVersionNum = ocfi.fileVersionNum;
1192 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001193 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(struct long_ad));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1195
1196 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001197 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1199
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001200 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 new_inode->i_ctime = current_fs_time(new_inode->i_sb);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001202 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204 old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
1205 mark_inode_dirty(old_dir);
1206
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001207 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001208 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001209 udf_update_tag((char *)dir_fi,
1210 (sizeof(struct fileIdentDesc) +
1211 le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001212 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001214 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001216
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001217 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001218 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001219 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001220 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001221 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 mark_inode_dirty(new_dir);
1223 }
1224 }
1225
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001226 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001228 brelse(ofibh.ebh);
1229 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
1232 retval = 0;
1233
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001234end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001235 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001236 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001238 brelse(nfibh.ebh);
1239 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return retval;
1244}
1245
Rasmus Rohde221e5832008-04-30 17:22:06 +02001246static struct dentry *udf_get_parent(struct dentry *child)
1247{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001248 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001249 struct inode *inode = NULL;
Al Viro9fbb76c2008-10-12 00:15:17 -04001250 struct qstr dotdot = {.name = "..", .len = 2};
Rasmus Rohde221e5832008-04-30 17:22:06 +02001251 struct fileIdentDesc cfi;
1252 struct udf_fileident_bh fibh;
1253
Rasmus Rohde221e5832008-04-30 17:22:06 +02001254 lock_kernel();
1255 if (!udf_find_entry(child->d_inode, &dotdot, &fibh, &cfi))
1256 goto out_unlock;
1257
1258 if (fibh.sbh != fibh.ebh)
1259 brelse(fibh.ebh);
1260 brelse(fibh.sbh);
1261
Pekka Enberg97e961f2008-10-15 12:29:03 +02001262 tloc = lelb_to_cpu(cfi.icb.extLocation);
1263 inode = udf_iget(child->d_inode->i_sb, &tloc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001264 if (!inode)
1265 goto out_unlock;
1266 unlock_kernel();
1267
Christoph Hellwig44003722008-08-11 15:49:04 +02001268 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001269out_unlock:
1270 unlock_kernel();
1271 return ERR_PTR(-EACCES);
1272}
1273
1274
1275static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1276 u16 partref, __u32 generation)
1277{
1278 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001279 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001280
1281 if (block == 0)
1282 return ERR_PTR(-ESTALE);
1283
1284 loc.logicalBlockNum = block;
1285 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001286 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001287
1288 if (inode == NULL)
1289 return ERR_PTR(-ENOMEM);
1290
1291 if (generation && inode->i_generation != generation) {
1292 iput(inode);
1293 return ERR_PTR(-ESTALE);
1294 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001295 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001296}
1297
1298static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1299 struct fid *fid, int fh_len, int fh_type)
1300{
1301 if ((fh_len != 3 && fh_len != 5) ||
1302 (fh_type != FILEID_UDF_WITH_PARENT &&
1303 fh_type != FILEID_UDF_WITHOUT_PARENT))
1304 return NULL;
1305
1306 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1307 fid->udf.generation);
1308}
1309
1310static struct dentry *udf_fh_to_parent(struct super_block *sb,
1311 struct fid *fid, int fh_len, int fh_type)
1312{
1313 if (fh_len != 5 || fh_type != FILEID_UDF_WITH_PARENT)
1314 return NULL;
1315
1316 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1317 fid->udf.parent_partref,
1318 fid->udf.parent_generation);
1319}
1320static int udf_encode_fh(struct dentry *de, __u32 *fh, int *lenp,
1321 int connectable)
1322{
1323 int len = *lenp;
1324 struct inode *inode = de->d_inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001325 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001326 struct fid *fid = (struct fid *)fh;
1327 int type = FILEID_UDF_WITHOUT_PARENT;
1328
1329 if (len < 3 || (connectable && len < 5))
1330 return 255;
1331
1332 *lenp = 3;
1333 fid->udf.block = location.logicalBlockNum;
1334 fid->udf.partref = location.partitionReferenceNum;
1335 fid->udf.generation = inode->i_generation;
1336
1337 if (connectable && !S_ISDIR(inode->i_mode)) {
1338 spin_lock(&de->d_lock);
1339 inode = de->d_parent->d_inode;
1340 location = UDF_I(inode)->i_location;
1341 fid->udf.parent_block = location.logicalBlockNum;
1342 fid->udf.parent_partref = location.partitionReferenceNum;
1343 fid->udf.parent_generation = inode->i_generation;
1344 spin_unlock(&de->d_lock);
1345 *lenp = 5;
1346 type = FILEID_UDF_WITH_PARENT;
1347 }
1348
1349 return type;
1350}
1351
1352const struct export_operations udf_export_ops = {
1353 .encode_fh = udf_encode_fh,
1354 .fh_to_dentry = udf_fh_to_dentry,
1355 .fh_to_parent = udf_fh_to_parent,
1356 .get_parent = udf_get_parent,
1357};
1358
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001359const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001360 .lookup = udf_lookup,
1361 .create = udf_create,
1362 .link = udf_link,
1363 .unlink = udf_unlink,
1364 .symlink = udf_symlink,
1365 .mkdir = udf_mkdir,
1366 .rmdir = udf_rmdir,
1367 .mknod = udf_mknod,
1368 .rename = udf_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369};