blob: 33b246b82c98510289d533fcdcbc59154d38589f [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] == '.';
Jan Kara3ee30392014-12-18 22:49:12 +0100162 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Jan Karaaf793292008-02-08 04:20:50 -0800164 size = udf_ext0_offset(dir) + dir->i_size;
165 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Jan Karab80697c2008-03-04 14:14:05 +0100167 fibh->sbh = fibh->ebh = NULL;
Jan Kara3ee30392014-12-18 22:49:12 +0100168 fibh->soffset = fibh->eoffset = f_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +0100169 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +0100170 if (inode_bmap(dir, f_pos >> sb->s_blocksize_bits, &epos,
Jan Karab80697c2008-03-04 14:14:05 +0100171 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30))
172 goto out_err;
Jan Kara3ee30392014-12-18 22:49:12 +0100173 block = udf_get_lb_pblock(sb, &eloc, offset);
174 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800175 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200176 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800177 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200178 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800179 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 offset = 0;
181
Jan Kara3ee30392014-12-18 22:49:12 +0100182 fibh->sbh = fibh->ebh = udf_tread(sb, block);
Jan Karab80697c2008-03-04 14:14:05 +0100183 if (!fibh->sbh)
184 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186
Jan Karab80697c2008-03-04 14:14:05 +0100187 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
188 if (!fname)
189 goto out_err;
190
Jan Karaaf793292008-02-08 04:20:50 -0800191 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700192 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
193 &elen, &offset);
Jan Karab80697c2008-03-04 14:14:05 +0100194 if (!fi)
195 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 liu = le16_to_cpu(cfi->lengthOfImpUse);
198 lfi = cfi->lengthFileIdent;
199
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700200 if (fibh->sbh == fibh->ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 nameptr = fi->fileIdent + liu;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700202 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int poffset; /* Unpaded ending offset */
204
Marcin Slusarz4b111112008-02-08 04:20:36 -0800205 poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
206 liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Marcin Slusarz4b111112008-02-08 04:20:36 -0800208 if (poffset >= lfi)
209 nameptr = (uint8_t *)(fibh->ebh->b_data +
210 poffset - lfi);
211 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 nameptr = fname;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800213 memcpy(nameptr, fi->fileIdent + liu,
214 lfi - poffset);
215 memcpy(nameptr + lfi - poffset,
216 fibh->ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218 }
219
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700220 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100221 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 continue;
223 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700224
225 if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100226 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 continue;
228 }
229
Rasmus Rohde221e5832008-04-30 17:22:06 +0200230 if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) &&
Jesper Juhla4264b32010-12-12 23:18:15 +0100231 isdotdot)
232 goto out_ok;
Rasmus Rohde221e5832008-04-30 17:22:06 +0200233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!lfi)
235 continue;
236
Jan Kara3ee30392014-12-18 22:49:12 +0100237 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Al Viro9fbb76c2008-10-12 00:15:17 -0400238 if (flen && udf_match(flen, fname, child->len, child->name))
Jan Karab80697c2008-03-04 14:14:05 +0100239 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700241
Jan Karab80697c2008-03-04 14:14:05 +0100242out_err:
243 fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700245 brelse(fibh->ebh);
246 brelse(fibh->sbh);
Jan Karab80697c2008-03-04 14:14:05 +0100247out_ok:
Jan Kara3bf25cb2007-05-08 00:35:16 -0700248 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100249 kfree(fname);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700250
Jan Karab80697c2008-03-04 14:14:05 +0100251 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700254static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400255 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct inode *inode = NULL;
Jayachandran Cdb9a3692006-02-03 03:04:50 -0800258 struct fileIdentDesc cfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 struct udf_fileident_bh fibh;
260
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700261 if (dentry->d_name.len > UDF_NAME_LEN - 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return ERR_PTR(-ENAMETOOLONG);
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#ifdef UDF_RECOVERY
265 /* temporary shorthand for specifying files by inode number */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700266 if (!strncmp(dentry->d_name.name, ".B=", 3)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200267 struct kernel_lb_addr lb = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700268 .logicalBlockNum = 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800269 .partitionReferenceNum =
270 simple_strtoul(dentry->d_name.name + 3,
271 NULL, 0),
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700272 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 inode = udf_iget(dir->i_sb, lb);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200274 if (IS_ERR(inode))
275 return inode;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800276 } else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700277#endif /* UDF_RECOVERY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Al Viro9fbb76c2008-10-12 00:15:17 -0400279 if (udf_find_entry(dir, &dentry->d_name, &fibh, &cfi)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200280 struct kernel_lb_addr loc;
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700283 brelse(fibh.ebh);
284 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Pekka Enberg97e961f2008-10-15 12:29:03 +0200286 loc = lelb_to_cpu(cfi.icb.extLocation);
287 inode = udf_iget(dir->i_sb, &loc);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200288 if (IS_ERR(inode))
289 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700291
Rasmus Rohde221e5832008-04-30 17:22:06 +0200292 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700295static struct fileIdentDesc *udf_add_entry(struct inode *dir,
296 struct dentry *dentry,
297 struct udf_fileident_bh *fibh,
298 struct fileIdentDesc *cfi, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800300 struct super_block *sb = dir->i_sb;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700301 struct fileIdentDesc *fi = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500302 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 int namelen;
304 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800305 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 int nfidlen;
307 uint8_t lfi;
308 uint16_t liu;
309 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200310 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200311 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700312 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700313 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800314 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Jan Karab80697c2008-03-04 14:14:05 +0100316 fibh->sbh = fibh->ebh = NULL;
317 name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
318 if (!name) {
319 *err = -ENOMEM;
320 goto out_err;
321 }
322
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700323 if (dentry) {
324 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100326 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800328 namelen = udf_put_filename(sb, dentry->d_name.name, name,
329 dentry->d_name.len);
330 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100332 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700334 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 nfidlen = (sizeof(struct fileIdentDesc) + namelen + 3) & ~3;
339
Jan Karaaf793292008-02-08 04:20:50 -0800340 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Jan Karaaf793292008-02-08 04:20:50 -0800342 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800343 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100344 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
345 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
346 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
347 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200348 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100349 fibh->soffset = fibh->eoffset = sb->s_blocksize;
350 goto add;
351 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200352 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700353 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800354 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200355 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800356 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200357 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800358 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 offset = 0;
360
Marcin Slusarz4b111112008-02-08 04:20:36 -0800361 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
362 if (!fibh->sbh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100364 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800367 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369
Jan Karaaf793292008-02-08 04:20:50 -0800370 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700371 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
372 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700374 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100376 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
379 liu = le16_to_cpu(cfi->lengthOfImpUse);
380 lfi = cfi->lengthFileIdent;
381
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700382 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800383 if (((sizeof(struct fileIdentDesc) +
384 liu + lfi + 3) & ~3) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 cfi->descTag.tagSerialNum = cpu_to_le16(1);
386 cfi->fileVersionNum = cpu_to_le16(1);
387 cfi->fileCharacteristics = 0;
388 cfi->lengthFileIdent = namelen;
389 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800390 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
391 name))
Jan Karab80697c2008-03-04 14:14:05 +0100392 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800393 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100395 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 }
398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700401add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 f_pos += nfidlen;
403
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800404 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700405 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700406 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700407 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 fibh->soffset -= udf_ext0_offset(dir);
409 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800410 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700412 brelse(fibh->ebh);
413 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800414 fibh->sbh = fibh->ebh =
415 udf_expand_dir_adinicb(dir, &block, err);
416 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100417 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800418 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700419 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800420 /* Load extent udf_expand_dir_adinicb() has created */
421 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
Jan Kara2c948b32009-12-03 13:39:28 +0100424 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700425 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 fibh->soffset = fibh->eoffset;
427 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700429 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 fibh->sbh = fibh->ebh;
431 }
432
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800433 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
434 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800435 fi = (struct fileIdentDesc *)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800436 (dinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800437 fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800438 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800439 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700440 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800441 block = eloc.logicalBlockNum +
442 ((elen - 1) >>
443 dir->i_sb->s_blocksize_bits);
444 fi = (struct fileIdentDesc *)
445 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700447 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100448 /* Round up last extent in the file */
449 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
450 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
451 epos.offset -= sizeof(struct short_ad);
452 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
453 epos.offset -= sizeof(struct long_ad);
454 udf_write_aext(dir, &epos, &eloc, elen, 1);
455 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
456 - 1) & ~(sb->s_blocksize - 1);
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 fibh->soffset = fibh->eoffset - sb->s_blocksize;
459 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700460 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700461 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 fibh->sbh = fibh->ebh;
463 }
464
465 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700466 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800467 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800468 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100469 if (!fibh->ebh)
470 goto out_err;
Jan Kara4651c592010-11-25 03:56:24 +0100471 /* Extents could have been merged, invalidate our position */
472 brelse(epos.bh);
473 epos.bh = NULL;
474 epos.block = dinfo->i_location;
475 epos.offset = udf_file_entry_alloc_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700477 if (!fibh->soffset) {
Jan Kara4651c592010-11-25 03:56:24 +0100478 /* Find the freshly allocated block */
479 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
480 (EXT_RECORDED_ALLOCATED >> 30))
481 ;
482 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700483 dir->i_sb->s_blocksize_bits);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700484 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 fibh->sbh = fibh->ebh;
486 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700487 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800489 (fibh->sbh->b_data + sb->s_blocksize +
490 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492 }
493
494 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800495 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800496 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200497 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800499 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200500 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 cfi->fileVersionNum = cpu_to_le16(1);
502 cfi->lengthFileIdent = namelen;
503 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700504 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800506 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
507 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100508 else {
509 /* Find the last extent and truncate it to proper size */
510 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
511 (EXT_RECORDED_ALLOCATED >> 30))
512 ;
513 elen -= dinfo->i_lenExtents - dir->i_size;
514 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
515 epos.offset -= sizeof(struct short_ad);
516 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
517 epos.offset -= sizeof(struct long_ad);
518 udf_write_aext(dir, &epos, &eloc, elen, 1);
519 dinfo->i_lenExtents = dir->i_size;
520 }
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100523 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700524 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100526 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Jan Karab80697c2008-03-04 14:14:05 +0100528
529out_err:
530 fi = NULL;
531 if (fibh->sbh != fibh->ebh)
532 brelse(fibh->ebh);
533 brelse(fibh->sbh);
534out_ok:
535 brelse(epos.bh);
536 kfree(name);
537 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700541 struct udf_fileident_bh *fibh,
542 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200547 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
550}
551
Al Virod2be51c2014-09-04 09:34:14 -0400552static int udf_add_nondir(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Al Virod2be51c2014-09-04 09:34:14 -0400554 struct udf_inode_info *iinfo = UDF_I(inode);
555 struct inode *dir = dentry->d_parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct udf_fileident_bh fibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct fileIdentDesc cfi, *fi;
558 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Marcin Slusarz4b111112008-02-08 04:20:36 -0800560 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
Al Virod2be51c2014-09-04 09:34:14 -0400561 if (unlikely(!fi)) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200562 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -0400563 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return err;
566 }
567 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800568 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700569 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800570 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800572 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700575 brelse(fibh.ebh);
576 brelse(fibh.sbh);
Al Virob2315092014-09-04 09:38:11 -0400577 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return 0;
581}
582
Al Virod2be51c2014-09-04 09:34:14 -0400583static int udf_create(struct inode *dir, struct dentry *dentry, umode_t mode,
584 bool excl)
585{
Al Viro0b93a922014-09-04 09:47:41 -0400586 struct inode *inode = udf_new_inode(dir, mode);
Al Virod2be51c2014-09-04 09:34:14 -0400587
Al Viro0b93a922014-09-04 09:47:41 -0400588 if (IS_ERR(inode))
589 return PTR_ERR(inode);
Al Virod2be51c2014-09-04 09:34:14 -0400590
591 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
592 inode->i_data.a_ops = &udf_adinicb_aops;
593 else
594 inode->i_data.a_ops = &udf_aops;
595 inode->i_op = &udf_file_inode_operations;
596 inode->i_fop = &udf_file_operations;
597 mark_inode_dirty(inode);
598
599 return udf_add_nondir(dentry, inode);
600}
601
Al Viro656d09d2013-06-12 09:35:33 +0400602static int udf_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
603{
Al Viro0b93a922014-09-04 09:47:41 -0400604 struct inode *inode = udf_new_inode(dir, mode);
Al Viro656d09d2013-06-12 09:35:33 +0400605
Al Viro0b93a922014-09-04 09:47:41 -0400606 if (IS_ERR(inode))
607 return PTR_ERR(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400608
Al Viro0b93a922014-09-04 09:47:41 -0400609 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Al Viro656d09d2013-06-12 09:35:33 +0400610 inode->i_data.a_ops = &udf_adinicb_aops;
611 else
612 inode->i_data.a_ops = &udf_aops;
613 inode->i_op = &udf_file_inode_operations;
614 inode->i_fop = &udf_file_operations;
615 mark_inode_dirty(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400616 d_tmpfile(dentry, inode);
Al Virob2315092014-09-04 09:38:11 -0400617 unlock_new_inode(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400618 return 0;
619}
620
Al Viro1a67aaf2011-07-26 01:52:52 -0400621static int udf_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700622 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700624 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (!old_valid_dev(rdev))
627 return -EINVAL;
628
Al Viro0b93a922014-09-04 09:47:41 -0400629 inode = udf_new_inode(dir, mode);
630 if (IS_ERR(inode))
631 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Al Virod2be51c2014-09-04 09:34:14 -0400633 init_special_inode(inode, mode, rdev);
634 return udf_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Al Viro18bb1db2011-07-26 01:41:39 -0400637static int udf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700639 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct udf_fileident_bh fibh;
641 struct fileIdentDesc cfi, *fi;
642 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800643 struct udf_inode_info *dinfo = UDF_I(dir);
644 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Al Viro0b93a922014-09-04 09:47:41 -0400646 inode = udf_new_inode(dir, S_IFDIR | mode);
647 if (IS_ERR(inode))
648 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800650 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 inode->i_op = &udf_dir_inode_operations;
652 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800653 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
654 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200655 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -0400656 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 iput(inode);
658 goto out;
659 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200660 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800662 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700663 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800664 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800665 cfi.fileCharacteristics =
666 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700668 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 mark_inode_dirty(inode);
670
Marcin Slusarz4b111112008-02-08 04:20:36 -0800671 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
672 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200673 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 mark_inode_dirty(inode);
Al Virob2315092014-09-04 09:38:11 -0400675 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 iput(inode);
677 goto out;
678 }
679 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800680 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700681 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800682 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
684 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700685 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 mark_inode_dirty(dir);
Al Virob2315092014-09-04 09:38:11 -0400687 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 d_instantiate(dentry, inode);
689 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700690 brelse(fibh.ebh);
691 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700693
694out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return err;
696}
697
698static int empty_dir(struct inode *dir)
699{
700 struct fileIdentDesc *fi, cfi;
701 struct udf_fileident_bh fibh;
702 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800703 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200705 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700706 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700707 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700708 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800709 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jan Karaaf793292008-02-08 04:20:50 -0800711 f_pos = udf_ext0_offset(dir);
712 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800714 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800716 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800717 &epos, &eloc, &elen, &offset) ==
718 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200719 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800721 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200722 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800723 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200724 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800725 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 offset = 0;
727
Marcin Slusarz4b111112008-02-08 04:20:36 -0800728 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
729 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700730 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return 0;
732 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700733 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700734 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return 0;
736 }
737
Jan Karaaf793292008-02-08 04:20:50 -0800738 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700739 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
740 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700741 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700743 brelse(fibh.ebh);
744 brelse(fibh.sbh);
745 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return 0;
747 }
748
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700749 if (cfi.lengthFileIdent &&
750 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700752 brelse(fibh.ebh);
753 brelse(fibh.sbh);
754 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return 0;
756 }
757 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700760 brelse(fibh.ebh);
761 brelse(fibh.sbh);
762 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return 1;
765}
766
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700767static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700770 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 struct udf_fileident_bh fibh;
772 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200773 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400776 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (!fi)
778 goto out;
779
780 retval = -EIO;
781 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200782 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 goto end_rmdir;
784 retval = -ENOTEMPTY;
785 if (!empty_dir(inode))
786 goto end_rmdir;
787 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
788 if (retval)
789 goto end_rmdir;
790 if (inode->i_nlink != 2)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700791 udf_warn(inode->i_sb, "empty directory has nlink != 2 (%d)\n",
792 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700793 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700795 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800796 inode->i_ctime = dir->i_ctime = dir->i_mtime =
797 current_fs_time(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 mark_inode_dirty(dir);
799
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700800end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700802 brelse(fibh.ebh);
803 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700804
805out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return retval;
807}
808
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700809static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 int retval;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700812 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 struct udf_fileident_bh fibh;
814 struct fileIdentDesc *fi;
815 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200816 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400819 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (!fi)
821 goto out;
822
823 retval = -EIO;
824 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200825 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto end_unlink;
827
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700828 if (!inode->i_nlink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 udf_debug("Deleting nonexistent file (%lu), %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700830 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200831 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
834 if (retval)
835 goto end_unlink;
836 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
837 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700838 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 inode->i_ctime = dir->i_ctime;
840 retval = 0;
841
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700842end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700844 brelse(fibh.ebh);
845 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700846
847out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return retval;
849}
850
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700851static int udf_symlink(struct inode *dir, struct dentry *dentry,
852 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Al Viro0b93a922014-09-04 09:47:41 -0400854 struct inode *inode = udf_new_inode(dir, S_IFLNK | S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct pathComponent *pc;
Al Viro391e8bb2010-01-31 21:28:48 -0500856 const char *compstart;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700857 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 int eoffset, elen = 0;
Al Viro391e8bb2010-01-31 21:28:48 -0500859 uint8_t *ea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 int err;
861 int block;
Al Viro391e8bb2010-01-31 21:28:48 -0500862 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 int namelen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800864 struct udf_inode_info *iinfo;
Jan Karad664b6a2010-10-20 18:28:46 +0200865 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Al Viro0b93a922014-09-04 09:47:41 -0400867 if (IS_ERR(inode))
868 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100870 iinfo = UDF_I(inode);
871 down_write(&iinfo->i_data_sem);
Jan Karab80697c2008-03-04 14:14:05 +0100872 name = kmalloc(UDF_NAME_LEN, GFP_NOFS);
873 if (!name) {
874 err = -ENOMEM;
875 goto out_no_entry;
876 }
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +0400879 inode->i_op = &udf_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800881 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200882 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700883 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Jan Karad664b6a2010-10-20 18:28:46 +0200885 block = udf_new_block(sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800886 iinfo->i_location.partitionReferenceNum,
887 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (!block)
889 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800890 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700891 epos.offset = udf_file_entry_alloc_offset(inode);
892 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800894 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800895 iinfo->i_location.partitionReferenceNum;
Jan Karad664b6a2010-10-20 18:28:46 +0200896 bsize = sb->s_blocksize;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700897 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200898 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700899 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Jan Karad664b6a2010-10-20 18:28:46 +0200901 block = udf_get_pblock(sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800902 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800903 0);
Jan Karad664b6a2010-10-20 18:28:46 +0200904 epos.bh = udf_tgetblk(sb, block);
Jan Karaff116fc2007-05-08 00:35:14 -0700905 lock_buffer(epos.bh);
Jan Karad664b6a2010-10-20 18:28:46 +0200906 memset(epos.bh->b_data, 0x00, bsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700907 set_buffer_uptodate(epos.bh);
908 unlock_buffer(epos.bh);
909 mark_buffer_dirty_inode(epos.bh, inode);
910 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800911 } else
912 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Jan Karad664b6a2010-10-20 18:28:46 +0200914 eoffset = sb->s_blocksize - udf_ext0_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 pc = (struct pathComponent *)ea;
916
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700917 if (*symname == '/') {
918 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 symname++;
920 } while (*symname == '/');
921
922 pc->componentType = 1;
923 pc->lengthComponentIdent = 0;
924 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 elen += sizeof(struct pathComponent);
926 }
927
928 err = -ENAMETOOLONG;
929
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700930 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (elen + sizeof(struct pathComponent) > eoffset)
932 goto out_no_entry;
933
934 pc = (struct pathComponent *)(ea + elen);
935
Al Viro391e8bb2010-01-31 21:28:48 -0500936 compstart = symname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700938 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 symname++;
940 } while (*symname && *symname != '/');
941
942 pc->componentType = 5;
943 pc->lengthComponentIdent = 0;
944 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700945 if (compstart[0] == '.') {
946 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800948 else if ((symname - compstart) == 2 &&
949 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 pc->componentType = 3;
951 }
952
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700953 if (pc->componentType == 5) {
Jan Karad664b6a2010-10-20 18:28:46 +0200954 namelen = udf_put_filename(sb, compstart, name,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700955 symname - compstart);
956 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 goto out_no_entry;
958
Marcin Slusarz4b111112008-02-08 04:20:36 -0800959 if (elen + sizeof(struct pathComponent) + namelen >
960 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 goto out_no_entry;
962 else
963 pc->lengthComponentIdent = namelen;
964
965 memcpy(pc->componentIdent, name, namelen);
966 }
967
968 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
969
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700970 if (*symname) {
971 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 symname++;
973 } while (*symname == '/');
974 }
975 }
976
Jan Kara3bf25cb2007-05-08 00:35:16 -0700977 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800979 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
980 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +0100981 else
982 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 mark_inode_dirty(inode);
Jan Kara4ea77722013-12-23 22:02:16 +0100984 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Al Virod2be51c2014-09-04 09:34:14 -0400986 err = udf_add_nondir(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700987out:
Jan Karab80697c2008-03-04 14:14:05 +0100988 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return err;
990
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700991out_no_entry:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100992 up_write(&iinfo->i_data_sem);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700993 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -0400994 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 iput(inode);
996 goto out;
997}
998
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700999static int udf_link(struct dentry *old_dentry, struct inode *dir,
1000 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
1002 struct inode *inode = old_dentry->d_inode;
1003 struct udf_fileident_bh fibh;
1004 struct fileIdentDesc cfi, *fi;
1005 int err;
1006
Marcin Slusarz4b111112008-02-08 04:20:36 -08001007 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1008 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return err;
1010 }
1011 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001012 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001013 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001014 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001015 cpu_to_le32(lvid_get_unique_id(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001018 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001022 brelse(fibh.ebh);
1023 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001024 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 inode->i_ctime = current_fs_time(inode->i_sb);
1026 mark_inode_dirty(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04001027 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return 0;
1031}
1032
1033/* Anybody can rename anything with this: the permission checks are left to the
1034 * higher-level routines.
1035 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001036static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
1037 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001039 struct inode *old_inode = old_dentry->d_inode;
1040 struct inode *new_inode = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001042 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1043 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 struct buffer_head *dir_bh = NULL;
1045 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001046 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001047 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Al Viro9fbb76c2008-10-12 00:15:17 -04001049 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001050 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001052 brelse(ofibh.ebh);
1053 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001056 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001057 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 goto end_rename;
1059
Al Viro9fbb76c2008-10-12 00:15:17 -04001060 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001061 if (nfi) {
1062 if (!new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001064 brelse(nfibh.ebh);
1065 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 nfi = NULL;
1067 }
1068 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001069 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001070 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001072 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 retval = -ENOTEMPTY;
1074 if (!empty_dir(new_inode))
1075 goto end_rename;
1076 }
1077 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001078 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001079 dir_fi = udf_get_fileident(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001080 old_iinfo->i_ext.i_data -
1081 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001082 sizeof(struct extendedFileEntry) :
1083 sizeof(struct fileEntry)),
1084 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001085 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1087 if (!dir_bh)
1088 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001089 dir_fi = udf_get_fileident(dir_bh->b_data,
1090 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092 if (!dir_fi)
1093 goto end_rename;
1094 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001095 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001096 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001099 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001100 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1101 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (!nfi)
1103 goto end_rename;
1104 }
1105
1106 /*
1107 * Like most other Unix systems, set the ctime for inodes on a
1108 * rename.
1109 */
1110 old_inode->i_ctime = current_fs_time(old_inode->i_sb);
1111 mark_inode_dirty(old_inode);
1112
1113 /*
1114 * ok, that's it
1115 */
1116 ncfi.fileVersionNum = ocfi.fileVersionNum;
1117 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001118 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(struct long_ad));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1120
1121 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001122 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1124
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001125 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 new_inode->i_ctime = current_fs_time(new_inode->i_sb);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001127 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
1130 mark_inode_dirty(old_dir);
1131
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001132 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001133 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001134 udf_update_tag((char *)dir_fi,
1135 (sizeof(struct fileIdentDesc) +
1136 le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001137 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001139 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001141
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001142 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001143 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001144 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001145 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001146 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 mark_inode_dirty(new_dir);
1148 }
1149 }
1150
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001151 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001153 brelse(ofibh.ebh);
1154 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156
1157 retval = 0;
1158
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001159end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001160 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001161 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001163 brelse(nfibh.ebh);
1164 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return retval;
1168}
1169
Rasmus Rohde221e5832008-04-30 17:22:06 +02001170static struct dentry *udf_get_parent(struct dentry *child)
1171{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001172 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001173 struct inode *inode = NULL;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001174 struct qstr dotdot = QSTR_INIT("..", 2);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001175 struct fileIdentDesc cfi;
1176 struct udf_fileident_bh fibh;
1177
Rasmus Rohde221e5832008-04-30 17:22:06 +02001178 if (!udf_find_entry(child->d_inode, &dotdot, &fibh, &cfi))
Jan Kara6d3d5e82014-09-04 16:15:51 +02001179 return ERR_PTR(-EACCES);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001180
1181 if (fibh.sbh != fibh.ebh)
1182 brelse(fibh.ebh);
1183 brelse(fibh.sbh);
1184
Pekka Enberg97e961f2008-10-15 12:29:03 +02001185 tloc = lelb_to_cpu(cfi.icb.extLocation);
1186 inode = udf_iget(child->d_inode->i_sb, &tloc);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001187 if (IS_ERR(inode))
1188 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001189
Christoph Hellwig44003722008-08-11 15:49:04 +02001190 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001191}
1192
1193
1194static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1195 u16 partref, __u32 generation)
1196{
1197 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001198 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001199
1200 if (block == 0)
1201 return ERR_PTR(-ESTALE);
1202
1203 loc.logicalBlockNum = block;
1204 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001205 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001206
Jan Kara6d3d5e82014-09-04 16:15:51 +02001207 if (IS_ERR(inode))
1208 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001209
1210 if (generation && inode->i_generation != generation) {
1211 iput(inode);
1212 return ERR_PTR(-ESTALE);
1213 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001214 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001215}
1216
1217static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1218 struct fid *fid, int fh_len, int fh_type)
1219{
1220 if ((fh_len != 3 && fh_len != 5) ||
1221 (fh_type != FILEID_UDF_WITH_PARENT &&
1222 fh_type != FILEID_UDF_WITHOUT_PARENT))
1223 return NULL;
1224
1225 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1226 fid->udf.generation);
1227}
1228
1229static struct dentry *udf_fh_to_parent(struct super_block *sb,
1230 struct fid *fid, int fh_len, int fh_type)
1231{
1232 if (fh_len != 5 || fh_type != FILEID_UDF_WITH_PARENT)
1233 return NULL;
1234
1235 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1236 fid->udf.parent_partref,
1237 fid->udf.parent_generation);
1238}
Al Virob0b03822012-04-02 14:34:06 -04001239static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp,
1240 struct inode *parent)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001241{
1242 int len = *lenp;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001243 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001244 struct fid *fid = (struct fid *)fh;
1245 int type = FILEID_UDF_WITHOUT_PARENT;
1246
Al Virob0b03822012-04-02 14:34:06 -04001247 if (parent && (len < 5)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301248 *lenp = 5;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001249 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301250 } else if (len < 3) {
1251 *lenp = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001252 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301253 }
Rasmus Rohde221e5832008-04-30 17:22:06 +02001254
1255 *lenp = 3;
1256 fid->udf.block = location.logicalBlockNum;
1257 fid->udf.partref = location.partitionReferenceNum;
Mathias Krause0143fc52012-07-12 08:46:55 +02001258 fid->udf.parent_partref = 0;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001259 fid->udf.generation = inode->i_generation;
1260
Al Virob0b03822012-04-02 14:34:06 -04001261 if (parent) {
1262 location = UDF_I(parent)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001263 fid->udf.parent_block = location.logicalBlockNum;
1264 fid->udf.parent_partref = location.partitionReferenceNum;
1265 fid->udf.parent_generation = inode->i_generation;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001266 *lenp = 5;
1267 type = FILEID_UDF_WITH_PARENT;
1268 }
1269
1270 return type;
1271}
1272
1273const struct export_operations udf_export_ops = {
1274 .encode_fh = udf_encode_fh,
1275 .fh_to_dentry = udf_fh_to_dentry,
1276 .fh_to_parent = udf_fh_to_parent,
1277 .get_parent = udf_get_parent,
1278};
1279
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001280const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001281 .lookup = udf_lookup,
1282 .create = udf_create,
1283 .link = udf_link,
1284 .unlink = udf_unlink,
1285 .symlink = udf_symlink,
1286 .mkdir = udf_mkdir,
1287 .rmdir = udf_rmdir,
1288 .mknod = udf_mknod,
1289 .rename = udf_rename,
Al Viro656d09d2013-06-12 09:35:33 +04001290 .tmpfile = udf_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291};
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001292const struct inode_operations udf_symlink_inode_operations = {
1293 .readlink = generic_readlink,
1294 .follow_link = page_follow_link_light,
1295 .put_link = page_put_link,
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001296};