blob: 0ed4861b038f6a3dc06fcf3d7eb26444981aa21b [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 Karaa48fc692021-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)) {
Jan Kara979a6e22021-05-03 11:54:24 +020078 memcpy(udf_get_fi_ident(sfi), fileident, lfi);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070079 } 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 {
Jan Kara979a6e22021-05-03 11:54:24 +020082 memcpy(udf_get_fi_ident(sfi), fileident, -offset);
Marcin Slusarz4b111112008-02-08 04:20:36 -080083 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)) {
Jan Kara979a6e22021-05-03 11:54:24 +020091 memset(udf_get_fi_ident(sfi) + lfi, 0x00, padlen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070092 } 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 {
Jan Kara979a6e22021-05-03 11:54:24 +020095 memset(udf_get_fi_ident(sfi) + 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 }
Jan Karaa48fc692021-11-04 15:22:35 +0100138 inode_inc_iversion(inode);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
142
Fabian Frederick231473f2015-04-08 21:23:58 +0200143/**
144 * udf_find_entry - find entry in given directory.
145 *
146 * @dir: directory inode to search in
147 * @child: qstr of the name
148 * @fibh: buffer head / inode with file identifier descriptor we found
149 * @cfi: found file identifier descriptor with given name
150 *
151 * This function searches in the directory @dir for a file name @child. When
152 * found, @fibh points to the buffer head(s) (bh is NULL for in ICB
153 * directories) containing the file identifier descriptor (FID). In that case
154 * the function returns pointer to the FID in the buffer or inode - but note
155 * that FID may be split among two buffers (blocks) so accessing it via that
156 * pointer isn't easily possible. This pointer can be used only as an iterator
157 * for other directory manipulation functions. For inspection of the FID @cfi
158 * can be used - the found FID is copied there.
159 *
160 * Returns pointer to FID, NULL when nothing found, or error code.
161 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700162static struct fileIdentDesc *udf_find_entry(struct inode *dir,
Al Viro391e8bb2010-01-31 21:28:48 -0500163 const struct qstr *child,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700164 struct udf_fileident_bh *fibh,
165 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700167 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 loff_t f_pos;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500169 udf_pblk_t block;
170 int flen;
Jan Kara066b9cd2016-01-26 21:07:30 +0100171 unsigned char *fname = NULL, *copy_name = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500172 unsigned char *nameptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 uint8_t lfi;
174 uint16_t liu;
KAMBAROV, ZAURec471dc2005-06-28 20:45:10 -0700175 loff_t size;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200176 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700177 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700178 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700179 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800180 struct udf_inode_info *dinfo = UDF_I(dir);
Al Viro9fbb76c2008-10-12 00:15:17 -0400181 int isdotdot = child->len == 2 &&
182 child->name[0] == '.' && child->name[1] == '.';
Jan Kara3ee30392014-12-18 22:49:12 +0100183 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Jan Karaaf793292008-02-08 04:20:50 -0800185 size = udf_ext0_offset(dir) + dir->i_size;
186 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Jan Karab80697c2008-03-04 14:14:05 +0100188 fibh->sbh = fibh->ebh = NULL;
Jan Kara3ee30392014-12-18 22:49:12 +0100189 fibh->soffset = fibh->eoffset = f_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +0100190 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +0100191 if (inode_bmap(dir, f_pos >> sb->s_blocksize_bits, &epos,
Fabian Frederick231473f2015-04-08 21:23:58 +0200192 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
193 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100194 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200195 }
196
Jan Kara3ee30392014-12-18 22:49:12 +0100197 block = udf_get_lb_pblock(sb, &eloc, offset);
198 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800199 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200200 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800201 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200202 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800203 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 offset = 0;
205
Jan Kara3ee30392014-12-18 22:49:12 +0100206 fibh->sbh = fibh->ebh = udf_tread(sb, block);
Fabian Frederick231473f2015-04-08 21:23:58 +0200207 if (!fibh->sbh) {
208 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100209 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
Jan Karab80697c2008-03-04 14:14:05 +0100213 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
Fabian Frederick231473f2015-04-08 21:23:58 +0200214 if (!fname) {
215 fi = ERR_PTR(-ENOMEM);
Jan Karab80697c2008-03-04 14:14:05 +0100216 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200217 }
Jan Karab80697c2008-03-04 14:14:05 +0100218
Jan Karaaf793292008-02-08 04:20:50 -0800219 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700220 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
221 &elen, &offset);
Fabian Frederick231473f2015-04-08 21:23:58 +0200222 if (!fi) {
223 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100224 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 liu = le16_to_cpu(cfi->lengthOfImpUse);
228 lfi = cfi->lengthFileIdent;
229
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700230 if (fibh->sbh == fibh->ebh) {
Jan Kara979a6e22021-05-03 11:54:24 +0200231 nameptr = udf_get_fi_ident(fi);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700232 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int poffset; /* Unpaded ending offset */
234
Marcin Slusarz4b111112008-02-08 04:20:36 -0800235 poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
236 liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Marcin Slusarz4b111112008-02-08 04:20:36 -0800238 if (poffset >= lfi)
239 nameptr = (uint8_t *)(fibh->ebh->b_data +
240 poffset - lfi);
241 else {
Jan Kara066b9cd2016-01-26 21:07:30 +0100242 if (!copy_name) {
243 copy_name = kmalloc(UDF_NAME_LEN,
244 GFP_NOFS);
245 if (!copy_name) {
246 fi = ERR_PTR(-ENOMEM);
247 goto out_err;
248 }
249 }
250 nameptr = copy_name;
Jan Kara979a6e22021-05-03 11:54:24 +0200251 memcpy(nameptr, udf_get_fi_ident(fi),
Marcin Slusarz4b111112008-02-08 04:20:36 -0800252 lfi - poffset);
253 memcpy(nameptr + lfi - poffset,
254 fibh->ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256 }
257
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700258 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100259 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 continue;
261 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700262
263 if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100264 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 continue;
266 }
267
Rasmus Rohde221e5832008-04-30 17:22:06 +0200268 if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) &&
Jesper Juhla4264b32010-12-12 23:18:15 +0100269 isdotdot)
270 goto out_ok;
Rasmus Rohde221e5832008-04-30 17:22:06 +0200271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (!lfi)
273 continue;
274
Jan Kara3ee30392014-12-18 22:49:12 +0100275 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Fabian Frederick231473f2015-04-08 21:23:58 +0200276 if (flen < 0) {
277 fi = ERR_PTR(flen);
278 goto out_err;
279 }
280
281 if (udf_match(flen, fname, child->len, child->name))
Jan Karab80697c2008-03-04 14:14:05 +0100282 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700284
Jan Karab80697c2008-03-04 14:14:05 +0100285 fi = NULL;
Fabian Frederick231473f2015-04-08 21:23:58 +0200286out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700288 brelse(fibh->ebh);
289 brelse(fibh->sbh);
Jan Karab80697c2008-03-04 14:14:05 +0100290out_ok:
Jan Kara3bf25cb2007-05-08 00:35:16 -0700291 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100292 kfree(fname);
Jan Kara066b9cd2016-01-26 21:07:30 +0100293 kfree(copy_name);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700294
Jan Karab80697c2008-03-04 14:14:05 +0100295 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700298static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400299 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct inode *inode = NULL;
Jayachandran Cdb9a3692006-02-03 03:04:50 -0800302 struct fileIdentDesc cfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 struct udf_fileident_bh fibh;
Fabian Frederick231473f2015-04-08 21:23:58 +0200304 struct fileIdentDesc *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600306 if (dentry->d_name.len > UDF_NAME_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return ERR_PTR(-ENAMETOOLONG);
308
Fabian Frederick231473f2015-04-08 21:23:58 +0200309 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
310 if (IS_ERR(fi))
311 return ERR_CAST(fi);
312
313 if (fi) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200314 struct kernel_lb_addr loc;
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700317 brelse(fibh.ebh);
318 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Pekka Enberg97e961f2008-10-15 12:29:03 +0200320 loc = lelb_to_cpu(cfi.icb.extLocation);
321 inode = udf_iget(dir->i_sb, &loc);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200322 if (IS_ERR(inode))
323 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700325
Rasmus Rohde221e5832008-04-30 17:22:06 +0200326 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700329static struct fileIdentDesc *udf_add_entry(struct inode *dir,
330 struct dentry *dentry,
331 struct udf_fileident_bh *fibh,
332 struct fileIdentDesc *cfi, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800334 struct super_block *sb = dir->i_sb;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700335 struct fileIdentDesc *fi = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500336 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 int namelen;
338 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800339 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int nfidlen;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500341 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200342 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200343 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700344 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700345 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800346 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Jan Karab80697c2008-03-04 14:14:05 +0100348 fibh->sbh = fibh->ebh = NULL;
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600349 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100350 if (!name) {
351 *err = -ENOMEM;
352 goto out_err;
353 }
354
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700355 if (dentry) {
356 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100358 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
Andrew Gabbasov525e2c52016-01-15 02:44:19 -0600360 namelen = udf_put_filename(sb, dentry->d_name.name,
361 dentry->d_name.len,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600362 name, UDF_NAME_LEN_CS0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800363 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100365 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700367 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Jan Karaf2e83342018-06-13 17:30:14 +0200371 nfidlen = ALIGN(sizeof(struct fileIdentDesc) + namelen, UDF_NAME_PAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Jan Karaaf793292008-02-08 04:20:50 -0800373 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Jan Karaaf793292008-02-08 04:20:50 -0800375 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800376 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100377 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
378 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
379 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
380 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200381 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100382 fibh->soffset = fibh->eoffset = sb->s_blocksize;
383 goto add;
384 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200385 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700386 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800387 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200388 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800389 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200390 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800391 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 offset = 0;
393
Marcin Slusarz4b111112008-02-08 04:20:36 -0800394 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
395 if (!fibh->sbh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100397 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800400 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
Jan Karaaf793292008-02-08 04:20:50 -0800403 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700404 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
405 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700407 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100409 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700412 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Karaf2e83342018-06-13 17:30:14 +0200413 if (udf_dir_entry_len(cfi) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 cfi->descTag.tagSerialNum = cpu_to_le16(1);
415 cfi->fileVersionNum = cpu_to_le16(1);
416 cfi->fileCharacteristics = 0;
417 cfi->lengthFileIdent = namelen;
418 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800419 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
420 name))
Jan Karab80697c2008-03-04 14:14:05 +0100421 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800422 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100424 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426 }
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700430add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 f_pos += nfidlen;
432
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800433 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700434 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700435 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700436 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 fibh->soffset -= udf_ext0_offset(dir);
438 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800439 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700441 brelse(fibh->ebh);
442 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800443 fibh->sbh = fibh->ebh =
444 udf_expand_dir_adinicb(dir, &block, err);
445 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100446 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800447 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700448 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800449 /* Load extent udf_expand_dir_adinicb() has created */
450 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
Jan Kara2c948b32009-12-03 13:39:28 +0100453 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700454 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 fibh->soffset = fibh->eoffset;
456 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700457 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700458 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 fibh->sbh = fibh->ebh;
460 }
461
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800462 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
463 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800464 fi = (struct fileIdentDesc *)
Jan Kara382a2282020-09-25 12:29:54 +0200465 (dinfo->i_data + fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800466 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800467 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700468 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800469 block = eloc.logicalBlockNum +
470 ((elen - 1) >>
471 dir->i_sb->s_blocksize_bits);
472 fi = (struct fileIdentDesc *)
473 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700475 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100476 /* Round up last extent in the file */
477 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
478 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
479 epos.offset -= sizeof(struct short_ad);
480 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
481 epos.offset -= sizeof(struct long_ad);
482 udf_write_aext(dir, &epos, &eloc, elen, 1);
483 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
484 - 1) & ~(sb->s_blocksize - 1);
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 fibh->soffset = fibh->eoffset - sb->s_blocksize;
487 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700488 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700489 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 fibh->sbh = fibh->ebh;
491 }
492
493 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700494 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800495 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800496 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100497 if (!fibh->ebh)
498 goto out_err;
Jan Kara4651c592010-11-25 03:56:24 +0100499 /* Extents could have been merged, invalidate our position */
500 brelse(epos.bh);
501 epos.bh = NULL;
502 epos.block = dinfo->i_location;
503 epos.offset = udf_file_entry_alloc_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700505 if (!fibh->soffset) {
Jan Kara4651c592010-11-25 03:56:24 +0100506 /* Find the freshly allocated block */
507 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
508 (EXT_RECORDED_ALLOCATED >> 30))
509 ;
510 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700511 dir->i_sb->s_blocksize_bits);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700512 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 fibh->sbh = fibh->ebh;
514 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700515 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800517 (fibh->sbh->b_data + sb->s_blocksize +
518 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 }
521
522 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800523 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800524 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200525 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800527 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200528 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 cfi->fileVersionNum = cpu_to_le16(1);
530 cfi->lengthFileIdent = namelen;
531 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700532 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800534 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
535 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100536 else {
537 /* Find the last extent and truncate it to proper size */
538 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
539 (EXT_RECORDED_ALLOCATED >> 30))
540 ;
541 elen -= dinfo->i_lenExtents - dir->i_size;
542 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
543 epos.offset -= sizeof(struct short_ad);
544 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
545 epos.offset -= sizeof(struct long_ad);
546 udf_write_aext(dir, &epos, &eloc, elen, 1);
547 dinfo->i_lenExtents = dir->i_size;
548 }
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100551 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700552 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100554 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
Jan Karab80697c2008-03-04 14:14:05 +0100556
557out_err:
558 fi = NULL;
559 if (fibh->sbh != fibh->ebh)
560 brelse(fibh->ebh);
561 brelse(fibh->sbh);
562out_ok:
563 brelse(epos.bh);
564 kfree(name);
565 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700569 struct udf_fileident_bh *fibh,
570 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200575 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
578}
579
Al Virod2be51c2014-09-04 09:34:14 -0400580static int udf_add_nondir(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Al Virod2be51c2014-09-04 09:34:14 -0400582 struct udf_inode_info *iinfo = UDF_I(inode);
David Howells2b0143b2015-03-17 22:25:59 +0000583 struct inode *dir = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 struct udf_fileident_bh fibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 struct fileIdentDesc cfi, *fi;
586 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Marcin Slusarz4b111112008-02-08 04:20:36 -0800588 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
Al Virod2be51c2014-09-04 09:34:14 -0400589 if (unlikely(!fi)) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200590 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400591 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return err;
593 }
594 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800595 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700596 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800597 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700599 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -0400600 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700602 brelse(fibh.ebh);
603 brelse(fibh.sbh);
Al Viro1e2e5472018-05-04 08:23:01 -0400604 d_instantiate_new(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 0;
607}
608
Christian Brauner549c7292021-01-21 14:19:43 +0100609static int udf_create(struct user_namespace *mnt_userns, struct inode *dir,
610 struct dentry *dentry, umode_t mode, bool excl)
Al Virod2be51c2014-09-04 09:34:14 -0400611{
Al Viro0b93a922014-09-04 09:47:41 -0400612 struct inode *inode = udf_new_inode(dir, mode);
Al Virod2be51c2014-09-04 09:34:14 -0400613
Al Viro0b93a922014-09-04 09:47:41 -0400614 if (IS_ERR(inode))
615 return PTR_ERR(inode);
Al Virod2be51c2014-09-04 09:34:14 -0400616
617 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
618 inode->i_data.a_ops = &udf_adinicb_aops;
619 else
620 inode->i_data.a_ops = &udf_aops;
621 inode->i_op = &udf_file_inode_operations;
622 inode->i_fop = &udf_file_operations;
623 mark_inode_dirty(inode);
624
625 return udf_add_nondir(dentry, inode);
626}
627
Christian Brauner549c7292021-01-21 14:19:43 +0100628static int udf_tmpfile(struct user_namespace *mnt_userns, struct inode *dir,
629 struct dentry *dentry, umode_t mode)
Al Viro656d09d2013-06-12 09:35:33 +0400630{
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
Christian Brauner549c7292021-01-21 14:19:43 +0100648static int udf_mknod(struct user_namespace *mnt_userns, struct inode *dir,
649 struct dentry *dentry, umode_t mode, 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
Christian Brauner549c7292021-01-21 14:19:43 +0100664static int udf_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
665 struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700667 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct udf_fileident_bh fibh;
669 struct fileIdentDesc cfi, *fi;
670 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800671 struct udf_inode_info *dinfo = UDF_I(dir);
672 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Al Viro0b93a922014-09-04 09:47:41 -0400674 inode = udf_new_inode(dir, S_IFDIR | mode);
675 if (IS_ERR(inode))
676 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800678 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 inode->i_op = &udf_dir_inode_operations;
680 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800681 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
682 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200683 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400684 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 goto out;
686 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200687 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800689 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700690 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800691 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800692 cfi.fileCharacteristics =
693 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700695 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 mark_inode_dirty(inode);
697
Marcin Slusarz4b111112008-02-08 04:20:36 -0800698 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
699 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200700 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 mark_inode_dirty(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400702 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 goto out;
704 }
705 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800706 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700707 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800708 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
710 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700711 inc_nlink(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700712 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 mark_inode_dirty(dir);
Al Viro1e2e5472018-05-04 08:23:01 -0400714 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700716 brelse(fibh.ebh);
717 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700719
720out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return err;
722}
723
724static int empty_dir(struct inode *dir)
725{
726 struct fileIdentDesc *fi, cfi;
727 struct udf_fileident_bh fibh;
728 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800729 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500730 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200731 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700732 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700733 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700734 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800735 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jan Karaaf793292008-02-08 04:20:50 -0800737 f_pos = udf_ext0_offset(dir);
738 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800740 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800742 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800743 &epos, &eloc, &elen, &offset) ==
744 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200745 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700746 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800747 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200748 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800749 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200750 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800751 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 offset = 0;
753
Marcin Slusarz4b111112008-02-08 04:20:36 -0800754 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
755 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700756 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return 0;
758 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700759 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700760 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return 0;
762 }
763
Jan Karaaf793292008-02-08 04:20:50 -0800764 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700765 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
766 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700767 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700769 brelse(fibh.ebh);
770 brelse(fibh.sbh);
771 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return 0;
773 }
774
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700775 if (cfi.lengthFileIdent &&
776 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700778 brelse(fibh.ebh);
779 brelse(fibh.sbh);
780 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return 0;
782 }
783 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700786 brelse(fibh.ebh);
787 brelse(fibh.sbh);
788 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return 1;
791}
792
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700793static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000796 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 struct udf_fileident_bh fibh;
798 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200799 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400802 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200803 if (IS_ERR_OR_NULL(fi)) {
804 if (fi)
805 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 retval = -EIO;
810 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200811 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 goto end_rmdir;
813 retval = -ENOTEMPTY;
814 if (!empty_dir(inode))
815 goto end_rmdir;
816 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
817 if (retval)
818 goto end_rmdir;
819 if (inode->i_nlink != 2)
Steve Magnanifcbf7632017-10-12 08:48:41 -0500820 udf_warn(inode->i_sb, "empty directory has nlink != 2 (%u)\n",
Joe Perchesa40ecd72011-10-10 01:08:04 -0700821 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700822 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700824 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800825 inode->i_ctime = dir->i_ctime = dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700826 current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 mark_inode_dirty(dir);
828
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700829end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700831 brelse(fibh.ebh);
832 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700833
834out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return retval;
836}
837
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700838static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000841 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct udf_fileident_bh fibh;
843 struct fileIdentDesc *fi;
844 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200845 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400848 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200849
850 if (IS_ERR_OR_NULL(fi)) {
851 if (fi)
852 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 retval = -EIO;
857 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200858 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 goto end_unlink;
860
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700861 if (!inode->i_nlink) {
Steve Magnanifcbf7632017-10-12 08:48:41 -0500862 udf_debug("Deleting nonexistent file (%lu), %u\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700863 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200864 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
867 if (retval)
868 goto end_unlink;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700869 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700871 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 inode->i_ctime = dir->i_ctime;
873 retval = 0;
874
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700875end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700877 brelse(fibh.ebh);
878 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700879
880out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return retval;
882}
883
Christian Brauner549c7292021-01-21 14:19:43 +0100884static int udf_symlink(struct user_namespace *mnt_userns, struct inode *dir,
885 struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Fabian Frederick6ff6b2b2017-04-23 20:58:15 +0200887 struct inode *inode = udf_new_inode(dir, S_IFLNK | 0777);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct pathComponent *pc;
Al Viro391e8bb2010-01-31 21:28:48 -0500889 const char *compstart;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700890 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 int eoffset, elen = 0;
Al Viro391e8bb2010-01-31 21:28:48 -0500892 uint8_t *ea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 int err;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500894 udf_pblk_t block;
Al Viro391e8bb2010-01-31 21:28:48 -0500895 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 int namelen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800897 struct udf_inode_info *iinfo;
Jan Karad664b6a2010-10-20 18:28:46 +0200898 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Al Viro0b93a922014-09-04 09:47:41 -0400900 if (IS_ERR(inode))
901 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100903 iinfo = UDF_I(inode);
904 down_write(&iinfo->i_data_sem);
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600905 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100906 if (!name) {
907 err = -ENOMEM;
908 goto out_no_entry;
909 }
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 inode->i_data.a_ops = &udf_symlink_aops;
Jan Karaad4d0532017-01-02 14:30:31 +0100912 inode->i_op = &udf_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500913 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800915 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200916 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700917 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Jan Karad664b6a2010-10-20 18:28:46 +0200919 block = udf_new_block(sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800920 iinfo->i_location.partitionReferenceNum,
921 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (!block)
923 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800924 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700925 epos.offset = udf_file_entry_alloc_offset(inode);
926 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800928 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800929 iinfo->i_location.partitionReferenceNum;
Jan Karad664b6a2010-10-20 18:28:46 +0200930 bsize = sb->s_blocksize;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700931 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200932 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700933 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Jan Karad664b6a2010-10-20 18:28:46 +0200935 block = udf_get_pblock(sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800936 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800937 0);
Jan Karad664b6a2010-10-20 18:28:46 +0200938 epos.bh = udf_tgetblk(sb, block);
Arturo Giustifa236c22021-05-18 12:34:57 +0200939 if (unlikely(!epos.bh)) {
940 err = -ENOMEM;
941 goto out_no_entry;
942 }
Jan Karaff116fc2007-05-08 00:35:14 -0700943 lock_buffer(epos.bh);
Jan Karad664b6a2010-10-20 18:28:46 +0200944 memset(epos.bh->b_data, 0x00, bsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700945 set_buffer_uptodate(epos.bh);
946 unlock_buffer(epos.bh);
947 mark_buffer_dirty_inode(epos.bh, inode);
948 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800949 } else
Jan Kara382a2282020-09-25 12:29:54 +0200950 ea = iinfo->i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Jan Karad664b6a2010-10-20 18:28:46 +0200952 eoffset = sb->s_blocksize - udf_ext0_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 pc = (struct pathComponent *)ea;
954
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700955 if (*symname == '/') {
956 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 symname++;
958 } while (*symname == '/');
959
960 pc->componentType = 1;
961 pc->lengthComponentIdent = 0;
962 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 elen += sizeof(struct pathComponent);
964 }
965
966 err = -ENAMETOOLONG;
967
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700968 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (elen + sizeof(struct pathComponent) > eoffset)
970 goto out_no_entry;
971
972 pc = (struct pathComponent *)(ea + elen);
973
Al Viro391e8bb2010-01-31 21:28:48 -0500974 compstart = symname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700976 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 symname++;
978 } while (*symname && *symname != '/');
979
980 pc->componentType = 5;
981 pc->lengthComponentIdent = 0;
982 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700983 if (compstart[0] == '.') {
984 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800986 else if ((symname - compstart) == 2 &&
987 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 pc->componentType = 3;
989 }
990
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700991 if (pc->componentType == 5) {
Andrew Gabbasov525e2c52016-01-15 02:44:19 -0600992 namelen = udf_put_filename(sb, compstart,
993 symname - compstart,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600994 name, UDF_NAME_LEN_CS0);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700995 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto out_no_entry;
997
Marcin Slusarz4b111112008-02-08 04:20:36 -0800998 if (elen + sizeof(struct pathComponent) + namelen >
999 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 goto out_no_entry;
1001 else
1002 pc->lengthComponentIdent = namelen;
1003
1004 memcpy(pc->componentIdent, name, namelen);
1005 }
1006
1007 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
1008
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001009 if (*symname) {
1010 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 symname++;
1012 } while (*symname == '/');
1013 }
1014 }
1015
Jan Kara3bf25cb2007-05-08 00:35:16 -07001016 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001018 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1019 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +01001020 else
1021 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 mark_inode_dirty(inode);
Jan Kara4ea77722013-12-23 22:02:16 +01001023 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Al Virod2be51c2014-09-04 09:34:14 -04001025 err = udf_add_nondir(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001026out:
Jan Karab80697c2008-03-04 14:14:05 +01001027 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return err;
1029
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001030out_no_entry:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001031 up_write(&iinfo->i_data_sem);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001032 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -04001033 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 goto out;
1035}
1036
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001037static int udf_link(struct dentry *old_dentry, struct inode *dir,
1038 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
David Howells2b0143b2015-03-17 22:25:59 +00001040 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct udf_fileident_bh fibh;
1042 struct fileIdentDesc cfi, *fi;
1043 int err;
1044
Marcin Slusarz4b111112008-02-08 04:20:36 -08001045 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1046 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return err;
1048 }
1049 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001050 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001051 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001052 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001053 cpu_to_le32(lvid_get_unique_id(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001056 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001060 brelse(fibh.ebh);
1061 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001062 inc_nlink(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001063 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 mark_inode_dirty(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001065 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001066 mark_inode_dirty(dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04001067 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return 0;
1071}
1072
1073/* Anybody can rename anything with this: the permission checks are left to the
1074 * higher-level routines.
1075 */
Christian Brauner549c7292021-01-21 14:19:43 +01001076static int udf_rename(struct user_namespace *mnt_userns, struct inode *old_dir,
1077 struct dentry *old_dentry, struct inode *new_dir,
1078 struct dentry *new_dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
David Howells2b0143b2015-03-17 22:25:59 +00001080 struct inode *old_inode = d_inode(old_dentry);
1081 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001083 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1084 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 struct buffer_head *dir_bh = NULL;
1086 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001087 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001088 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Miklos Szeredif03b8ad2016-09-27 11:03:57 +02001090 if (flags & ~RENAME_NOREPLACE)
1091 return -EINVAL;
1092
Al Viro9fbb76c2008-10-12 00:15:17 -04001093 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001094 if (IS_ERR(ofi)) {
1095 retval = PTR_ERR(ofi);
1096 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
Fabian Frederick231473f2015-04-08 21:23:58 +02001098
1099 if (ofibh.sbh != ofibh.ebh)
1100 brelse(ofibh.ebh);
1101
1102 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001104 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001105 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 goto end_rename;
1107
Al Viro9fbb76c2008-10-12 00:15:17 -04001108 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001109 if (IS_ERR(nfi)) {
1110 retval = PTR_ERR(nfi);
1111 goto end_rename;
1112 }
1113 if (nfi && !new_inode) {
1114 if (nfibh.sbh != nfibh.ebh)
1115 brelse(nfibh.ebh);
1116 brelse(nfibh.sbh);
1117 nfi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001119 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001120 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001122 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 retval = -ENOTEMPTY;
1124 if (!empty_dir(new_inode))
1125 goto end_rename;
1126 }
1127 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001128 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001129 dir_fi = udf_get_fileident(
Jan Kara382a2282020-09-25 12:29:54 +02001130 old_iinfo->i_data -
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001131 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001132 sizeof(struct extendedFileEntry) :
1133 sizeof(struct fileEntry)),
1134 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001135 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1137 if (!dir_bh)
1138 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001139 dir_fi = udf_get_fileident(dir_bh->b_data,
1140 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142 if (!dir_fi)
1143 goto end_rename;
1144 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001145 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001146 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001149 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001150 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1151 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (!nfi)
1153 goto end_rename;
1154 }
1155
1156 /*
1157 * Like most other Unix systems, set the ctime for inodes on a
1158 * rename.
1159 */
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001160 old_inode->i_ctime = current_time(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 mark_inode_dirty(old_inode);
1162
1163 /*
1164 * ok, that's it
1165 */
1166 ncfi.fileVersionNum = ocfi.fileVersionNum;
1167 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Markus Elfring033c9da2017-08-15 16:45:44 +02001168 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(ocfi.icb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1170
1171 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001172 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1174
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001175 if (new_inode) {
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001176 new_inode->i_ctime = current_time(new_inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001177 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001179 old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
1180 new_dir->i_ctime = new_dir->i_mtime = current_time(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 mark_inode_dirty(old_dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001182 mark_inode_dirty(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001184 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001185 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Jan Karaf2e83342018-06-13 17:30:14 +02001186 udf_update_tag((char *)dir_fi, udf_dir_entry_len(dir_fi));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001187 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001189 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001191
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001192 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001193 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001194 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001195 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001196 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 mark_inode_dirty(new_dir);
1198 }
1199 }
1200
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001201 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001203 brelse(ofibh.ebh);
1204 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206
1207 retval = 0;
1208
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001209end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001210 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001211 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001213 brelse(nfibh.ebh);
1214 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return retval;
1218}
1219
Rasmus Rohde221e5832008-04-30 17:22:06 +02001220static struct dentry *udf_get_parent(struct dentry *child)
1221{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001222 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001223 struct inode *inode = NULL;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001224 struct fileIdentDesc cfi;
1225 struct udf_fileident_bh fibh;
1226
Al Viro80e5d1ff52021-04-15 19:46:50 -04001227 if (!udf_find_entry(d_inode(child), &dotdot_name, &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};