blob: 9f3aced46c68fdf0ec34c8b458756c5316fe4539 [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>
Jan Kara5875f872021-11-04 15:22:35 +010033#include <linux/iversion.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 }
Jan Kara5875f872021-11-04 15:22:35 +0100139 inode_inc_iversion(inode);
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return 0;
142}
143
Fabian Frederick231473f2015-04-08 21:23:58 +0200144/**
145 * udf_find_entry - find entry in given directory.
146 *
147 * @dir: directory inode to search in
148 * @child: qstr of the name
149 * @fibh: buffer head / inode with file identifier descriptor we found
150 * @cfi: found file identifier descriptor with given name
151 *
152 * This function searches in the directory @dir for a file name @child. When
153 * found, @fibh points to the buffer head(s) (bh is NULL for in ICB
154 * directories) containing the file identifier descriptor (FID). In that case
155 * the function returns pointer to the FID in the buffer or inode - but note
156 * that FID may be split among two buffers (blocks) so accessing it via that
157 * pointer isn't easily possible. This pointer can be used only as an iterator
158 * for other directory manipulation functions. For inspection of the FID @cfi
159 * can be used - the found FID is copied there.
160 *
161 * Returns pointer to FID, NULL when nothing found, or error code.
162 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700163static struct fileIdentDesc *udf_find_entry(struct inode *dir,
Al Viro391e8bb2010-01-31 21:28:48 -0500164 const struct qstr *child,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700165 struct udf_fileident_bh *fibh,
166 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700168 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 loff_t f_pos;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500170 udf_pblk_t block;
171 int flen;
Jan Kara066b9cd2016-01-26 21:07:30 +0100172 unsigned char *fname = NULL, *copy_name = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500173 unsigned char *nameptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 uint8_t lfi;
175 uint16_t liu;
KAMBAROV, ZAURec471dc2005-06-28 20:45:10 -0700176 loff_t size;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200177 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700178 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700179 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700180 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800181 struct udf_inode_info *dinfo = UDF_I(dir);
Al Viro9fbb76c2008-10-12 00:15:17 -0400182 int isdotdot = child->len == 2 &&
183 child->name[0] == '.' && child->name[1] == '.';
Jan Kara3ee30392014-12-18 22:49:12 +0100184 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jan Karaaf793292008-02-08 04:20:50 -0800186 size = udf_ext0_offset(dir) + dir->i_size;
187 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Jan Karab80697c2008-03-04 14:14:05 +0100189 fibh->sbh = fibh->ebh = NULL;
Jan Kara3ee30392014-12-18 22:49:12 +0100190 fibh->soffset = fibh->eoffset = f_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +0100191 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +0100192 if (inode_bmap(dir, f_pos >> sb->s_blocksize_bits, &epos,
Fabian Frederick231473f2015-04-08 21:23:58 +0200193 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
194 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100195 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200196 }
197
Jan Kara3ee30392014-12-18 22:49:12 +0100198 block = udf_get_lb_pblock(sb, &eloc, offset);
199 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800200 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200201 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800202 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200203 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800204 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 offset = 0;
206
Jan Kara3ee30392014-12-18 22:49:12 +0100207 fibh->sbh = fibh->ebh = udf_tread(sb, block);
Fabian Frederick231473f2015-04-08 21:23:58 +0200208 if (!fibh->sbh) {
209 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100210 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
Jan Karab80697c2008-03-04 14:14:05 +0100214 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
Fabian Frederick231473f2015-04-08 21:23:58 +0200215 if (!fname) {
216 fi = ERR_PTR(-ENOMEM);
Jan Karab80697c2008-03-04 14:14:05 +0100217 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200218 }
Jan Karab80697c2008-03-04 14:14:05 +0100219
Jan Karaaf793292008-02-08 04:20:50 -0800220 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700221 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
222 &elen, &offset);
Fabian Frederick231473f2015-04-08 21:23:58 +0200223 if (!fi) {
224 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100225 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 liu = le16_to_cpu(cfi->lengthOfImpUse);
229 lfi = cfi->lengthFileIdent;
230
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700231 if (fibh->sbh == fibh->ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 nameptr = fi->fileIdent + liu;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700233 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int poffset; /* Unpaded ending offset */
235
Marcin Slusarz4b111112008-02-08 04:20:36 -0800236 poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
237 liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Marcin Slusarz4b111112008-02-08 04:20:36 -0800239 if (poffset >= lfi)
240 nameptr = (uint8_t *)(fibh->ebh->b_data +
241 poffset - lfi);
242 else {
Jan Kara066b9cd2016-01-26 21:07:30 +0100243 if (!copy_name) {
244 copy_name = kmalloc(UDF_NAME_LEN,
245 GFP_NOFS);
246 if (!copy_name) {
247 fi = ERR_PTR(-ENOMEM);
248 goto out_err;
249 }
250 }
251 nameptr = copy_name;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800252 memcpy(nameptr, fi->fileIdent + liu,
253 lfi - poffset);
254 memcpy(nameptr + lfi - poffset,
255 fibh->ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257 }
258
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700259 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100260 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 continue;
262 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700263
264 if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100265 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 continue;
267 }
268
Rasmus Rohde221e5832008-04-30 17:22:06 +0200269 if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) &&
Jesper Juhla4264b32010-12-12 23:18:15 +0100270 isdotdot)
271 goto out_ok;
Rasmus Rohde221e5832008-04-30 17:22:06 +0200272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!lfi)
274 continue;
275
Jan Kara3ee30392014-12-18 22:49:12 +0100276 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Fabian Frederick231473f2015-04-08 21:23:58 +0200277 if (flen < 0) {
278 fi = ERR_PTR(flen);
279 goto out_err;
280 }
281
282 if (udf_match(flen, fname, child->len, child->name))
Jan Karab80697c2008-03-04 14:14:05 +0100283 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700285
Jan Karab80697c2008-03-04 14:14:05 +0100286 fi = NULL;
Fabian Frederick231473f2015-04-08 21:23:58 +0200287out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700289 brelse(fibh->ebh);
290 brelse(fibh->sbh);
Jan Karab80697c2008-03-04 14:14:05 +0100291out_ok:
Jan Kara3bf25cb2007-05-08 00:35:16 -0700292 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100293 kfree(fname);
Jan Kara066b9cd2016-01-26 21:07:30 +0100294 kfree(copy_name);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700295
Jan Karab80697c2008-03-04 14:14:05 +0100296 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700299static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400300 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 struct inode *inode = NULL;
Jayachandran Cdb9a3692006-02-03 03:04:50 -0800303 struct fileIdentDesc cfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 struct udf_fileident_bh fibh;
Fabian Frederick231473f2015-04-08 21:23:58 +0200305 struct fileIdentDesc *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600307 if (dentry->d_name.len > UDF_NAME_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return ERR_PTR(-ENAMETOOLONG);
309
Fabian Frederick231473f2015-04-08 21:23:58 +0200310 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
311 if (IS_ERR(fi))
312 return ERR_CAST(fi);
313
314 if (fi) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200315 struct kernel_lb_addr loc;
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700318 brelse(fibh.ebh);
319 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Pekka Enberg97e961f2008-10-15 12:29:03 +0200321 loc = lelb_to_cpu(cfi.icb.extLocation);
322 inode = udf_iget(dir->i_sb, &loc);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200323 if (IS_ERR(inode))
324 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700326
Rasmus Rohde221e5832008-04-30 17:22:06 +0200327 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700330static struct fileIdentDesc *udf_add_entry(struct inode *dir,
331 struct dentry *dentry,
332 struct udf_fileident_bh *fibh,
333 struct fileIdentDesc *cfi, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800335 struct super_block *sb = dir->i_sb;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700336 struct fileIdentDesc *fi = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500337 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 int namelen;
339 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800340 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int nfidlen;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500342 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200343 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200344 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700345 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700346 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800347 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Jan Karab80697c2008-03-04 14:14:05 +0100349 fibh->sbh = fibh->ebh = NULL;
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600350 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100351 if (!name) {
352 *err = -ENOMEM;
353 goto out_err;
354 }
355
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700356 if (dentry) {
357 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100359 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Andrew Gabbasov525e2c52016-01-15 02:44:19 -0600361 namelen = udf_put_filename(sb, dentry->d_name.name,
362 dentry->d_name.len,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600363 name, UDF_NAME_LEN_CS0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800364 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100366 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700368 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Jan Karaf2e83342018-06-13 17:30:14 +0200372 nfidlen = ALIGN(sizeof(struct fileIdentDesc) + namelen, UDF_NAME_PAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Jan Karaaf793292008-02-08 04:20:50 -0800374 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Jan Karaaf793292008-02-08 04:20:50 -0800376 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800377 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100378 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
379 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
380 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
381 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200382 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100383 fibh->soffset = fibh->eoffset = sb->s_blocksize;
384 goto add;
385 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200386 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700387 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800388 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200389 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800390 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200391 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800392 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 offset = 0;
394
Marcin Slusarz4b111112008-02-08 04:20:36 -0800395 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
396 if (!fibh->sbh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100398 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800401 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
Jan Karaaf793292008-02-08 04:20:50 -0800404 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700405 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
406 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700408 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100410 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700413 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Karaf2e83342018-06-13 17:30:14 +0200414 if (udf_dir_entry_len(cfi) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 cfi->descTag.tagSerialNum = cpu_to_le16(1);
416 cfi->fileVersionNum = cpu_to_le16(1);
417 cfi->fileCharacteristics = 0;
418 cfi->lengthFileIdent = namelen;
419 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800420 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
421 name))
Jan Karab80697c2008-03-04 14:14:05 +0100422 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800423 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100425 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 }
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700431add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 f_pos += nfidlen;
433
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800434 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700435 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700436 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700437 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 fibh->soffset -= udf_ext0_offset(dir);
439 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800440 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700442 brelse(fibh->ebh);
443 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800444 fibh->sbh = fibh->ebh =
445 udf_expand_dir_adinicb(dir, &block, err);
446 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100447 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800448 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700449 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800450 /* Load extent udf_expand_dir_adinicb() has created */
451 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
Jan Kara2c948b32009-12-03 13:39:28 +0100454 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700455 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 fibh->soffset = fibh->eoffset;
457 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700458 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700459 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 fibh->sbh = fibh->ebh;
461 }
462
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800463 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
464 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800465 fi = (struct fileIdentDesc *)
Jan Kara382a2282020-09-25 12:29:54 +0200466 (dinfo->i_data + fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800467 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800468 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700469 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800470 block = eloc.logicalBlockNum +
471 ((elen - 1) >>
472 dir->i_sb->s_blocksize_bits);
473 fi = (struct fileIdentDesc *)
474 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700476 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100477 /* Round up last extent in the file */
478 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
479 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
480 epos.offset -= sizeof(struct short_ad);
481 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
482 epos.offset -= sizeof(struct long_ad);
483 udf_write_aext(dir, &epos, &eloc, elen, 1);
484 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
485 - 1) & ~(sb->s_blocksize - 1);
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 fibh->soffset = fibh->eoffset - sb->s_blocksize;
488 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700489 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700490 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 fibh->sbh = fibh->ebh;
492 }
493
494 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700495 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800496 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800497 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100498 if (!fibh->ebh)
499 goto out_err;
Jan Kara4651c592010-11-25 03:56:24 +0100500 /* Extents could have been merged, invalidate our position */
501 brelse(epos.bh);
502 epos.bh = NULL;
503 epos.block = dinfo->i_location;
504 epos.offset = udf_file_entry_alloc_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700506 if (!fibh->soffset) {
Jan Kara4651c592010-11-25 03:56:24 +0100507 /* Find the freshly allocated block */
508 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
509 (EXT_RECORDED_ALLOCATED >> 30))
510 ;
511 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700512 dir->i_sb->s_blocksize_bits);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700513 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 fibh->sbh = fibh->ebh;
515 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700516 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800518 (fibh->sbh->b_data + sb->s_blocksize +
519 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521 }
522
523 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800524 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800525 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200526 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800528 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200529 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 cfi->fileVersionNum = cpu_to_le16(1);
531 cfi->lengthFileIdent = namelen;
532 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700533 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800535 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
536 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100537 else {
538 /* Find the last extent and truncate it to proper size */
539 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
540 (EXT_RECORDED_ALLOCATED >> 30))
541 ;
542 elen -= dinfo->i_lenExtents - dir->i_size;
543 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
544 epos.offset -= sizeof(struct short_ad);
545 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
546 epos.offset -= sizeof(struct long_ad);
547 udf_write_aext(dir, &epos, &eloc, elen, 1);
548 dinfo->i_lenExtents = dir->i_size;
549 }
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100552 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700553 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100555 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Jan Karab80697c2008-03-04 14:14:05 +0100557
558out_err:
559 fi = NULL;
560 if (fibh->sbh != fibh->ebh)
561 brelse(fibh->ebh);
562 brelse(fibh->sbh);
563out_ok:
564 brelse(epos.bh);
565 kfree(name);
566 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700570 struct udf_fileident_bh *fibh,
571 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200576 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
579}
580
Al Virod2be51c2014-09-04 09:34:14 -0400581static int udf_add_nondir(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Al Virod2be51c2014-09-04 09:34:14 -0400583 struct udf_inode_info *iinfo = UDF_I(inode);
David Howells2b0143b2015-03-17 22:25:59 +0000584 struct inode *dir = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 struct udf_fileident_bh fibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct fileIdentDesc cfi, *fi;
587 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Marcin Slusarz4b111112008-02-08 04:20:36 -0800589 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
Al Virod2be51c2014-09-04 09:34:14 -0400590 if (unlikely(!fi)) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200591 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400592 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return err;
594 }
595 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800596 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700597 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800598 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700600 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -0400601 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700603 brelse(fibh.ebh);
604 brelse(fibh.sbh);
Al Viro1e2e5472018-05-04 08:23:01 -0400605 d_instantiate_new(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return 0;
608}
609
Al Virod2be51c2014-09-04 09:34:14 -0400610static int udf_create(struct inode *dir, struct dentry *dentry, umode_t mode,
611 bool excl)
612{
Al Viro0b93a922014-09-04 09:47:41 -0400613 struct inode *inode = udf_new_inode(dir, mode);
Al Virod2be51c2014-09-04 09:34:14 -0400614
Al Viro0b93a922014-09-04 09:47:41 -0400615 if (IS_ERR(inode))
616 return PTR_ERR(inode);
Al Virod2be51c2014-09-04 09:34:14 -0400617
618 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
619 inode->i_data.a_ops = &udf_adinicb_aops;
620 else
621 inode->i_data.a_ops = &udf_aops;
622 inode->i_op = &udf_file_inode_operations;
623 inode->i_fop = &udf_file_operations;
624 mark_inode_dirty(inode);
625
626 return udf_add_nondir(dentry, inode);
627}
628
Al Viro656d09d2013-06-12 09:35:33 +0400629static int udf_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
630{
Al Viro0b93a922014-09-04 09:47:41 -0400631 struct inode *inode = udf_new_inode(dir, mode);
Al Viro656d09d2013-06-12 09:35:33 +0400632
Al Viro0b93a922014-09-04 09:47:41 -0400633 if (IS_ERR(inode))
634 return PTR_ERR(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400635
Al Viro0b93a922014-09-04 09:47:41 -0400636 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Al Viro656d09d2013-06-12 09:35:33 +0400637 inode->i_data.a_ops = &udf_adinicb_aops;
638 else
639 inode->i_data.a_ops = &udf_aops;
640 inode->i_op = &udf_file_inode_operations;
641 inode->i_fop = &udf_file_operations;
642 mark_inode_dirty(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400643 d_tmpfile(dentry, inode);
Al Virob2315092014-09-04 09:38:11 -0400644 unlock_new_inode(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400645 return 0;
646}
647
Al Viro1a67aaf2011-07-26 01:52:52 -0400648static int udf_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700649 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700651 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 if (!old_valid_dev(rdev))
654 return -EINVAL;
655
Al Viro0b93a922014-09-04 09:47:41 -0400656 inode = udf_new_inode(dir, mode);
657 if (IS_ERR(inode))
658 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Al Virod2be51c2014-09-04 09:34:14 -0400660 init_special_inode(inode, mode, rdev);
661 return udf_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Al Viro18bb1db2011-07-26 01:41:39 -0400664static int udf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700666 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 struct udf_fileident_bh fibh;
668 struct fileIdentDesc cfi, *fi;
669 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800670 struct udf_inode_info *dinfo = UDF_I(dir);
671 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Al Viro0b93a922014-09-04 09:47:41 -0400673 inode = udf_new_inode(dir, S_IFDIR | mode);
674 if (IS_ERR(inode))
675 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800677 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 inode->i_op = &udf_dir_inode_operations;
679 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800680 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
681 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200682 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400683 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 goto out;
685 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200686 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800688 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700689 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800690 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800691 cfi.fileCharacteristics =
692 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700694 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 mark_inode_dirty(inode);
696
Marcin Slusarz4b111112008-02-08 04:20:36 -0800697 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
698 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200699 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 mark_inode_dirty(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400701 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 goto out;
703 }
704 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800705 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700706 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800707 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
709 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700710 inc_nlink(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700711 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 mark_inode_dirty(dir);
Al Viro1e2e5472018-05-04 08:23:01 -0400713 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700715 brelse(fibh.ebh);
716 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700718
719out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return err;
721}
722
723static int empty_dir(struct inode *dir)
724{
725 struct fileIdentDesc *fi, cfi;
726 struct udf_fileident_bh fibh;
727 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800728 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500729 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200730 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700731 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700732 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700733 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800734 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Jan Karaaf793292008-02-08 04:20:50 -0800736 f_pos = udf_ext0_offset(dir);
737 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800739 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800741 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800742 &epos, &eloc, &elen, &offset) ==
743 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200744 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700745 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800746 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200747 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800748 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200749 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800750 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 offset = 0;
752
Marcin Slusarz4b111112008-02-08 04:20:36 -0800753 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
754 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700755 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return 0;
757 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700758 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700759 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return 0;
761 }
762
Jan Karaaf793292008-02-08 04:20:50 -0800763 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700764 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
765 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700766 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700768 brelse(fibh.ebh);
769 brelse(fibh.sbh);
770 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return 0;
772 }
773
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700774 if (cfi.lengthFileIdent &&
775 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700777 brelse(fibh.ebh);
778 brelse(fibh.sbh);
779 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0;
781 }
782 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700785 brelse(fibh.ebh);
786 brelse(fibh.sbh);
787 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return 1;
790}
791
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700792static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000795 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 struct udf_fileident_bh fibh;
797 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200798 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400801 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200802 if (IS_ERR_OR_NULL(fi)) {
803 if (fi)
804 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 retval = -EIO;
809 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200810 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 goto end_rmdir;
812 retval = -ENOTEMPTY;
813 if (!empty_dir(inode))
814 goto end_rmdir;
815 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
816 if (retval)
817 goto end_rmdir;
818 if (inode->i_nlink != 2)
Steve Magnanifcbf7632017-10-12 08:48:41 -0500819 udf_warn(inode->i_sb, "empty directory has nlink != 2 (%u)\n",
Joe Perchesa40ecd72011-10-10 01:08:04 -0700820 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700821 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700823 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800824 inode->i_ctime = dir->i_ctime = dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700825 current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 mark_inode_dirty(dir);
827
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700828end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700830 brelse(fibh.ebh);
831 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700832
833out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return retval;
835}
836
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700837static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000840 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct udf_fileident_bh fibh;
842 struct fileIdentDesc *fi;
843 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200844 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400847 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200848
849 if (IS_ERR_OR_NULL(fi)) {
850 if (fi)
851 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 retval = -EIO;
856 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200857 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto end_unlink;
859
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700860 if (!inode->i_nlink) {
Steve Magnanifcbf7632017-10-12 08:48:41 -0500861 udf_debug("Deleting nonexistent file (%lu), %u\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700862 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200863 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
865 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
866 if (retval)
867 goto end_unlink;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700868 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700870 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 inode->i_ctime = dir->i_ctime;
872 retval = 0;
873
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700874end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700876 brelse(fibh.ebh);
877 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700878
879out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return retval;
881}
882
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700883static int udf_symlink(struct inode *dir, struct dentry *dentry,
884 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Fabian Frederick6ff6b2b2017-04-23 20:58:15 +0200886 struct inode *inode = udf_new_inode(dir, S_IFLNK | 0777);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct pathComponent *pc;
Al Viro391e8bb2010-01-31 21:28:48 -0500888 const char *compstart;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700889 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 int eoffset, elen = 0;
Al Viro391e8bb2010-01-31 21:28:48 -0500891 uint8_t *ea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 int err;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500893 udf_pblk_t block;
Al Viro391e8bb2010-01-31 21:28:48 -0500894 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 int namelen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800896 struct udf_inode_info *iinfo;
Jan Karad664b6a2010-10-20 18:28:46 +0200897 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Al Viro0b93a922014-09-04 09:47:41 -0400899 if (IS_ERR(inode))
900 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100902 iinfo = UDF_I(inode);
903 down_write(&iinfo->i_data_sem);
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600904 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100905 if (!name) {
906 err = -ENOMEM;
907 goto out_no_entry;
908 }
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 inode->i_data.a_ops = &udf_symlink_aops;
Jan Karaad4d0532017-01-02 14:30:31 +0100911 inode->i_op = &udf_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500912 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800914 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200915 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700916 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Jan Karad664b6a2010-10-20 18:28:46 +0200918 block = udf_new_block(sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800919 iinfo->i_location.partitionReferenceNum,
920 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (!block)
922 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800923 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700924 epos.offset = udf_file_entry_alloc_offset(inode);
925 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800927 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800928 iinfo->i_location.partitionReferenceNum;
Jan Karad664b6a2010-10-20 18:28:46 +0200929 bsize = sb->s_blocksize;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700930 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200931 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700932 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Jan Karad664b6a2010-10-20 18:28:46 +0200934 block = udf_get_pblock(sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800935 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800936 0);
Jan Karad664b6a2010-10-20 18:28:46 +0200937 epos.bh = udf_tgetblk(sb, block);
Arturo Giusti21bf1412021-05-18 12:34:57 +0200938 if (unlikely(!epos.bh)) {
939 err = -ENOMEM;
940 goto out_no_entry;
941 }
Jan Karaff116fc2007-05-08 00:35:14 -0700942 lock_buffer(epos.bh);
Jan Karad664b6a2010-10-20 18:28:46 +0200943 memset(epos.bh->b_data, 0x00, bsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700944 set_buffer_uptodate(epos.bh);
945 unlock_buffer(epos.bh);
946 mark_buffer_dirty_inode(epos.bh, inode);
947 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800948 } else
Jan Kara382a2282020-09-25 12:29:54 +0200949 ea = iinfo->i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Jan Karad664b6a2010-10-20 18:28:46 +0200951 eoffset = sb->s_blocksize - udf_ext0_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 pc = (struct pathComponent *)ea;
953
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700954 if (*symname == '/') {
955 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 symname++;
957 } while (*symname == '/');
958
959 pc->componentType = 1;
960 pc->lengthComponentIdent = 0;
961 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 elen += sizeof(struct pathComponent);
963 }
964
965 err = -ENAMETOOLONG;
966
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700967 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (elen + sizeof(struct pathComponent) > eoffset)
969 goto out_no_entry;
970
971 pc = (struct pathComponent *)(ea + elen);
972
Al Viro391e8bb2010-01-31 21:28:48 -0500973 compstart = symname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700975 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 symname++;
977 } while (*symname && *symname != '/');
978
979 pc->componentType = 5;
980 pc->lengthComponentIdent = 0;
981 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700982 if (compstart[0] == '.') {
983 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800985 else if ((symname - compstart) == 2 &&
986 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 pc->componentType = 3;
988 }
989
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700990 if (pc->componentType == 5) {
Andrew Gabbasov525e2c52016-01-15 02:44:19 -0600991 namelen = udf_put_filename(sb, compstart,
992 symname - compstart,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600993 name, UDF_NAME_LEN_CS0);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700994 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 goto out_no_entry;
996
Marcin Slusarz4b111112008-02-08 04:20:36 -0800997 if (elen + sizeof(struct pathComponent) + namelen >
998 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto out_no_entry;
1000 else
1001 pc->lengthComponentIdent = namelen;
1002
1003 memcpy(pc->componentIdent, name, namelen);
1004 }
1005
1006 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
1007
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001008 if (*symname) {
1009 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 symname++;
1011 } while (*symname == '/');
1012 }
1013 }
1014
Jan Kara3bf25cb2007-05-08 00:35:16 -07001015 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001017 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1018 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +01001019 else
1020 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 mark_inode_dirty(inode);
Jan Kara4ea77722013-12-23 22:02:16 +01001022 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Al Virod2be51c2014-09-04 09:34:14 -04001024 err = udf_add_nondir(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001025out:
Jan Karab80697c2008-03-04 14:14:05 +01001026 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return err;
1028
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001029out_no_entry:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001030 up_write(&iinfo->i_data_sem);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001031 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -04001032 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 goto out;
1034}
1035
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001036static int udf_link(struct dentry *old_dentry, struct inode *dir,
1037 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
David Howells2b0143b2015-03-17 22:25:59 +00001039 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 struct udf_fileident_bh fibh;
1041 struct fileIdentDesc cfi, *fi;
1042 int err;
1043
Marcin Slusarz4b111112008-02-08 04:20:36 -08001044 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1045 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return err;
1047 }
1048 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001049 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001050 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001051 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001052 cpu_to_le32(lvid_get_unique_id(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001055 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001059 brelse(fibh.ebh);
1060 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001061 inc_nlink(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001062 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 mark_inode_dirty(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001064 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001065 mark_inode_dirty(dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04001066 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return 0;
1070}
1071
1072/* Anybody can rename anything with this: the permission checks are left to the
1073 * higher-level routines.
1074 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001075static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +02001076 struct inode *new_dir, struct dentry *new_dentry,
1077 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
David Howells2b0143b2015-03-17 22:25:59 +00001079 struct inode *old_inode = d_inode(old_dentry);
1080 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001082 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1083 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 struct buffer_head *dir_bh = NULL;
1085 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001086 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001087 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Miklos Szeredif03b8ad2016-09-27 11:03:57 +02001089 if (flags & ~RENAME_NOREPLACE)
1090 return -EINVAL;
1091
Al Viro9fbb76c2008-10-12 00:15:17 -04001092 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001093 if (IS_ERR(ofi)) {
1094 retval = PTR_ERR(ofi);
1095 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
Fabian Frederick231473f2015-04-08 21:23:58 +02001097
1098 if (ofibh.sbh != ofibh.ebh)
1099 brelse(ofibh.ebh);
1100
1101 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001103 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001104 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 goto end_rename;
1106
Al Viro9fbb76c2008-10-12 00:15:17 -04001107 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001108 if (IS_ERR(nfi)) {
1109 retval = PTR_ERR(nfi);
1110 goto end_rename;
1111 }
1112 if (nfi && !new_inode) {
1113 if (nfibh.sbh != nfibh.ebh)
1114 brelse(nfibh.ebh);
1115 brelse(nfibh.sbh);
1116 nfi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001118 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001119 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001121 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 retval = -ENOTEMPTY;
1123 if (!empty_dir(new_inode))
1124 goto end_rename;
1125 }
1126 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001127 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001128 dir_fi = udf_get_fileident(
Jan Kara382a2282020-09-25 12:29:54 +02001129 old_iinfo->i_data -
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001130 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001131 sizeof(struct extendedFileEntry) :
1132 sizeof(struct fileEntry)),
1133 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001134 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1136 if (!dir_bh)
1137 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001138 dir_fi = udf_get_fileident(dir_bh->b_data,
1139 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141 if (!dir_fi)
1142 goto end_rename;
1143 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001144 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001145 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001148 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001149 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1150 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (!nfi)
1152 goto end_rename;
1153 }
1154
1155 /*
1156 * Like most other Unix systems, set the ctime for inodes on a
1157 * rename.
1158 */
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001159 old_inode->i_ctime = current_time(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 mark_inode_dirty(old_inode);
1161
1162 /*
1163 * ok, that's it
1164 */
1165 ncfi.fileVersionNum = ocfi.fileVersionNum;
1166 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Markus Elfring033c9da2017-08-15 16:45:44 +02001167 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(ocfi.icb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1169
1170 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001171 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1173
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001174 if (new_inode) {
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001175 new_inode->i_ctime = current_time(new_inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001176 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001178 old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
1179 new_dir->i_ctime = new_dir->i_mtime = current_time(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 mark_inode_dirty(old_dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001181 mark_inode_dirty(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001183 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001184 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Jan Karaf2e83342018-06-13 17:30:14 +02001185 udf_update_tag((char *)dir_fi, udf_dir_entry_len(dir_fi));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001186 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001188 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001190
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001191 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001192 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001193 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001194 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001195 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 mark_inode_dirty(new_dir);
1197 }
1198 }
1199
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001200 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001202 brelse(ofibh.ebh);
1203 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205
1206 retval = 0;
1207
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001208end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001209 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001210 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001212 brelse(nfibh.ebh);
1213 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return retval;
1217}
1218
Rasmus Rohde221e5832008-04-30 17:22:06 +02001219static struct dentry *udf_get_parent(struct dentry *child)
1220{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001221 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001222 struct inode *inode = NULL;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001223 struct qstr dotdot = QSTR_INIT("..", 2);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001224 struct fileIdentDesc cfi;
1225 struct udf_fileident_bh fibh;
1226
David Howells2b0143b2015-03-17 22:25:59 +00001227 if (!udf_find_entry(d_inode(child), &dotdot, &fibh, &cfi))
Jan Kara6d3d5e82014-09-04 16:15:51 +02001228 return ERR_PTR(-EACCES);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001229
1230 if (fibh.sbh != fibh.ebh)
1231 brelse(fibh.ebh);
1232 brelse(fibh.sbh);
1233
Pekka Enberg97e961f2008-10-15 12:29:03 +02001234 tloc = lelb_to_cpu(cfi.icb.extLocation);
Al Virofc640052016-04-10 01:33:30 -04001235 inode = udf_iget(child->d_sb, &tloc);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001236 if (IS_ERR(inode))
1237 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001238
Christoph Hellwig44003722008-08-11 15:49:04 +02001239 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001240}
1241
1242
1243static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1244 u16 partref, __u32 generation)
1245{
1246 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001247 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001248
1249 if (block == 0)
1250 return ERR_PTR(-ESTALE);
1251
1252 loc.logicalBlockNum = block;
1253 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001254 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001255
Jan Kara6d3d5e82014-09-04 16:15:51 +02001256 if (IS_ERR(inode))
1257 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001258
1259 if (generation && inode->i_generation != generation) {
1260 iput(inode);
1261 return ERR_PTR(-ESTALE);
1262 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001263 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001264}
1265
1266static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1267 struct fid *fid, int fh_len, int fh_type)
1268{
NeilBrown92acca42015-05-08 10:16:23 +10001269 if (fh_len < 3 ||
Rasmus Rohde221e5832008-04-30 17:22:06 +02001270 (fh_type != FILEID_UDF_WITH_PARENT &&
1271 fh_type != FILEID_UDF_WITHOUT_PARENT))
1272 return NULL;
1273
1274 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1275 fid->udf.generation);
1276}
1277
1278static struct dentry *udf_fh_to_parent(struct super_block *sb,
1279 struct fid *fid, int fh_len, int fh_type)
1280{
NeilBrown92acca42015-05-08 10:16:23 +10001281 if (fh_len < 5 || fh_type != FILEID_UDF_WITH_PARENT)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001282 return NULL;
1283
1284 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1285 fid->udf.parent_partref,
1286 fid->udf.parent_generation);
1287}
Al Virob0b03822012-04-02 14:34:06 -04001288static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp,
1289 struct inode *parent)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001290{
1291 int len = *lenp;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001292 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001293 struct fid *fid = (struct fid *)fh;
1294 int type = FILEID_UDF_WITHOUT_PARENT;
1295
Al Virob0b03822012-04-02 14:34:06 -04001296 if (parent && (len < 5)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301297 *lenp = 5;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001298 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301299 } else if (len < 3) {
1300 *lenp = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001301 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301302 }
Rasmus Rohde221e5832008-04-30 17:22:06 +02001303
1304 *lenp = 3;
1305 fid->udf.block = location.logicalBlockNum;
1306 fid->udf.partref = location.partitionReferenceNum;
Mathias Krause0143fc52012-07-12 08:46:55 +02001307 fid->udf.parent_partref = 0;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001308 fid->udf.generation = inode->i_generation;
1309
Al Virob0b03822012-04-02 14:34:06 -04001310 if (parent) {
1311 location = UDF_I(parent)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001312 fid->udf.parent_block = location.logicalBlockNum;
1313 fid->udf.parent_partref = location.partitionReferenceNum;
1314 fid->udf.parent_generation = inode->i_generation;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001315 *lenp = 5;
1316 type = FILEID_UDF_WITH_PARENT;
1317 }
1318
1319 return type;
1320}
1321
1322const struct export_operations udf_export_ops = {
1323 .encode_fh = udf_encode_fh,
1324 .fh_to_dentry = udf_fh_to_dentry,
1325 .fh_to_parent = udf_fh_to_parent,
1326 .get_parent = udf_get_parent,
1327};
1328
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001329const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001330 .lookup = udf_lookup,
1331 .create = udf_create,
1332 .link = udf_link,
1333 .unlink = udf_unlink,
1334 .symlink = udf_symlink,
1335 .mkdir = udf_mkdir,
1336 .rmdir = udf_rmdir,
1337 .mknod = udf_mknod,
1338 .rename = udf_rename,
Al Viro656d09d2013-06-12 09:35:33 +04001339 .tmpfile = udf_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340};