blob: 58cc2414992b673296ff2d9408c62f3bd07b6f35 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * namei.c
3 *
4 * PURPOSE
5 * Inode name handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1998-2004 Ben Fennema
14 * (C) 1999-2000 Stelias Computing Inc
15 *
16 * HISTORY
17 *
18 * 12/12/98 blf Created. Split out the lookup code from dir.c
19 * 04/19/99 blf link, mknod, symlink support
20 */
21
22#include "udfdecl.h"
23
24#include "udf_i.h"
25#include "udf_sb.h"
26#include <linux/string.h>
27#include <linux/errno.h>
28#include <linux/mm.h>
29#include <linux/slab.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040030#include <linux/sched.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020031#include <linux/crc-itu-t.h>
Rasmus Rohde221e5832008-04-30 17:22:06 +020032#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Al Viro391e8bb2010-01-31 21:28:48 -050034static inline int udf_match(int len1, const unsigned char *name1, int len2,
35 const unsigned char *name2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 if (len1 != len2)
38 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 return !memcmp(name1, name2, len1);
41}
42
43int udf_write_fi(struct inode *inode, struct fileIdentDesc *cfi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070044 struct fileIdentDesc *sfi, struct udf_fileident_bh *fibh,
Marcin Slusarz4b111112008-02-08 04:20:36 -080045 uint8_t *impuse, uint8_t *fileident)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020047 uint16_t crclen = fibh->eoffset - fibh->soffset - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 uint16_t crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int offset;
50 uint16_t liu = le16_to_cpu(cfi->lengthOfImpUse);
51 uint8_t lfi = cfi->lengthFileIdent;
52 int padlen = fibh->eoffset - fibh->soffset - liu - lfi -
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070053 sizeof(struct fileIdentDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int adinicb = 0;
55
Marcin Slusarzc0b34432008-02-08 04:20:42 -080056 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 adinicb = 1;
58
59 offset = fibh->soffset + sizeof(struct fileIdentDesc);
60
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070061 if (impuse) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070062 if (adinicb || (offset + liu < 0)) {
63 memcpy((uint8_t *)sfi->impUse, impuse, liu);
64 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 memcpy(fibh->ebh->b_data + offset, impuse, liu);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070066 } else {
67 memcpy((uint8_t *)sfi->impUse, impuse, -offset);
Marcin Slusarz4b111112008-02-08 04:20:36 -080068 memcpy(fibh->ebh->b_data, impuse - offset,
69 liu + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71 }
72
73 offset += liu;
74
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070075 if (fileident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070076 if (adinicb || (offset + lfi < 0)) {
77 memcpy((uint8_t *)sfi->fileIdent + liu, fileident, lfi);
78 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 memcpy(fibh->ebh->b_data + offset, fileident, lfi);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070080 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -080081 memcpy((uint8_t *)sfi->fileIdent + liu, fileident,
82 -offset);
83 memcpy(fibh->ebh->b_data, fileident - offset,
84 lfi + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86 }
87
88 offset += lfi;
89
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070090 if (adinicb || (offset + padlen < 0)) {
91 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, padlen);
92 } else if (offset >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 memset(fibh->ebh->b_data + offset, 0x00, padlen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070094 } else {
95 memset((uint8_t *)sfi->padding + liu + lfi, 0x00, -offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 memset(fibh->ebh->b_data, 0x00, padlen + offset);
97 }
98
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020099 crc = crc_itu_t(0, (uint8_t *)cfi + sizeof(struct tag),
100 sizeof(struct fileIdentDesc) - sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700102 if (fibh->sbh == fibh->ebh) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200103 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200104 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200105 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700106 } else if (sizeof(struct fileIdentDesc) >= -fibh->soffset) {
Bob Copelandf845fce2008-04-17 09:47:48 +0200107 crc = crc_itu_t(crc, fibh->ebh->b_data +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800108 sizeof(struct fileIdentDesc) +
109 fibh->soffset,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200110 crclen + sizeof(struct tag) -
Bob Copelandf845fce2008-04-17 09:47:48 +0200111 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700112 } else {
Bob Copelandf845fce2008-04-17 09:47:48 +0200113 crc = crc_itu_t(crc, (uint8_t *)sfi->impUse,
114 -fibh->soffset - sizeof(struct fileIdentDesc));
115 crc = crc_itu_t(crc, fibh->ebh->b_data, fibh->eoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117
118 cfi->descTag.descCRC = cpu_to_le16(crc);
119 cfi->descTag.descCRCLength = cpu_to_le16(crclen);
Marcin Slusarz3f2587b2008-02-08 04:20:39 -0800120 cfi->descTag.tagChecksum = udf_tag_checksum(&cfi->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700122 if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800123 memcpy((uint8_t *)sfi, (uint8_t *)cfi,
124 sizeof(struct fileIdentDesc));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700125 } else {
126 memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset);
127 memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700128 sizeof(struct fileIdentDesc) + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700131 if (adinicb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700133 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (fibh->sbh != fibh->ebh)
135 mark_buffer_dirty_inode(fibh->ebh, inode);
136 mark_buffer_dirty_inode(fibh->sbh, inode);
137 }
138 return 0;
139}
140
Fabian Frederick231473f2015-04-08 21:23:58 +0200141/**
142 * udf_find_entry - find entry in given directory.
143 *
144 * @dir: directory inode to search in
145 * @child: qstr of the name
146 * @fibh: buffer head / inode with file identifier descriptor we found
147 * @cfi: found file identifier descriptor with given name
148 *
149 * This function searches in the directory @dir for a file name @child. When
150 * found, @fibh points to the buffer head(s) (bh is NULL for in ICB
151 * directories) containing the file identifier descriptor (FID). In that case
152 * the function returns pointer to the FID in the buffer or inode - but note
153 * that FID may be split among two buffers (blocks) so accessing it via that
154 * pointer isn't easily possible. This pointer can be used only as an iterator
155 * for other directory manipulation functions. For inspection of the FID @cfi
156 * can be used - the found FID is copied there.
157 *
158 * Returns pointer to FID, NULL when nothing found, or error code.
159 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700160static struct fileIdentDesc *udf_find_entry(struct inode *dir,
Al Viro391e8bb2010-01-31 21:28:48 -0500161 const struct qstr *child,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700162 struct udf_fileident_bh *fibh,
163 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700165 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 loff_t f_pos;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500167 udf_pblk_t block;
168 int flen;
Jan Kara066b9cd2016-01-26 21:07:30 +0100169 unsigned char *fname = NULL, *copy_name = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500170 unsigned char *nameptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 uint8_t lfi;
172 uint16_t liu;
KAMBAROV, ZAURec471dc2005-06-28 20:45:10 -0700173 loff_t size;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200174 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700175 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700176 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700177 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800178 struct udf_inode_info *dinfo = UDF_I(dir);
Al Viro9fbb76c2008-10-12 00:15:17 -0400179 int isdotdot = child->len == 2 &&
180 child->name[0] == '.' && child->name[1] == '.';
Jan Kara3ee30392014-12-18 22:49:12 +0100181 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Jan Karaaf793292008-02-08 04:20:50 -0800183 size = udf_ext0_offset(dir) + dir->i_size;
184 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jan Karab80697c2008-03-04 14:14:05 +0100186 fibh->sbh = fibh->ebh = NULL;
Jan Kara3ee30392014-12-18 22:49:12 +0100187 fibh->soffset = fibh->eoffset = f_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +0100188 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +0100189 if (inode_bmap(dir, f_pos >> sb->s_blocksize_bits, &epos,
Fabian Frederick231473f2015-04-08 21:23:58 +0200190 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
191 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100192 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200193 }
194
Jan Kara3ee30392014-12-18 22:49:12 +0100195 block = udf_get_lb_pblock(sb, &eloc, offset);
196 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800197 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200198 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800199 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200200 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800201 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 offset = 0;
203
Jan Kara3ee30392014-12-18 22:49:12 +0100204 fibh->sbh = fibh->ebh = udf_tread(sb, block);
Fabian Frederick231473f2015-04-08 21:23:58 +0200205 if (!fibh->sbh) {
206 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100207 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
Jan Karab80697c2008-03-04 14:14:05 +0100211 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
Fabian Frederick231473f2015-04-08 21:23:58 +0200212 if (!fname) {
213 fi = ERR_PTR(-ENOMEM);
Jan Karab80697c2008-03-04 14:14:05 +0100214 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200215 }
Jan Karab80697c2008-03-04 14:14:05 +0100216
Jan Karaaf793292008-02-08 04:20:50 -0800217 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700218 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
219 &elen, &offset);
Fabian Frederick231473f2015-04-08 21:23:58 +0200220 if (!fi) {
221 fi = ERR_PTR(-EIO);
Jan Karab80697c2008-03-04 14:14:05 +0100222 goto out_err;
Fabian Frederick231473f2015-04-08 21:23:58 +0200223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 liu = le16_to_cpu(cfi->lengthOfImpUse);
226 lfi = cfi->lengthFileIdent;
227
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700228 if (fibh->sbh == fibh->ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 nameptr = fi->fileIdent + liu;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700230 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 int poffset; /* Unpaded ending offset */
232
Marcin Slusarz4b111112008-02-08 04:20:36 -0800233 poffset = fibh->soffset + sizeof(struct fileIdentDesc) +
234 liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Marcin Slusarz4b111112008-02-08 04:20:36 -0800236 if (poffset >= lfi)
237 nameptr = (uint8_t *)(fibh->ebh->b_data +
238 poffset - lfi);
239 else {
Jan Kara066b9cd2016-01-26 21:07:30 +0100240 if (!copy_name) {
241 copy_name = kmalloc(UDF_NAME_LEN,
242 GFP_NOFS);
243 if (!copy_name) {
244 fi = ERR_PTR(-ENOMEM);
245 goto out_err;
246 }
247 }
248 nameptr = copy_name;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800249 memcpy(nameptr, fi->fileIdent + liu,
250 lfi - poffset);
251 memcpy(nameptr + lfi - poffset,
252 fibh->ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254 }
255
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700256 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100257 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 continue;
259 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700260
261 if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100262 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 continue;
264 }
265
Rasmus Rohde221e5832008-04-30 17:22:06 +0200266 if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) &&
Jesper Juhla4264b32010-12-12 23:18:15 +0100267 isdotdot)
268 goto out_ok;
Rasmus Rohde221e5832008-04-30 17:22:06 +0200269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (!lfi)
271 continue;
272
Jan Kara3ee30392014-12-18 22:49:12 +0100273 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Fabian Frederick231473f2015-04-08 21:23:58 +0200274 if (flen < 0) {
275 fi = ERR_PTR(flen);
276 goto out_err;
277 }
278
279 if (udf_match(flen, fname, child->len, child->name))
Jan Karab80697c2008-03-04 14:14:05 +0100280 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700282
Jan Karab80697c2008-03-04 14:14:05 +0100283 fi = NULL;
Fabian Frederick231473f2015-04-08 21:23:58 +0200284out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700286 brelse(fibh->ebh);
287 brelse(fibh->sbh);
Jan Karab80697c2008-03-04 14:14:05 +0100288out_ok:
Jan Kara3bf25cb2007-05-08 00:35:16 -0700289 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100290 kfree(fname);
Jan Kara066b9cd2016-01-26 21:07:30 +0100291 kfree(copy_name);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700292
Jan Karab80697c2008-03-04 14:14:05 +0100293 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700296static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400297 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct inode *inode = NULL;
Jayachandran Cdb9a3692006-02-03 03:04:50 -0800300 struct fileIdentDesc cfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct udf_fileident_bh fibh;
Fabian Frederick231473f2015-04-08 21:23:58 +0200302 struct fileIdentDesc *fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600304 if (dentry->d_name.len > UDF_NAME_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return ERR_PTR(-ENAMETOOLONG);
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#ifdef UDF_RECOVERY
308 /* temporary shorthand for specifying files by inode number */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700309 if (!strncmp(dentry->d_name.name, ".B=", 3)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200310 struct kernel_lb_addr lb = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700311 .logicalBlockNum = 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800312 .partitionReferenceNum =
313 simple_strtoul(dentry->d_name.name + 3,
314 NULL, 0),
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700315 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 inode = udf_iget(dir->i_sb, lb);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200317 if (IS_ERR(inode))
318 return inode;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800319 } else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700320#endif /* UDF_RECOVERY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Fabian Frederick231473f2015-04-08 21:23:58 +0200322 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
323 if (IS_ERR(fi))
324 return ERR_CAST(fi);
325
326 if (fi) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200327 struct kernel_lb_addr loc;
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700330 brelse(fibh.ebh);
331 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Pekka Enberg97e961f2008-10-15 12:29:03 +0200333 loc = lelb_to_cpu(cfi.icb.extLocation);
334 inode = udf_iget(dir->i_sb, &loc);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200335 if (IS_ERR(inode))
336 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700338
Rasmus Rohde221e5832008-04-30 17:22:06 +0200339 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700342static struct fileIdentDesc *udf_add_entry(struct inode *dir,
343 struct dentry *dentry,
344 struct udf_fileident_bh *fibh,
345 struct fileIdentDesc *cfi, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800347 struct super_block *sb = dir->i_sb;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700348 struct fileIdentDesc *fi = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -0500349 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 int namelen;
351 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800352 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 int nfidlen;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500354 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200355 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200356 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700357 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700358 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800359 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Jan Karab80697c2008-03-04 14:14:05 +0100361 fibh->sbh = fibh->ebh = NULL;
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600362 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100363 if (!name) {
364 *err = -ENOMEM;
365 goto out_err;
366 }
367
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700368 if (dentry) {
369 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100371 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Andrew Gabbasov525e2c52016-01-15 02:44:19 -0600373 namelen = udf_put_filename(sb, dentry->d_name.name,
374 dentry->d_name.len,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600375 name, UDF_NAME_LEN_CS0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800376 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100378 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700380 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jan Karaf2e83342018-06-13 17:30:14 +0200384 nfidlen = ALIGN(sizeof(struct fileIdentDesc) + namelen, UDF_NAME_PAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jan Karaaf793292008-02-08 04:20:50 -0800386 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jan Karaaf793292008-02-08 04:20:50 -0800388 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800389 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100390 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
391 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
392 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
393 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200394 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100395 fibh->soffset = fibh->eoffset = sb->s_blocksize;
396 goto add;
397 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200398 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700399 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800400 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200401 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800402 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200403 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800404 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 offset = 0;
406
Marcin Slusarz4b111112008-02-08 04:20:36 -0800407 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
408 if (!fibh->sbh) {
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
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800413 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
Jan Karaaf793292008-02-08 04:20:50 -0800416 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700417 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
418 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700420 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100422 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700425 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Karaf2e83342018-06-13 17:30:14 +0200426 if (udf_dir_entry_len(cfi) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 cfi->descTag.tagSerialNum = cpu_to_le16(1);
428 cfi->fileVersionNum = cpu_to_le16(1);
429 cfi->fileCharacteristics = 0;
430 cfi->lengthFileIdent = namelen;
431 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800432 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
433 name))
Jan Karab80697c2008-03-04 14:14:05 +0100434 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800435 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100437 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 }
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700443add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 f_pos += nfidlen;
445
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800446 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700447 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700448 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700449 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 fibh->soffset -= udf_ext0_offset(dir);
451 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800452 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700454 brelse(fibh->ebh);
455 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800456 fibh->sbh = fibh->ebh =
457 udf_expand_dir_adinicb(dir, &block, err);
458 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100459 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800460 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700461 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800462 /* Load extent udf_expand_dir_adinicb() has created */
463 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
Jan Kara2c948b32009-12-03 13:39:28 +0100466 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700467 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 fibh->soffset = fibh->eoffset;
469 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700470 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700471 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 fibh->sbh = fibh->ebh;
473 }
474
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800475 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
476 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800477 fi = (struct fileIdentDesc *)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800478 (dinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800479 fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800480 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800481 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700482 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800483 block = eloc.logicalBlockNum +
484 ((elen - 1) >>
485 dir->i_sb->s_blocksize_bits);
486 fi = (struct fileIdentDesc *)
487 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700489 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100490 /* Round up last extent in the file */
491 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
492 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
493 epos.offset -= sizeof(struct short_ad);
494 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
495 epos.offset -= sizeof(struct long_ad);
496 udf_write_aext(dir, &epos, &eloc, elen, 1);
497 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
498 - 1) & ~(sb->s_blocksize - 1);
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 fibh->soffset = fibh->eoffset - sb->s_blocksize;
501 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700502 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700503 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 fibh->sbh = fibh->ebh;
505 }
506
507 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700508 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800509 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800510 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100511 if (!fibh->ebh)
512 goto out_err;
Jan Kara4651c592010-11-25 03:56:24 +0100513 /* Extents could have been merged, invalidate our position */
514 brelse(epos.bh);
515 epos.bh = NULL;
516 epos.block = dinfo->i_location;
517 epos.offset = udf_file_entry_alloc_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700519 if (!fibh->soffset) {
Jan Kara4651c592010-11-25 03:56:24 +0100520 /* Find the freshly allocated block */
521 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
522 (EXT_RECORDED_ALLOCATED >> 30))
523 ;
524 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700525 dir->i_sb->s_blocksize_bits);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700526 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 fibh->sbh = fibh->ebh;
528 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700529 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800531 (fibh->sbh->b_data + sb->s_blocksize +
532 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534 }
535
536 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800537 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800538 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200539 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800541 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200542 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 cfi->fileVersionNum = cpu_to_le16(1);
544 cfi->lengthFileIdent = namelen;
545 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700546 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800548 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
549 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100550 else {
551 /* Find the last extent and truncate it to proper size */
552 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
553 (EXT_RECORDED_ALLOCATED >> 30))
554 ;
555 elen -= dinfo->i_lenExtents - dir->i_size;
556 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
557 epos.offset -= sizeof(struct short_ad);
558 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
559 epos.offset -= sizeof(struct long_ad);
560 udf_write_aext(dir, &epos, &eloc, elen, 1);
561 dinfo->i_lenExtents = dir->i_size;
562 }
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100565 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700566 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100568 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Jan Karab80697c2008-03-04 14:14:05 +0100570
571out_err:
572 fi = NULL;
573 if (fibh->sbh != fibh->ebh)
574 brelse(fibh->ebh);
575 brelse(fibh->sbh);
576out_ok:
577 brelse(epos.bh);
578 kfree(name);
579 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700583 struct udf_fileident_bh *fibh,
584 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200589 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
592}
593
Al Virod2be51c2014-09-04 09:34:14 -0400594static int udf_add_nondir(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Al Virod2be51c2014-09-04 09:34:14 -0400596 struct udf_inode_info *iinfo = UDF_I(inode);
David Howells2b0143b2015-03-17 22:25:59 +0000597 struct inode *dir = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 struct udf_fileident_bh fibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct fileIdentDesc cfi, *fi;
600 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Marcin Slusarz4b111112008-02-08 04:20:36 -0800602 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
Al Virod2be51c2014-09-04 09:34:14 -0400603 if (unlikely(!fi)) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200604 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400605 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return err;
607 }
608 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800609 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700610 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800611 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700613 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -0400614 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700616 brelse(fibh.ebh);
617 brelse(fibh.sbh);
Al Viro1e2e5472018-05-04 08:23:01 -0400618 d_instantiate_new(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return 0;
621}
622
Al Virod2be51c2014-09-04 09:34:14 -0400623static int udf_create(struct inode *dir, struct dentry *dentry, umode_t mode,
624 bool excl)
625{
Al Viro0b93a922014-09-04 09:47:41 -0400626 struct inode *inode = udf_new_inode(dir, mode);
Al Virod2be51c2014-09-04 09:34:14 -0400627
Al Viro0b93a922014-09-04 09:47:41 -0400628 if (IS_ERR(inode))
629 return PTR_ERR(inode);
Al Virod2be51c2014-09-04 09:34:14 -0400630
631 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
632 inode->i_data.a_ops = &udf_adinicb_aops;
633 else
634 inode->i_data.a_ops = &udf_aops;
635 inode->i_op = &udf_file_inode_operations;
636 inode->i_fop = &udf_file_operations;
637 mark_inode_dirty(inode);
638
639 return udf_add_nondir(dentry, inode);
640}
641
Al Viro656d09d2013-06-12 09:35:33 +0400642static int udf_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
643{
Al Viro0b93a922014-09-04 09:47:41 -0400644 struct inode *inode = udf_new_inode(dir, mode);
Al Viro656d09d2013-06-12 09:35:33 +0400645
Al Viro0b93a922014-09-04 09:47:41 -0400646 if (IS_ERR(inode))
647 return PTR_ERR(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400648
Al Viro0b93a922014-09-04 09:47:41 -0400649 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Al Viro656d09d2013-06-12 09:35:33 +0400650 inode->i_data.a_ops = &udf_adinicb_aops;
651 else
652 inode->i_data.a_ops = &udf_aops;
653 inode->i_op = &udf_file_inode_operations;
654 inode->i_fop = &udf_file_operations;
655 mark_inode_dirty(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400656 d_tmpfile(dentry, inode);
Al Virob2315092014-09-04 09:38:11 -0400657 unlock_new_inode(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400658 return 0;
659}
660
Al Viro1a67aaf2011-07-26 01:52:52 -0400661static int udf_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700662 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700664 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 if (!old_valid_dev(rdev))
667 return -EINVAL;
668
Al Viro0b93a922014-09-04 09:47:41 -0400669 inode = udf_new_inode(dir, mode);
670 if (IS_ERR(inode))
671 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Al Virod2be51c2014-09-04 09:34:14 -0400673 init_special_inode(inode, mode, rdev);
674 return udf_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Al Viro18bb1db2011-07-26 01:41:39 -0400677static int udf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700679 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 struct udf_fileident_bh fibh;
681 struct fileIdentDesc cfi, *fi;
682 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800683 struct udf_inode_info *dinfo = UDF_I(dir);
684 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Al Viro0b93a922014-09-04 09:47:41 -0400686 inode = udf_new_inode(dir, S_IFDIR | mode);
687 if (IS_ERR(inode))
688 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800690 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 inode->i_op = &udf_dir_inode_operations;
692 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800693 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
694 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200695 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400696 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 goto out;
698 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200699 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800701 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700702 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800703 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800704 cfi.fileCharacteristics =
705 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700707 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 mark_inode_dirty(inode);
709
Marcin Slusarz4b111112008-02-08 04:20:36 -0800710 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
711 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200712 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 mark_inode_dirty(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -0400714 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 goto out;
716 }
717 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800718 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700719 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800720 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
722 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700723 inc_nlink(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700724 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 mark_inode_dirty(dir);
Al Viro1e2e5472018-05-04 08:23:01 -0400726 d_instantiate_new(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700728 brelse(fibh.ebh);
729 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700731
732out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return err;
734}
735
736static int empty_dir(struct inode *dir)
737{
738 struct fileIdentDesc *fi, cfi;
739 struct udf_fileident_bh fibh;
740 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800741 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500742 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200743 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700744 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700745 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700746 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800747 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Jan Karaaf793292008-02-08 04:20:50 -0800749 f_pos = udf_ext0_offset(dir);
750 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800752 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800754 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800755 &epos, &eloc, &elen, &offset) ==
756 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200757 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700758 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800759 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200760 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800761 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200762 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800763 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 offset = 0;
765
Marcin Slusarz4b111112008-02-08 04:20:36 -0800766 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
767 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700768 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return 0;
770 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700771 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700772 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return 0;
774 }
775
Jan Karaaf793292008-02-08 04:20:50 -0800776 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700777 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
778 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700779 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700781 brelse(fibh.ebh);
782 brelse(fibh.sbh);
783 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return 0;
785 }
786
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700787 if (cfi.lengthFileIdent &&
788 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700790 brelse(fibh.ebh);
791 brelse(fibh.sbh);
792 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return 0;
794 }
795 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700798 brelse(fibh.ebh);
799 brelse(fibh.sbh);
800 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return 1;
803}
804
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700805static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000808 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct udf_fileident_bh fibh;
810 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200811 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400814 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200815 if (IS_ERR_OR_NULL(fi)) {
816 if (fi)
817 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 retval = -EIO;
822 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200823 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto end_rmdir;
825 retval = -ENOTEMPTY;
826 if (!empty_dir(inode))
827 goto end_rmdir;
828 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
829 if (retval)
830 goto end_rmdir;
831 if (inode->i_nlink != 2)
Steve Magnanifcbf7632017-10-12 08:48:41 -0500832 udf_warn(inode->i_sb, "empty directory has nlink != 2 (%u)\n",
Joe Perchesa40ecd72011-10-10 01:08:04 -0700833 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700834 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700836 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800837 inode->i_ctime = dir->i_ctime = dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700838 current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 mark_inode_dirty(dir);
840
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700841end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700843 brelse(fibh.ebh);
844 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700845
846out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return retval;
848}
849
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700850static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000853 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct udf_fileident_bh fibh;
855 struct fileIdentDesc *fi;
856 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200857 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400860 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200861
862 if (IS_ERR_OR_NULL(fi)) {
863 if (fi)
864 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 retval = -EIO;
869 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200870 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto end_unlink;
872
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700873 if (!inode->i_nlink) {
Steve Magnanifcbf7632017-10-12 08:48:41 -0500874 udf_debug("Deleting nonexistent file (%lu), %u\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700875 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200876 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
879 if (retval)
880 goto end_unlink;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700881 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700883 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 inode->i_ctime = dir->i_ctime;
885 retval = 0;
886
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700887end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700889 brelse(fibh.ebh);
890 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700891
892out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return retval;
894}
895
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700896static int udf_symlink(struct inode *dir, struct dentry *dentry,
897 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Fabian Frederick6ff6b2b2017-04-23 20:58:15 +0200899 struct inode *inode = udf_new_inode(dir, S_IFLNK | 0777);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct pathComponent *pc;
Al Viro391e8bb2010-01-31 21:28:48 -0500901 const char *compstart;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700902 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 int eoffset, elen = 0;
Al Viro391e8bb2010-01-31 21:28:48 -0500904 uint8_t *ea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int err;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500906 udf_pblk_t block;
Al Viro391e8bb2010-01-31 21:28:48 -0500907 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 int namelen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800909 struct udf_inode_info *iinfo;
Jan Karad664b6a2010-10-20 18:28:46 +0200910 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Al Viro0b93a922014-09-04 09:47:41 -0400912 if (IS_ERR(inode))
913 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100915 iinfo = UDF_I(inode);
916 down_write(&iinfo->i_data_sem);
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600917 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100918 if (!name) {
919 err = -ENOMEM;
920 goto out_no_entry;
921 }
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 inode->i_data.a_ops = &udf_symlink_aops;
Jan Karaad4d0532017-01-02 14:30:31 +0100924 inode->i_op = &udf_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500925 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800927 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200928 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700929 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jan Karad664b6a2010-10-20 18:28:46 +0200931 block = udf_new_block(sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800932 iinfo->i_location.partitionReferenceNum,
933 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (!block)
935 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800936 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700937 epos.offset = udf_file_entry_alloc_offset(inode);
938 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800940 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800941 iinfo->i_location.partitionReferenceNum;
Jan Karad664b6a2010-10-20 18:28:46 +0200942 bsize = sb->s_blocksize;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700943 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200944 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700945 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Jan Karad664b6a2010-10-20 18:28:46 +0200947 block = udf_get_pblock(sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800948 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800949 0);
Jan Karad664b6a2010-10-20 18:28:46 +0200950 epos.bh = udf_tgetblk(sb, block);
Jan Karaff116fc2007-05-08 00:35:14 -0700951 lock_buffer(epos.bh);
Jan Karad664b6a2010-10-20 18:28:46 +0200952 memset(epos.bh->b_data, 0x00, bsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700953 set_buffer_uptodate(epos.bh);
954 unlock_buffer(epos.bh);
955 mark_buffer_dirty_inode(epos.bh, inode);
956 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800957 } else
958 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Jan Karad664b6a2010-10-20 18:28:46 +0200960 eoffset = sb->s_blocksize - udf_ext0_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 pc = (struct pathComponent *)ea;
962
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700963 if (*symname == '/') {
964 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 symname++;
966 } while (*symname == '/');
967
968 pc->componentType = 1;
969 pc->lengthComponentIdent = 0;
970 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 elen += sizeof(struct pathComponent);
972 }
973
974 err = -ENAMETOOLONG;
975
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700976 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (elen + sizeof(struct pathComponent) > eoffset)
978 goto out_no_entry;
979
980 pc = (struct pathComponent *)(ea + elen);
981
Al Viro391e8bb2010-01-31 21:28:48 -0500982 compstart = symname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700984 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 symname++;
986 } while (*symname && *symname != '/');
987
988 pc->componentType = 5;
989 pc->lengthComponentIdent = 0;
990 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700991 if (compstart[0] == '.') {
992 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800994 else if ((symname - compstart) == 2 &&
995 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 pc->componentType = 3;
997 }
998
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700999 if (pc->componentType == 5) {
Andrew Gabbasov525e2c52016-01-15 02:44:19 -06001000 namelen = udf_put_filename(sb, compstart,
1001 symname - compstart,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -06001002 name, UDF_NAME_LEN_CS0);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001003 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 goto out_no_entry;
1005
Marcin Slusarz4b111112008-02-08 04:20:36 -08001006 if (elen + sizeof(struct pathComponent) + namelen >
1007 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 goto out_no_entry;
1009 else
1010 pc->lengthComponentIdent = namelen;
1011
1012 memcpy(pc->componentIdent, name, namelen);
1013 }
1014
1015 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
1016
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001017 if (*symname) {
1018 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 symname++;
1020 } while (*symname == '/');
1021 }
1022 }
1023
Jan Kara3bf25cb2007-05-08 00:35:16 -07001024 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001026 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1027 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +01001028 else
1029 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 mark_inode_dirty(inode);
Jan Kara4ea77722013-12-23 22:02:16 +01001031 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Al Virod2be51c2014-09-04 09:34:14 -04001033 err = udf_add_nondir(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001034out:
Jan Karab80697c2008-03-04 14:14:05 +01001035 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return err;
1037
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001038out_no_entry:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001039 up_write(&iinfo->i_data_sem);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001040 inode_dec_link_count(inode);
Al Viro5c1a68a32018-05-16 12:25:39 -04001041 discard_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 goto out;
1043}
1044
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001045static int udf_link(struct dentry *old_dentry, struct inode *dir,
1046 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
David Howells2b0143b2015-03-17 22:25:59 +00001048 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 struct udf_fileident_bh fibh;
1050 struct fileIdentDesc cfi, *fi;
1051 int err;
1052
Marcin Slusarz4b111112008-02-08 04:20:36 -08001053 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1054 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return err;
1056 }
1057 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001058 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001059 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001060 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001061 cpu_to_le32(lvid_get_unique_id(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001064 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001068 brelse(fibh.ebh);
1069 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001070 inc_nlink(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001071 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 mark_inode_dirty(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001073 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001074 mark_inode_dirty(dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04001075 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return 0;
1079}
1080
1081/* Anybody can rename anything with this: the permission checks are left to the
1082 * higher-level routines.
1083 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001084static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +02001085 struct inode *new_dir, struct dentry *new_dentry,
1086 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
David Howells2b0143b2015-03-17 22:25:59 +00001088 struct inode *old_inode = d_inode(old_dentry);
1089 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001091 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1092 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct buffer_head *dir_bh = NULL;
1094 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001095 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001096 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Miklos Szeredif03b8ad2016-09-27 11:03:57 +02001098 if (flags & ~RENAME_NOREPLACE)
1099 return -EINVAL;
1100
Al Viro9fbb76c2008-10-12 00:15:17 -04001101 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001102 if (IS_ERR(ofi)) {
1103 retval = PTR_ERR(ofi);
1104 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
Fabian Frederick231473f2015-04-08 21:23:58 +02001106
1107 if (ofibh.sbh != ofibh.ebh)
1108 brelse(ofibh.ebh);
1109
1110 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001112 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001113 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 goto end_rename;
1115
Al Viro9fbb76c2008-10-12 00:15:17 -04001116 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001117 if (IS_ERR(nfi)) {
1118 retval = PTR_ERR(nfi);
1119 goto end_rename;
1120 }
1121 if (nfi && !new_inode) {
1122 if (nfibh.sbh != nfibh.ebh)
1123 brelse(nfibh.ebh);
1124 brelse(nfibh.sbh);
1125 nfi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001127 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001128 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001130 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 retval = -ENOTEMPTY;
1132 if (!empty_dir(new_inode))
1133 goto end_rename;
1134 }
1135 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001136 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001137 dir_fi = udf_get_fileident(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001138 old_iinfo->i_ext.i_data -
1139 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001140 sizeof(struct extendedFileEntry) :
1141 sizeof(struct fileEntry)),
1142 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001143 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1145 if (!dir_bh)
1146 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001147 dir_fi = udf_get_fileident(dir_bh->b_data,
1148 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150 if (!dir_fi)
1151 goto end_rename;
1152 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001153 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001154 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001157 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001158 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1159 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (!nfi)
1161 goto end_rename;
1162 }
1163
1164 /*
1165 * Like most other Unix systems, set the ctime for inodes on a
1166 * rename.
1167 */
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001168 old_inode->i_ctime = current_time(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 mark_inode_dirty(old_inode);
1170
1171 /*
1172 * ok, that's it
1173 */
1174 ncfi.fileVersionNum = ocfi.fileVersionNum;
1175 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Markus Elfring033c9da2017-08-15 16:45:44 +02001176 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(ocfi.icb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1178
1179 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001180 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1182
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001183 if (new_inode) {
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001184 new_inode->i_ctime = current_time(new_inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001185 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001187 old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
1188 new_dir->i_ctime = new_dir->i_mtime = current_time(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 mark_inode_dirty(old_dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001190 mark_inode_dirty(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001192 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001193 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Jan Karaf2e83342018-06-13 17:30:14 +02001194 udf_update_tag((char *)dir_fi, udf_dir_entry_len(dir_fi));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001195 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001197 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001199
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001200 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001201 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001202 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001203 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001204 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 mark_inode_dirty(new_dir);
1206 }
1207 }
1208
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001209 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001211 brelse(ofibh.ebh);
1212 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214
1215 retval = 0;
1216
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001217end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001218 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001219 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001221 brelse(nfibh.ebh);
1222 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return retval;
1226}
1227
Rasmus Rohde221e5832008-04-30 17:22:06 +02001228static struct dentry *udf_get_parent(struct dentry *child)
1229{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001230 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001231 struct inode *inode = NULL;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001232 struct qstr dotdot = QSTR_INIT("..", 2);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001233 struct fileIdentDesc cfi;
1234 struct udf_fileident_bh fibh;
1235
David Howells2b0143b2015-03-17 22:25:59 +00001236 if (!udf_find_entry(d_inode(child), &dotdot, &fibh, &cfi))
Jan Kara6d3d5e82014-09-04 16:15:51 +02001237 return ERR_PTR(-EACCES);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001238
1239 if (fibh.sbh != fibh.ebh)
1240 brelse(fibh.ebh);
1241 brelse(fibh.sbh);
1242
Pekka Enberg97e961f2008-10-15 12:29:03 +02001243 tloc = lelb_to_cpu(cfi.icb.extLocation);
Al Virofc640052016-04-10 01:33:30 -04001244 inode = udf_iget(child->d_sb, &tloc);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001245 if (IS_ERR(inode))
1246 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001247
Christoph Hellwig44003722008-08-11 15:49:04 +02001248 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001249}
1250
1251
1252static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1253 u16 partref, __u32 generation)
1254{
1255 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001256 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001257
1258 if (block == 0)
1259 return ERR_PTR(-ESTALE);
1260
1261 loc.logicalBlockNum = block;
1262 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001263 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001264
Jan Kara6d3d5e82014-09-04 16:15:51 +02001265 if (IS_ERR(inode))
1266 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001267
1268 if (generation && inode->i_generation != generation) {
1269 iput(inode);
1270 return ERR_PTR(-ESTALE);
1271 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001272 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001273}
1274
1275static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1276 struct fid *fid, int fh_len, int fh_type)
1277{
NeilBrown92acca42015-05-08 10:16:23 +10001278 if (fh_len < 3 ||
Rasmus Rohde221e5832008-04-30 17:22:06 +02001279 (fh_type != FILEID_UDF_WITH_PARENT &&
1280 fh_type != FILEID_UDF_WITHOUT_PARENT))
1281 return NULL;
1282
1283 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1284 fid->udf.generation);
1285}
1286
1287static struct dentry *udf_fh_to_parent(struct super_block *sb,
1288 struct fid *fid, int fh_len, int fh_type)
1289{
NeilBrown92acca42015-05-08 10:16:23 +10001290 if (fh_len < 5 || fh_type != FILEID_UDF_WITH_PARENT)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001291 return NULL;
1292
1293 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1294 fid->udf.parent_partref,
1295 fid->udf.parent_generation);
1296}
Al Virob0b03822012-04-02 14:34:06 -04001297static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp,
1298 struct inode *parent)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001299{
1300 int len = *lenp;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001301 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001302 struct fid *fid = (struct fid *)fh;
1303 int type = FILEID_UDF_WITHOUT_PARENT;
1304
Al Virob0b03822012-04-02 14:34:06 -04001305 if (parent && (len < 5)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301306 *lenp = 5;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001307 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301308 } else if (len < 3) {
1309 *lenp = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001310 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301311 }
Rasmus Rohde221e5832008-04-30 17:22:06 +02001312
1313 *lenp = 3;
1314 fid->udf.block = location.logicalBlockNum;
1315 fid->udf.partref = location.partitionReferenceNum;
Mathias Krause0143fc52012-07-12 08:46:55 +02001316 fid->udf.parent_partref = 0;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001317 fid->udf.generation = inode->i_generation;
1318
Al Virob0b03822012-04-02 14:34:06 -04001319 if (parent) {
1320 location = UDF_I(parent)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001321 fid->udf.parent_block = location.logicalBlockNum;
1322 fid->udf.parent_partref = location.partitionReferenceNum;
1323 fid->udf.parent_generation = inode->i_generation;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001324 *lenp = 5;
1325 type = FILEID_UDF_WITH_PARENT;
1326 }
1327
1328 return type;
1329}
1330
1331const struct export_operations udf_export_ops = {
1332 .encode_fh = udf_encode_fh,
1333 .fh_to_dentry = udf_fh_to_dentry,
1334 .fh_to_parent = udf_fh_to_parent,
1335 .get_parent = udf_get_parent,
1336};
1337
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001338const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001339 .lookup = udf_lookup,
1340 .create = udf_create,
1341 .link = udf_link,
1342 .unlink = udf_unlink,
1343 .symlink = udf_symlink,
1344 .mkdir = udf_mkdir,
1345 .rmdir = udf_rmdir,
1346 .mknod = udf_mknod,
1347 .rename = udf_rename,
Al Viro656d09d2013-06-12 09:35:33 +04001348 .tmpfile = udf_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349};