blob: 9eb9c6440270a3c0cd6aa1400bb663ef170cb904 [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>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040030#include <linux/sched.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020031#include <linux/crc-itu-t.h>
Rasmus Rohde221e5832008-04-30 17:22:06 +020032#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Al Viro391e8bb2010-01-31 21:28:48 -050034static inline int udf_match(int len1, const unsigned char *name1, int len2,
35 const unsigned char *name2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 if (len1 != len2)
38 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 return !memcmp(name1, name2, len1);
41}
42
43int udf_write_fi(struct inode *inode, struct fileIdentDesc *cfi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070044 struct fileIdentDesc *sfi, struct udf_fileident_bh *fibh,
Marcin Slusarz4b111112008-02-08 04:20:36 -080045 uint8_t *impuse, uint8_t *fileident)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020047 uint16_t crclen = fibh->eoffset - fibh->soffset - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 uint16_t crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int offset;
50 uint16_t liu = le16_to_cpu(cfi->lengthOfImpUse);
51 uint8_t lfi = cfi->lengthFileIdent;
52 int padlen = fibh->eoffset - fibh->soffset - liu - lfi -
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070053 sizeof(struct fileIdentDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int adinicb = 0;
55
Marcin Slusarzc0b34432008-02-08 04:20:42 -080056 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 adinicb = 1;
58
59 offset = fibh->soffset + sizeof(struct fileIdentDesc);
60
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070061 if (impuse) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070062 if (adinicb || (offset + liu < 0)) {
63 memcpy((uint8_t *)sfi->impUse, impuse, liu);
64 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 memcpy(fibh->ebh->b_data + offset, impuse, liu);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070066 } else {
67 memcpy((uint8_t *)sfi->impUse, impuse, -offset);
Marcin Slusarz4b111112008-02-08 04:20:36 -080068 memcpy(fibh->ebh->b_data, impuse - offset,
69 liu + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71 }
72
73 offset += liu;
74
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070075 if (fileident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070076 if (adinicb || (offset + lfi < 0)) {
77 memcpy((uint8_t *)sfi->fileIdent + liu, fileident, lfi);
78 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 memcpy(fibh->ebh->b_data + offset, fileident, lfi);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070080 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -080081 memcpy((uint8_t *)sfi->fileIdent + liu, fileident,
82 -offset);
83 memcpy(fibh->ebh->b_data, fileident - offset,
84 lfi + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86 }
87
88 offset += lfi;
89
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070090 if (adinicb || (offset + padlen < 0)) {
91 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, padlen);
92 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 memset(fibh->ebh->b_data + offset, 0x00, padlen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070094 } else {
95 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, -offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 memset(fibh->ebh->b_data, 0x00, padlen + offset);
97 }
98
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020099 crc = crc_itu_t(0, (uint8_t *)cfi + sizeof(struct tag),
100 sizeof(struct fileIdentDesc) - sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700102 if (fibh->sbh == fibh->ebh) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200103 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200104 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200105 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700106 } else if (sizeof(struct fileIdentDesc) >= -fibh->soffset) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200107 crc = crc_itu_t(crc, fibh->ebh->b_data +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800108 sizeof(struct fileIdentDesc) +
109 fibh->soffset,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200110 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200111 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700112 } else {
Bob Copelandf845fce2008-04-17 09:47:48 +0200113 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
114 -fibh->soffset - sizeof(struct fileIdentDesc));
115 crc = crc_itu_t(crc, fibh->ebh->b_data, fibh->eoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117
118 cfi->descTag.descCRC = cpu_to_le16(crc);
119 cfi->descTag.descCRCLength = cpu_to_le16(crclen);
Marcin Slusarz3f2587b2008-02-08 04:20:39 -0800120 cfi->descTag.tagChecksum = udf_tag_checksum(&cfi->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700122 if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800123 memcpy((uint8_t *)sfi, (uint8_t *)cfi,
124 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700125 } else {
126 memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset);
127 memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700128 sizeof(struct fileIdentDesc) + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700131 if (adinicb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700133 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (fibh->sbh != fibh->ebh)
135 mark_buffer_dirty_inode(fibh->ebh, inode);
136 mark_buffer_dirty_inode(fibh->sbh, inode);
137 }
138 return 0;
139}
140
Fabian Frederick231473f2015-04-08 21:23:58 +0200141/**
142 * udf_find_entry - find entry in given directory.
143 *
144 * @dir: directory inode to search in
145 * @child: qstr of the name
146 * @fibh: buffer head / inode with file identifier descriptor we found
147 * @cfi: found file identifier descriptor with given name
148 *
149 * This function searches in the directory @dir for a file name @child. When
150 * found, @fibh points to the buffer head(s) (bh is NULL for in ICB
151 * directories) containing the file identifier descriptor (FID). In that case
152 * the function returns pointer to the FID in the buffer or inode - but note
153 * that FID may be split among two buffers (blocks) so accessing it via that
154 * pointer isn't easily possible. This pointer can be used only as an iterator
155 * for other directory manipulation functions. For inspection of the FID @cfi
156 * can be used - the found FID is copied there.
157 *
158 * Returns pointer to FID, NULL when nothing found, or error code.
159 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700160static struct fileIdentDesc *udf_find_entry(struct inode *dir,
Al Viro391e8bb2010-01-31 21:28:48 -0500161 const struct qstr *child,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700162 struct udf_fileident_bh *fibh,
163 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700165 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 loff_t f_pos;
167 int block, flen;
Al Viro391e8bb2010-01-31 21:28:48 -0500168 unsigned char *fname = NULL;
169 unsigned char *nameptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 uint8_t lfi;
171 uint16_t liu;
KAMBAROV, ZAURec471dc2005-06-28 20:45:10 -0700172 loff_t size;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200173 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700174 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700175 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700176 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800177 struct udf_inode_info *dinfo = UDF_I(dir);
Al Viro9fbb76c2008-10-12 00:15:17 -0400178 int isdotdot = child->len == 2 &&
179 child->name[0] == '.' && child->name[1] == '.';
Jan Kara3ee30392014-12-18 22:49:12 +0100180 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Jan Karaaf793292008-02-08 04:20:50 -0800182 size = udf_ext0_offset(dir) + dir->i_size;
183 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Jan Karab80697c2008-03-04 14:14:05 +0100185 fibh->sbh = fibh->ebh = NULL;
Jan Kara3ee30392014-12-18 22:49:12 +0100186 fibh->soffset = fibh->eoffset = f_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +0100187 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +0100188 if (inode_bmap(dir, f_pos >> sb->s_blocksize_bits, &epos,
Fabian Frederick231473f2015-04-08 21:23:58 +0200189 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
190 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100191 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200192 }
193
Jan Kara3ee30392014-12-18 22:49:12 +0100194 block = udf_get_lb_pblock(sb, &eloc, offset);
195 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800196 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200197 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800198 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200199 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800200 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 offset = 0;
202
Jan Kara3ee30392014-12-18 22:49:12 +0100203 fibh->sbh = fibh->ebh = udf_tread(sb, block);
Fabian Frederick231473f2015-04-08 21:23:58 +0200204 if (!fibh->sbh) {
205 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100206 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Jan Karab80697c2008-03-04 14:14:05 +0100210 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
Fabian Frederick231473f2015-04-08 21:23:58 +0200211 if (!fname) {
212 fi = ERR_PTR(-ENOMEM);
Jan Karab80697c2008-03-04 14:14:05 +0100213 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200214 }
Jan Karab80697c2008-03-04 14:14:05 +0100215
Jan Karaaf793292008-02-08 04:20:50 -0800216 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700217 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
218 &elen, &offset);
Fabian Frederick231473f2015-04-08 21:23:58 +0200219 if (!fi) {
220 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100221 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 liu = le16_to_cpu(cfi->lengthOfImpUse);
225 lfi = cfi->lengthFileIdent;
226
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700227 if (fibh->sbh == fibh->ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 nameptr = fi->fileIdent + liu;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700229 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int poffset; /* Unpaded ending offset */
231
Marcin Slusarz4b111112008-02-08 04:20:36 -0800232 poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
233 liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Marcin Slusarz4b111112008-02-08 04:20:36 -0800235 if (poffset >= lfi)
236 nameptr = (uint8_t *)(fibh->ebh->b_data +
237 poffset - lfi);
238 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 nameptr = fname;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800240 memcpy(nameptr, fi->fileIdent + liu,
241 lfi - poffset);
242 memcpy(nameptr + lfi - poffset,
243 fibh->ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245 }
246
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700247 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100248 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 continue;
250 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700251
252 if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100253 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 continue;
255 }
256
Rasmus Rohde221e5832008-04-30 17:22:06 +0200257 if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) &&
Jesper Juhla4264b32010-12-12 23:18:15 +0100258 isdotdot)
259 goto out_ok;
Rasmus Rohde221e5832008-04-30 17:22:06 +0200260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!lfi)
262 continue;
263
Jan Kara3ee30392014-12-18 22:49:12 +0100264 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Fabian Frederick231473f2015-04-08 21:23:58 +0200265 if (flen < 0) {
266 fi = ERR_PTR(flen);
267 goto out_err;
268 }
269
270 if (udf_match(flen, fname, child->len, child->name))
Jan Karab80697c2008-03-04 14:14:05 +0100271 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700273
Jan Karab80697c2008-03-04 14:14:05 +0100274 fi = NULL;
Fabian Frederick231473f2015-04-08 21:23:58 +0200275out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700277 brelse(fibh->ebh);
278 brelse(fibh->sbh);
Jan Karab80697c2008-03-04 14:14:05 +0100279out_ok:
Jan Kara3bf25cb2007-05-08 00:35:16 -0700280 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100281 kfree(fname);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700282
Jan Karab80697c2008-03-04 14:14:05 +0100283 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700286static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400287 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct inode *inode = NULL;
Jayachandran Cdb9a3692006-02-03 03:04:50 -0800290 struct fileIdentDesc cfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct udf_fileident_bh fibh;
Fabian Frederick231473f2015-04-08 21:23:58 +0200292 struct fileIdentDesc *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600294 if (dentry->d_name.len > UDF_NAME_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return ERR_PTR(-ENAMETOOLONG);
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#ifdef UDF_RECOVERY
298 /* temporary shorthand for specifying files by inode number */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700299 if (!strncmp(dentry->d_name.name, ".B=", 3)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200300 struct kernel_lb_addr lb = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700301 .logicalBlockNum = 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800302 .partitionReferenceNum =
303 simple_strtoul(dentry->d_name.name + 3,
304 NULL, 0),
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700305 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 inode = udf_iget(dir->i_sb, lb);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200307 if (IS_ERR(inode))
308 return inode;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800309 } else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700310#endif /* UDF_RECOVERY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Fabian Frederick231473f2015-04-08 21:23:58 +0200312 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
313 if (IS_ERR(fi))
314 return ERR_CAST(fi);
315
316 if (fi) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200317 struct kernel_lb_addr loc;
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700320 brelse(fibh.ebh);
321 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Pekka Enberg97e961f2008-10-15 12:29:03 +0200323 loc = lelb_to_cpu(cfi.icb.extLocation);
324 inode = udf_iget(dir->i_sb, &loc);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200325 if (IS_ERR(inode))
326 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700328
Rasmus Rohde221e5832008-04-30 17:22:06 +0200329 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700332static struct fileIdentDesc *udf_add_entry(struct inode *dir,
333 struct dentry *dentry,
334 struct udf_fileident_bh *fibh,
335 struct fileIdentDesc *cfi, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800337 struct super_block *sb = dir->i_sb;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700338 struct fileIdentDesc *fi = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500339 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int namelen;
341 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800342 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 int nfidlen;
344 uint8_t lfi;
345 uint16_t liu;
346 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200347 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200348 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700349 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700350 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800351 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Jan Karab80697c2008-03-04 14:14:05 +0100353 fibh->sbh = fibh->ebh = NULL;
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600354 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100355 if (!name) {
356 *err = -ENOMEM;
357 goto out_err;
358 }
359
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700360 if (dentry) {
361 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100363 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
Andrew Gabbasov525e2c52016-01-15 02:44:19 -0600365 namelen = udf_put_filename(sb, dentry->d_name.name,
366 dentry->d_name.len,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600367 name, UDF_NAME_LEN_CS0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800368 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100370 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700372 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 nfidlen = (sizeof(struct fileIdentDesc) + namelen + 3) & ~3;
377
Jan Karaaf793292008-02-08 04:20:50 -0800378 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Jan Karaaf793292008-02-08 04:20:50 -0800380 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800381 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100382 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
383 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
384 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
385 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200386 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100387 fibh->soffset = fibh->eoffset = sb->s_blocksize;
388 goto add;
389 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200390 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700391 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800392 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200393 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800394 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200395 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800396 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 offset = 0;
398
Marcin Slusarz4b111112008-02-08 04:20:36 -0800399 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
400 if (!fibh->sbh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100402 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800405 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
Jan Karaaf793292008-02-08 04:20:50 -0800408 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700409 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
410 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700412 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100414 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
417 liu = le16_to_cpu(cfi->lengthOfImpUse);
418 lfi = cfi->lengthFileIdent;
419
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700420 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800421 if (((sizeof(struct fileIdentDesc) +
422 liu + lfi + 3) & ~3) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 cfi->descTag.tagSerialNum = cpu_to_le16(1);
424 cfi->fileVersionNum = cpu_to_le16(1);
425 cfi->fileCharacteristics = 0;
426 cfi->lengthFileIdent = namelen;
427 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800428 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
429 name))
Jan Karab80697c2008-03-04 14:14:05 +0100430 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800431 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100433 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435 }
436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700439add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 f_pos += nfidlen;
441
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800442 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700443 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700444 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700445 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 fibh->soffset -= udf_ext0_offset(dir);
447 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800448 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700450 brelse(fibh->ebh);
451 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800452 fibh->sbh = fibh->ebh =
453 udf_expand_dir_adinicb(dir, &block, err);
454 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100455 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800456 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700457 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800458 /* Load extent udf_expand_dir_adinicb() has created */
459 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
Jan Kara2c948b32009-12-03 13:39:28 +0100462 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700463 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 fibh->soffset = fibh->eoffset;
465 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700466 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700467 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 fibh->sbh = fibh->ebh;
469 }
470
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800471 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
472 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800473 fi = (struct fileIdentDesc *)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800474 (dinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800475 fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800476 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800477 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700478 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800479 block = eloc.logicalBlockNum +
480 ((elen - 1) >>
481 dir->i_sb->s_blocksize_bits);
482 fi = (struct fileIdentDesc *)
483 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700485 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100486 /* Round up last extent in the file */
487 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
488 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
489 epos.offset -= sizeof(struct short_ad);
490 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
491 epos.offset -= sizeof(struct long_ad);
492 udf_write_aext(dir, &epos, &eloc, elen, 1);
493 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
494 - 1) & ~(sb->s_blocksize - 1);
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 fibh->soffset = fibh->eoffset - sb->s_blocksize;
497 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700498 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700499 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 fibh->sbh = fibh->ebh;
501 }
502
503 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700504 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800505 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800506 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100507 if (!fibh->ebh)
508 goto out_err;
Jan Kara4651c592010-11-25 03:56:24 +0100509 /* Extents could have been merged, invalidate our position */
510 brelse(epos.bh);
511 epos.bh = NULL;
512 epos.block = dinfo->i_location;
513 epos.offset = udf_file_entry_alloc_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700515 if (!fibh->soffset) {
Jan Kara4651c592010-11-25 03:56:24 +0100516 /* Find the freshly allocated block */
517 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
518 (EXT_RECORDED_ALLOCATED >> 30))
519 ;
520 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700521 dir->i_sb->s_blocksize_bits);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700522 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 fibh->sbh = fibh->ebh;
524 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700525 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800527 (fibh->sbh->b_data + sb->s_blocksize +
528 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 }
531
532 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800533 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800534 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200535 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800537 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200538 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 cfi->fileVersionNum = cpu_to_le16(1);
540 cfi->lengthFileIdent = namelen;
541 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700542 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800544 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
545 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100546 else {
547 /* Find the last extent and truncate it to proper size */
548 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
549 (EXT_RECORDED_ALLOCATED >> 30))
550 ;
551 elen -= dinfo->i_lenExtents - dir->i_size;
552 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
553 epos.offset -= sizeof(struct short_ad);
554 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
555 epos.offset -= sizeof(struct long_ad);
556 udf_write_aext(dir, &epos, &eloc, elen, 1);
557 dinfo->i_lenExtents = dir->i_size;
558 }
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100561 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700562 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100564 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Jan Karab80697c2008-03-04 14:14:05 +0100566
567out_err:
568 fi = NULL;
569 if (fibh->sbh != fibh->ebh)
570 brelse(fibh->ebh);
571 brelse(fibh->sbh);
572out_ok:
573 brelse(epos.bh);
574 kfree(name);
575 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700579 struct udf_fileident_bh *fibh,
580 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200585 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
588}
589
Al Virod2be51c2014-09-04 09:34:14 -0400590static int udf_add_nondir(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Al Virod2be51c2014-09-04 09:34:14 -0400592 struct udf_inode_info *iinfo = UDF_I(inode);
David Howells2b0143b2015-03-17 22:25:59 +0000593 struct inode *dir = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 struct udf_fileident_bh fibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct fileIdentDesc cfi, *fi;
596 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Marcin Slusarz4b111112008-02-08 04:20:36 -0800598 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
Al Virod2be51c2014-09-04 09:34:14 -0400599 if (unlikely(!fi)) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200600 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -0400601 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return err;
604 }
605 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800606 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700607 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800608 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3adc12e2015-03-24 16:47:25 -0400610 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
611 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700613 brelse(fibh.ebh);
614 brelse(fibh.sbh);
Al Virob2315092014-09-04 09:38:11 -0400615 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 0;
619}
620
Al Virod2be51c2014-09-04 09:34:14 -0400621static int udf_create(struct inode *dir, struct dentry *dentry, umode_t mode,
622 bool excl)
623{
Al Viro0b93a922014-09-04 09:47:41 -0400624 struct inode *inode = udf_new_inode(dir, mode);
Al Virod2be51c2014-09-04 09:34:14 -0400625
Al Viro0b93a922014-09-04 09:47:41 -0400626 if (IS_ERR(inode))
627 return PTR_ERR(inode);
Al Virod2be51c2014-09-04 09:34:14 -0400628
629 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
630 inode->i_data.a_ops = &udf_adinicb_aops;
631 else
632 inode->i_data.a_ops = &udf_aops;
633 inode->i_op = &udf_file_inode_operations;
634 inode->i_fop = &udf_file_operations;
635 mark_inode_dirty(inode);
636
637 return udf_add_nondir(dentry, inode);
638}
639
Al Viro656d09d2013-06-12 09:35:33 +0400640static int udf_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
641{
Al Viro0b93a922014-09-04 09:47:41 -0400642 struct inode *inode = udf_new_inode(dir, mode);
Al Viro656d09d2013-06-12 09:35:33 +0400643
Al Viro0b93a922014-09-04 09:47:41 -0400644 if (IS_ERR(inode))
645 return PTR_ERR(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400646
Al Viro0b93a922014-09-04 09:47:41 -0400647 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Al Viro656d09d2013-06-12 09:35:33 +0400648 inode->i_data.a_ops = &udf_adinicb_aops;
649 else
650 inode->i_data.a_ops = &udf_aops;
651 inode->i_op = &udf_file_inode_operations;
652 inode->i_fop = &udf_file_operations;
653 mark_inode_dirty(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400654 d_tmpfile(dentry, inode);
Al Virob2315092014-09-04 09:38:11 -0400655 unlock_new_inode(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400656 return 0;
657}
658
Al Viro1a67aaf2011-07-26 01:52:52 -0400659static int udf_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700660 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700662 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 if (!old_valid_dev(rdev))
665 return -EINVAL;
666
Al Viro0b93a922014-09-04 09:47:41 -0400667 inode = udf_new_inode(dir, mode);
668 if (IS_ERR(inode))
669 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Al Virod2be51c2014-09-04 09:34:14 -0400671 init_special_inode(inode, mode, rdev);
672 return udf_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Al Viro18bb1db2011-07-26 01:41:39 -0400675static int udf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700677 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 struct udf_fileident_bh fibh;
679 struct fileIdentDesc cfi, *fi;
680 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800681 struct udf_inode_info *dinfo = UDF_I(dir);
682 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Al Viro0b93a922014-09-04 09:47:41 -0400684 inode = udf_new_inode(dir, S_IFDIR | mode);
685 if (IS_ERR(inode))
686 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800688 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 inode->i_op = &udf_dir_inode_operations;
690 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800691 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
692 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200693 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -0400694 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 iput(inode);
696 goto out;
697 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200698 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800700 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700701 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800702 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800703 cfi.fileCharacteristics =
704 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700706 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 mark_inode_dirty(inode);
708
Marcin Slusarz4b111112008-02-08 04:20:36 -0800709 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
710 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200711 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 mark_inode_dirty(inode);
Al Virob2315092014-09-04 09:38:11 -0400713 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 iput(inode);
715 goto out;
716 }
717 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800718 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700719 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800720 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
722 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700723 inc_nlink(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -0400724 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 mark_inode_dirty(dir);
Al Virob2315092014-09-04 09:38:11 -0400726 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 d_instantiate(dentry, inode);
728 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700729 brelse(fibh.ebh);
730 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700732
733out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return err;
735}
736
737static int empty_dir(struct inode *dir)
738{
739 struct fileIdentDesc *fi, cfi;
740 struct udf_fileident_bh fibh;
741 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800742 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 int block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200744 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700745 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700746 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700747 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800748 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Jan Karaaf793292008-02-08 04:20:50 -0800750 f_pos = udf_ext0_offset(dir);
751 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800753 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800755 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800756 &epos, &eloc, &elen, &offset) ==
757 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200758 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700759 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800760 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200761 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800762 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200763 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800764 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 offset = 0;
766
Marcin Slusarz4b111112008-02-08 04:20:36 -0800767 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
768 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700769 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700772 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700773 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
775 }
776
Jan Karaaf793292008-02-08 04:20:50 -0800777 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700778 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
779 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700780 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700782 brelse(fibh.ebh);
783 brelse(fibh.sbh);
784 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return 0;
786 }
787
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700788 if (cfi.lengthFileIdent &&
789 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700791 brelse(fibh.ebh);
792 brelse(fibh.sbh);
793 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return 0;
795 }
796 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700799 brelse(fibh.ebh);
800 brelse(fibh.sbh);
801 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return 1;
804}
805
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700806static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000809 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 struct udf_fileident_bh fibh;
811 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200812 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400815 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200816 if (IS_ERR_OR_NULL(fi)) {
817 if (fi)
818 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 retval = -EIO;
823 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200824 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 goto end_rmdir;
826 retval = -ENOTEMPTY;
827 if (!empty_dir(inode))
828 goto end_rmdir;
829 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
830 if (retval)
831 goto end_rmdir;
832 if (inode->i_nlink != 2)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700833 udf_warn(inode->i_sb, "empty directory has nlink != 2 (%d)\n",
834 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700835 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700837 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800838 inode->i_ctime = dir->i_ctime = dir->i_mtime =
839 current_fs_time(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 mark_inode_dirty(dir);
841
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700842end_rmdir:
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_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000854 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct udf_fileident_bh fibh;
856 struct fileIdentDesc *fi;
857 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200858 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400861 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200862
863 if (IS_ERR_OR_NULL(fi)) {
864 if (fi)
865 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 retval = -EIO;
870 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200871 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto end_unlink;
873
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700874 if (!inode->i_nlink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 udf_debug("Deleting nonexistent file (%lu), %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700876 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200877 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
880 if (retval)
881 goto end_unlink;
882 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
883 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700884 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 inode->i_ctime = dir->i_ctime;
886 retval = 0;
887
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700888end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700890 brelse(fibh.ebh);
891 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700892
893out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return retval;
895}
896
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700897static int udf_symlink(struct inode *dir, struct dentry *dentry,
898 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Al Viro0b93a922014-09-04 09:47:41 -0400900 struct inode *inode = udf_new_inode(dir, S_IFLNK | S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 struct pathComponent *pc;
Al Viro391e8bb2010-01-31 21:28:48 -0500902 const char *compstart;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700903 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 int eoffset, elen = 0;
Al Viro391e8bb2010-01-31 21:28:48 -0500905 uint8_t *ea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 int err;
907 int block;
Al Viro391e8bb2010-01-31 21:28:48 -0500908 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 int namelen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800910 struct udf_inode_info *iinfo;
Jan Karad664b6a2010-10-20 18:28:46 +0200911 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Al Viro0b93a922014-09-04 09:47:41 -0400913 if (IS_ERR(inode))
914 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100916 iinfo = UDF_I(inode);
917 down_write(&iinfo->i_data_sem);
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600918 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100919 if (!name) {
920 err = -ENOMEM;
921 goto out_no_entry;
922 }
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 inode->i_data.a_ops = &udf_symlink_aops;
Al Viroc73119c2015-11-13 20:33:18 -0500925 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500926 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800928 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200929 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700930 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Jan Karad664b6a2010-10-20 18:28:46 +0200932 block = udf_new_block(sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800933 iinfo->i_location.partitionReferenceNum,
934 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (!block)
936 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800937 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700938 epos.offset = udf_file_entry_alloc_offset(inode);
939 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800941 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800942 iinfo->i_location.partitionReferenceNum;
Jan Karad664b6a2010-10-20 18:28:46 +0200943 bsize = sb->s_blocksize;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700944 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200945 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700946 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Jan Karad664b6a2010-10-20 18:28:46 +0200948 block = udf_get_pblock(sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800949 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800950 0);
Jan Karad664b6a2010-10-20 18:28:46 +0200951 epos.bh = udf_tgetblk(sb, block);
Jan Karaff116fc2007-05-08 00:35:14 -0700952 lock_buffer(epos.bh);
Jan Karad664b6a2010-10-20 18:28:46 +0200953 memset(epos.bh->b_data, 0x00, bsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700954 set_buffer_uptodate(epos.bh);
955 unlock_buffer(epos.bh);
956 mark_buffer_dirty_inode(epos.bh, inode);
957 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800958 } else
959 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Jan Karad664b6a2010-10-20 18:28:46 +0200961 eoffset = sb->s_blocksize - udf_ext0_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 pc = (struct pathComponent *)ea;
963
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700964 if (*symname == '/') {
965 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 symname++;
967 } while (*symname == '/');
968
969 pc->componentType = 1;
970 pc->lengthComponentIdent = 0;
971 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 elen += sizeof(struct pathComponent);
973 }
974
975 err = -ENAMETOOLONG;
976
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700977 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (elen + sizeof(struct pathComponent) > eoffset)
979 goto out_no_entry;
980
981 pc = (struct pathComponent *)(ea + elen);
982
Al Viro391e8bb2010-01-31 21:28:48 -0500983 compstart = symname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700985 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 symname++;
987 } while (*symname && *symname != '/');
988
989 pc->componentType = 5;
990 pc->lengthComponentIdent = 0;
991 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700992 if (compstart[0] == '.') {
993 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800995 else if ((symname - compstart) == 2 &&
996 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 pc->componentType = 3;
998 }
999
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001000 if (pc->componentType == 5) {
Andrew Gabbasov525e2c52016-01-15 02:44:19 -06001001 namelen = udf_put_filename(sb, compstart,
1002 symname - compstart,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -06001003 name, UDF_NAME_LEN_CS0);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001004 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 goto out_no_entry;
1006
Marcin Slusarz4b111112008-02-08 04:20:36 -08001007 if (elen + sizeof(struct pathComponent) + namelen >
1008 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 goto out_no_entry;
1010 else
1011 pc->lengthComponentIdent = namelen;
1012
1013 memcpy(pc->componentIdent, name, namelen);
1014 }
1015
1016 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
1017
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001018 if (*symname) {
1019 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 symname++;
1021 } while (*symname == '/');
1022 }
1023 }
1024
Jan Kara3bf25cb2007-05-08 00:35:16 -07001025 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001027 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1028 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +01001029 else
1030 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 mark_inode_dirty(inode);
Jan Kara4ea77722013-12-23 22:02:16 +01001032 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Al Virod2be51c2014-09-04 09:34:14 -04001034 err = udf_add_nondir(dentry, inode);
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 return err;
1038
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001039out_no_entry:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001040 up_write(&iinfo->i_data_sem);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001041 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -04001042 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 iput(inode);
1044 goto out;
1045}
1046
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001047static int udf_link(struct dentry *old_dentry, struct inode *dir,
1048 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
David Howells2b0143b2015-03-17 22:25:59 +00001050 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 struct udf_fileident_bh fibh;
1052 struct fileIdentDesc cfi, *fi;
1053 int err;
1054
Marcin Slusarz4b111112008-02-08 04:20:36 -08001055 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1056 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return err;
1058 }
1059 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001060 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001061 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001062 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001063 cpu_to_le32(lvid_get_unique_id(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001066 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001070 brelse(fibh.ebh);
1071 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001072 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 inode->i_ctime = current_fs_time(inode->i_sb);
1074 mark_inode_dirty(inode);
Jan Kara3adc12e2015-03-24 16:47:25 -04001075 dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb);
1076 mark_inode_dirty(dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04001077 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return 0;
1081}
1082
1083/* Anybody can rename anything with this: the permission checks are left to the
1084 * higher-level routines.
1085 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001086static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
1087 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
David Howells2b0143b2015-03-17 22:25:59 +00001089 struct inode *old_inode = d_inode(old_dentry);
1090 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001092 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1093 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct buffer_head *dir_bh = NULL;
1095 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001096 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001097 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Al Viro9fbb76c2008-10-12 00:15:17 -04001099 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001100 if (IS_ERR(ofi)) {
1101 retval = PTR_ERR(ofi);
1102 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
Fabian Frederick231473f2015-04-08 21:23:58 +02001104
1105 if (ofibh.sbh != ofibh.ebh)
1106 brelse(ofibh.ebh);
1107
1108 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001110 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001111 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 goto end_rename;
1113
Al Viro9fbb76c2008-10-12 00:15:17 -04001114 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001115 if (IS_ERR(nfi)) {
1116 retval = PTR_ERR(nfi);
1117 goto end_rename;
1118 }
1119 if (nfi && !new_inode) {
1120 if (nfibh.sbh != nfibh.ebh)
1121 brelse(nfibh.ebh);
1122 brelse(nfibh.sbh);
1123 nfi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001125 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001126 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001128 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 retval = -ENOTEMPTY;
1130 if (!empty_dir(new_inode))
1131 goto end_rename;
1132 }
1133 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001134 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001135 dir_fi = udf_get_fileident(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001136 old_iinfo->i_ext.i_data -
1137 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001138 sizeof(struct extendedFileEntry) :
1139 sizeof(struct fileEntry)),
1140 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001141 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1143 if (!dir_bh)
1144 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001145 dir_fi = udf_get_fileident(dir_bh->b_data,
1146 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148 if (!dir_fi)
1149 goto end_rename;
1150 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001151 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001152 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001155 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001156 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1157 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (!nfi)
1159 goto end_rename;
1160 }
1161
1162 /*
1163 * Like most other Unix systems, set the ctime for inodes on a
1164 * rename.
1165 */
1166 old_inode->i_ctime = current_fs_time(old_inode->i_sb);
1167 mark_inode_dirty(old_inode);
1168
1169 /*
1170 * ok, that's it
1171 */
1172 ncfi.fileVersionNum = ocfi.fileVersionNum;
1173 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001174 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(struct long_ad));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1176
1177 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001178 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1180
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001181 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 new_inode->i_ctime = current_fs_time(new_inode->i_sb);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001183 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185 old_dir->i_ctime = old_dir->i_mtime = current_fs_time(old_dir->i_sb);
Jan Kara3adc12e2015-03-24 16:47:25 -04001186 new_dir->i_ctime = new_dir->i_mtime = current_fs_time(new_dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 mark_inode_dirty(old_dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001188 mark_inode_dirty(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001190 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001191 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001192 udf_update_tag((char *)dir_fi,
1193 (sizeof(struct fileIdentDesc) +
1194 le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001195 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001197 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001199
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001200 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001201 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001202 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001203 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001204 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 mark_inode_dirty(new_dir);
1206 }
1207 }
1208
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001209 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001211 brelse(ofibh.ebh);
1212 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214
1215 retval = 0;
1216
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001217end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001218 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001219 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001221 brelse(nfibh.ebh);
1222 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return retval;
1226}
1227
Rasmus Rohde221e5832008-04-30 17:22:06 +02001228static struct dentry *udf_get_parent(struct dentry *child)
1229{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001230 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001231 struct inode *inode = NULL;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001232 struct qstr dotdot = QSTR_INIT("..", 2);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001233 struct fileIdentDesc cfi;
1234 struct udf_fileident_bh fibh;
1235
David Howells2b0143b2015-03-17 22:25:59 +00001236 if (!udf_find_entry(d_inode(child), &dotdot, &fibh, &cfi))
Jan Kara6d3d5e82014-09-04 16:15:51 +02001237 return ERR_PTR(-EACCES);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001238
1239 if (fibh.sbh != fibh.ebh)
1240 brelse(fibh.ebh);
1241 brelse(fibh.sbh);
1242
Pekka Enberg97e961f2008-10-15 12:29:03 +02001243 tloc = lelb_to_cpu(cfi.icb.extLocation);
David Howells2b0143b2015-03-17 22:25:59 +00001244 inode = udf_iget(d_inode(child)->i_sb, &tloc);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001245 if (IS_ERR(inode))
1246 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001247
Christoph Hellwig44003722008-08-11 15:49:04 +02001248 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001249}
1250
1251
1252static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1253 u16 partref, __u32 generation)
1254{
1255 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001256 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001257
1258 if (block == 0)
1259 return ERR_PTR(-ESTALE);
1260
1261 loc.logicalBlockNum = block;
1262 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001263 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001264
Jan Kara6d3d5e82014-09-04 16:15:51 +02001265 if (IS_ERR(inode))
1266 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001267
1268 if (generation && inode->i_generation != generation) {
1269 iput(inode);
1270 return ERR_PTR(-ESTALE);
1271 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001272 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001273}
1274
1275static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1276 struct fid *fid, int fh_len, int fh_type)
1277{
NeilBrown92acca42015-05-08 10:16:23 +10001278 if (fh_len < 3 ||
Rasmus Rohde221e5832008-04-30 17:22:06 +02001279 (fh_type != FILEID_UDF_WITH_PARENT &&
1280 fh_type != FILEID_UDF_WITHOUT_PARENT))
1281 return NULL;
1282
1283 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1284 fid->udf.generation);
1285}
1286
1287static struct dentry *udf_fh_to_parent(struct super_block *sb,
1288 struct fid *fid, int fh_len, int fh_type)
1289{
NeilBrown92acca42015-05-08 10:16:23 +10001290 if (fh_len < 5 || fh_type != FILEID_UDF_WITH_PARENT)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001291 return NULL;
1292
1293 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1294 fid->udf.parent_partref,
1295 fid->udf.parent_generation);
1296}
Al Virob0b03822012-04-02 14:34:06 -04001297static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp,
1298 struct inode *parent)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001299{
1300 int len = *lenp;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001301 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001302 struct fid *fid = (struct fid *)fh;
1303 int type = FILEID_UDF_WITHOUT_PARENT;
1304
Al Virob0b03822012-04-02 14:34:06 -04001305 if (parent && (len < 5)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301306 *lenp = 5;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001307 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301308 } else if (len < 3) {
1309 *lenp = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001310 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301311 }
Rasmus Rohde221e5832008-04-30 17:22:06 +02001312
1313 *lenp = 3;
1314 fid->udf.block = location.logicalBlockNum;
1315 fid->udf.partref = location.partitionReferenceNum;
Mathias Krause0143fc52012-07-12 08:46:55 +02001316 fid->udf.parent_partref = 0;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001317 fid->udf.generation = inode->i_generation;
1318
Al Virob0b03822012-04-02 14:34:06 -04001319 if (parent) {
1320 location = UDF_I(parent)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001321 fid->udf.parent_block = location.logicalBlockNum;
1322 fid->udf.parent_partref = location.partitionReferenceNum;
1323 fid->udf.parent_generation = inode->i_generation;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001324 *lenp = 5;
1325 type = FILEID_UDF_WITH_PARENT;
1326 }
1327
1328 return type;
1329}
1330
1331const struct export_operations udf_export_ops = {
1332 .encode_fh = udf_encode_fh,
1333 .fh_to_dentry = udf_fh_to_dentry,
1334 .fh_to_parent = udf_fh_to_parent,
1335 .get_parent = udf_get_parent,
1336};
1337
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001338const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001339 .lookup = udf_lookup,
1340 .create = udf_create,
1341 .link = udf_link,
1342 .unlink = udf_unlink,
1343 .symlink = udf_symlink,
1344 .mkdir = udf_mkdir,
1345 .rmdir = udf_rmdir,
1346 .mknod = udf_mknod,
1347 .rename = udf_rename,
Al Viro656d09d2013-06-12 09:35:33 +04001348 .tmpfile = udf_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349};