blob: 0458dd47e105b0c2724064bd816fd4f7ef24e28a [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;
354 uint8_t lfi;
355 uint16_t liu;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500356 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200357 struct kernel_lb_addr eloc;
Jan Kara9afadc42008-05-06 18:26:17 +0200358 uint32_t elen = 0;
Jan Kara60448b12007-05-08 00:35:13 -0700359 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700360 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800361 struct udf_inode_info *dinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jan Karab80697c2008-03-04 14:14:05 +0100363 fibh->sbh = fibh->ebh = NULL;
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600364 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100365 if (!name) {
366 *err = -ENOMEM;
367 goto out_err;
368 }
369
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700370 if (dentry) {
371 if (!dentry->d_name.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *err = -EINVAL;
Jan Karab80697c2008-03-04 14:14:05 +0100373 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
Andrew Gabbasov525e2c52016-01-15 02:44:19 -0600375 namelen = udf_put_filename(sb, dentry->d_name.name,
376 dentry->d_name.len,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600377 name, UDF_NAME_LEN_CS0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800378 if (!namelen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 *err = -ENAMETOOLONG;
Jan Karab80697c2008-03-04 14:14:05 +0100380 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700382 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 namelen = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 nfidlen = (sizeof(struct fileIdentDesc) + namelen + 3) & ~3;
387
Jan Karaaf793292008-02-08 04:20:50 -0800388 f_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Jan Karaaf793292008-02-08 04:20:50 -0800390 fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800391 dinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100392 if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
393 if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos,
394 &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) {
395 block = udf_get_lb_pblock(dir->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200396 &dinfo->i_location, 0);
Jan Karab80697c2008-03-04 14:14:05 +0100397 fibh->soffset = fibh->eoffset = sb->s_blocksize;
398 goto add;
399 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200400 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700401 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800402 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200403 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800404 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200405 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800406 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 offset = 0;
408
Marcin Slusarz4b111112008-02-08 04:20:36 -0800409 fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block);
410 if (!fibh->sbh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100412 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800415 block = dinfo->i_location.logicalBlockNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
Jan Karaaf793292008-02-08 04:20:50 -0800418 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700419 fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc,
420 &elen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700422 if (!fi) {
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 liu = le16_to_cpu(cfi->lengthOfImpUse);
428 lfi = cfi->lengthFileIdent;
429
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700430 if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800431 if (((sizeof(struct fileIdentDesc) +
432 liu + lfi + 3) & ~3) == nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 cfi->descTag.tagSerialNum = cpu_to_le16(1);
434 cfi->fileVersionNum = cpu_to_le16(1);
435 cfi->fileCharacteristics = 0;
436 cfi->lengthFileIdent = namelen;
437 cfi->lengthOfImpUse = cpu_to_le16(0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800438 if (!udf_write_fi(dir, cfi, fi, fibh, NULL,
439 name))
Jan Karab80697c2008-03-04 14:14:05 +0100440 goto out_ok;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800441 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100443 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445 }
446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700449add:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 f_pos += nfidlen;
451
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800452 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700453 sb->s_blocksize - fibh->eoffset < nfidlen) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700454 brelse(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700455 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 fibh->soffset -= udf_ext0_offset(dir);
457 fibh->eoffset -= udf_ext0_offset(dir);
Jan Karaaf793292008-02-08 04:20:50 -0800458 f_pos -= udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (fibh->sbh != fibh->ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700460 brelse(fibh->ebh);
461 brelse(fibh->sbh);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800462 fibh->sbh = fibh->ebh =
463 udf_expand_dir_adinicb(dir, &block, err);
464 if (!fibh->sbh)
Jan Karab80697c2008-03-04 14:14:05 +0100465 goto out_err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800466 epos.block = dinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700467 epos.offset = udf_file_entry_alloc_offset(dir);
Jan Kara05343c42008-02-08 04:20:51 -0800468 /* Load extent udf_expand_dir_adinicb() has created */
469 udf_current_aext(dir, &epos, &eloc, &elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471
Jan Kara2c948b32009-12-03 13:39:28 +0100472 /* Entry fits into current block? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700473 if (sb->s_blocksize - fibh->eoffset >= nfidlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 fibh->soffset = fibh->eoffset;
475 fibh->eoffset += nfidlen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700476 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700477 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 fibh->sbh = fibh->ebh;
479 }
480
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800481 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
482 block = dinfo->i_location.logicalBlockNum;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800483 fi = (struct fileIdentDesc *)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800484 (dinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800485 fibh->soffset -
Marcin Slusarz4b111112008-02-08 04:20:36 -0800486 udf_ext0_offset(dir) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800487 dinfo->i_lenEAttr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700488 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800489 block = eloc.logicalBlockNum +
490 ((elen - 1) >>
491 dir->i_sb->s_blocksize_bits);
492 fi = (struct fileIdentDesc *)
493 (fibh->sbh->b_data + fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700495 } else {
Jan Kara2c948b32009-12-03 13:39:28 +0100496 /* Round up last extent in the file */
497 elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1);
498 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
499 epos.offset -= sizeof(struct short_ad);
500 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
501 epos.offset -= sizeof(struct long_ad);
502 udf_write_aext(dir, &epos, &eloc, elen, 1);
503 dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize
504 - 1) & ~(sb->s_blocksize - 1);
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 fibh->soffset = fibh->eoffset - sb->s_blocksize;
507 fibh->eoffset += nfidlen - sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700508 if (fibh->sbh != fibh->ebh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700509 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 fibh->sbh = fibh->ebh;
511 }
512
513 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700514 dir->i_sb->s_blocksize_bits);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800515 fibh->ebh = udf_bread(dir,
Jan Karaaf793292008-02-08 04:20:50 -0800516 f_pos >> dir->i_sb->s_blocksize_bits, 1, err);
Jan Karab80697c2008-03-04 14:14:05 +0100517 if (!fibh->ebh)
518 goto out_err;
Jan Kara4651c592010-11-25 03:56:24 +0100519 /* Extents could have been merged, invalidate our position */
520 brelse(epos.bh);
521 epos.bh = NULL;
522 epos.block = dinfo->i_location;
523 epos.offset = udf_file_entry_alloc_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700525 if (!fibh->soffset) {
Jan Kara4651c592010-11-25 03:56:24 +0100526 /* Find the freshly allocated block */
527 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
528 (EXT_RECORDED_ALLOCATED >> 30))
529 ;
530 block = eloc.logicalBlockNum + ((elen - 1) >>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700531 dir->i_sb->s_blocksize_bits);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700532 brelse(fibh->sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 fibh->sbh = fibh->ebh;
534 fi = (struct fileIdentDesc *)(fibh->sbh->b_data);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700535 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 fi = (struct fileIdentDesc *)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800537 (fibh->sbh->b_data + sb->s_blocksize +
538 fibh->soffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540 }
541
542 memset(cfi, 0, sizeof(struct fileIdentDesc));
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800543 if (UDF_SB(sb)->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800544 udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200545 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800547 udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200548 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 cfi->fileVersionNum = cpu_to_le16(1);
550 cfi->lengthFileIdent = namelen;
551 cfi->lengthOfImpUse = cpu_to_le16(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700552 if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 dir->i_size += nfidlen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800554 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
555 dinfo->i_lenAlloc += nfidlen;
Jan Kara2c948b32009-12-03 13:39:28 +0100556 else {
557 /* Find the last extent and truncate it to proper size */
558 while (udf_next_aext(dir, &epos, &eloc, &elen, 1) ==
559 (EXT_RECORDED_ALLOCATED >> 30))
560 ;
561 elen -= dinfo->i_lenExtents - dir->i_size;
562 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
563 epos.offset -= sizeof(struct short_ad);
564 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
565 epos.offset -= sizeof(struct long_ad);
566 udf_write_aext(dir, &epos, &eloc, elen, 1);
567 dinfo->i_lenExtents = dir->i_size;
568 }
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 mark_inode_dirty(dir);
Jan Karab80697c2008-03-04 14:14:05 +0100571 goto out_ok;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700572 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 *err = -EIO;
Jan Karab80697c2008-03-04 14:14:05 +0100574 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
Jan Karab80697c2008-03-04 14:14:05 +0100576
577out_err:
578 fi = NULL;
579 if (fibh->sbh != fibh->ebh)
580 brelse(fibh->ebh);
581 brelse(fibh->sbh);
582out_ok:
583 brelse(epos.bh);
584 kfree(name);
585 return fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700589 struct udf_fileident_bh *fibh,
590 struct fileIdentDesc *cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200595 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
598}
599
Al Virod2be51c2014-09-04 09:34:14 -0400600static int udf_add_nondir(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Al Virod2be51c2014-09-04 09:34:14 -0400602 struct udf_inode_info *iinfo = UDF_I(inode);
David Howells2b0143b2015-03-17 22:25:59 +0000603 struct inode *dir = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct udf_fileident_bh fibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 struct fileIdentDesc cfi, *fi;
606 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Marcin Slusarz4b111112008-02-08 04:20:36 -0800608 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
Al Virod2be51c2014-09-04 09:34:14 -0400609 if (unlikely(!fi)) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200610 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -0400611 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return err;
614 }
615 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800616 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700617 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800618 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700620 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -0400621 mark_inode_dirty(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700623 brelse(fibh.ebh);
624 brelse(fibh.sbh);
Al Virob2315092014-09-04 09:38:11 -0400625 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return 0;
629}
630
Al Virod2be51c2014-09-04 09:34:14 -0400631static int udf_create(struct inode *dir, struct dentry *dentry, umode_t mode,
632 bool excl)
633{
Al Viro0b93a922014-09-04 09:47:41 -0400634 struct inode *inode = udf_new_inode(dir, mode);
Al Virod2be51c2014-09-04 09:34:14 -0400635
Al Viro0b93a922014-09-04 09:47:41 -0400636 if (IS_ERR(inode))
637 return PTR_ERR(inode);
Al Virod2be51c2014-09-04 09:34:14 -0400638
639 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
640 inode->i_data.a_ops = &udf_adinicb_aops;
641 else
642 inode->i_data.a_ops = &udf_aops;
643 inode->i_op = &udf_file_inode_operations;
644 inode->i_fop = &udf_file_operations;
645 mark_inode_dirty(inode);
646
647 return udf_add_nondir(dentry, inode);
648}
649
Al Viro656d09d2013-06-12 09:35:33 +0400650static int udf_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
651{
Al Viro0b93a922014-09-04 09:47:41 -0400652 struct inode *inode = udf_new_inode(dir, mode);
Al Viro656d09d2013-06-12 09:35:33 +0400653
Al Viro0b93a922014-09-04 09:47:41 -0400654 if (IS_ERR(inode))
655 return PTR_ERR(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400656
Al Viro0b93a922014-09-04 09:47:41 -0400657 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Al Viro656d09d2013-06-12 09:35:33 +0400658 inode->i_data.a_ops = &udf_adinicb_aops;
659 else
660 inode->i_data.a_ops = &udf_aops;
661 inode->i_op = &udf_file_inode_operations;
662 inode->i_fop = &udf_file_operations;
663 mark_inode_dirty(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400664 d_tmpfile(dentry, inode);
Al Virob2315092014-09-04 09:38:11 -0400665 unlock_new_inode(inode);
Al Viro656d09d2013-06-12 09:35:33 +0400666 return 0;
667}
668
Al Viro1a67aaf2011-07-26 01:52:52 -0400669static int udf_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700670 dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700672 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (!old_valid_dev(rdev))
675 return -EINVAL;
676
Al Viro0b93a922014-09-04 09:47:41 -0400677 inode = udf_new_inode(dir, mode);
678 if (IS_ERR(inode))
679 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Al Virod2be51c2014-09-04 09:34:14 -0400681 init_special_inode(inode, mode, rdev);
682 return udf_add_nondir(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Al Viro18bb1db2011-07-26 01:41:39 -0400685static int udf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700687 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct udf_fileident_bh fibh;
689 struct fileIdentDesc cfi, *fi;
690 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800691 struct udf_inode_info *dinfo = UDF_I(dir);
692 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Al Viro0b93a922014-09-04 09:47:41 -0400694 inode = udf_new_inode(dir, S_IFDIR | mode);
695 if (IS_ERR(inode))
696 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800698 iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 inode->i_op = &udf_dir_inode_operations;
700 inode->i_fop = &udf_dir_operations;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800701 fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err);
702 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200703 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -0400704 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 iput(inode);
706 goto out;
707 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200708 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800710 cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700711 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800712 cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800713 cfi.fileCharacteristics =
714 FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700716 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 mark_inode_dirty(inode);
718
Marcin Slusarz4b111112008-02-08 04:20:36 -0800719 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
720 if (!fi) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200721 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 mark_inode_dirty(inode);
Al Virob2315092014-09-04 09:38:11 -0400723 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 iput(inode);
725 goto out;
726 }
727 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800728 cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700729 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800730 cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY;
732 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Dave Hansend8c76e62006-09-30 23:29:04 -0700733 inc_nlink(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700734 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 mark_inode_dirty(dir);
Al Virob2315092014-09-04 09:38:11 -0400736 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 d_instantiate(dentry, inode);
738 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700739 brelse(fibh.ebh);
740 brelse(fibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 err = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700742
743out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return err;
745}
746
747static int empty_dir(struct inode *dir)
748{
749 struct fileIdentDesc *fi, cfi;
750 struct udf_fileident_bh fibh;
751 loff_t f_pos;
Jan Karaaf793292008-02-08 04:20:50 -0800752 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500753 udf_pblk_t block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200754 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700755 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700756 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700757 struct extent_position epos = {};
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800758 struct udf_inode_info *dinfo = UDF_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Jan Karaaf793292008-02-08 04:20:50 -0800760 f_pos = udf_ext0_offset(dir);
761 fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800763 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 fibh.sbh = fibh.ebh = NULL;
Jan Karaaf793292008-02-08 04:20:50 -0800765 else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800766 &epos, &eloc, &elen, &offset) ==
767 (EXT_RECORDED_ALLOCATED >> 30)) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200768 block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700769 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800770 if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200771 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800772 else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200773 epos.offset -= sizeof(struct long_ad);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800774 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 offset = 0;
776
Marcin Slusarz4b111112008-02-08 04:20:36 -0800777 fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block);
778 if (!fibh.sbh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700779 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0;
781 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700782 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700783 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return 0;
785 }
786
Jan Karaaf793292008-02-08 04:20:50 -0800787 while (f_pos < size) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700788 fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc,
789 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700790 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700792 brelse(fibh.ebh);
793 brelse(fibh.sbh);
794 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return 0;
796 }
797
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700798 if (cfi.lengthFileIdent &&
799 (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700801 brelse(fibh.ebh);
802 brelse(fibh.sbh);
803 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return 0;
805 }
806 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700809 brelse(fibh.ebh);
810 brelse(fibh.sbh);
811 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return 1;
814}
815
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700816static int udf_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000819 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 struct udf_fileident_bh fibh;
821 struct fileIdentDesc *fi, cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200822 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400825 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200826 if (IS_ERR_OR_NULL(fi)) {
827 if (fi)
828 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 retval = -EIO;
833 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200834 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 goto end_rmdir;
836 retval = -ENOTEMPTY;
837 if (!empty_dir(inode))
838 goto end_rmdir;
839 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
840 if (retval)
841 goto end_rmdir;
842 if (inode->i_nlink != 2)
Steve Magnanifcbf7632017-10-12 08:48:41 -0500843 udf_warn(inode->i_sb, "empty directory has nlink != 2 (%u)\n",
Joe Perchesa40ecd72011-10-10 01:08:04 -0700844 inode->i_nlink);
Dave Hansence71ec32006-09-30 23:29:06 -0700845 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 inode->i_size = 0;
Stephen Mollettc007c062007-05-08 00:31:31 -0700847 inode_dec_link_count(dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800848 inode->i_ctime = dir->i_ctime = dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700849 current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 mark_inode_dirty(dir);
851
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700852end_rmdir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700854 brelse(fibh.ebh);
855 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700856
857out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return retval;
859}
860
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700861static int udf_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 int retval;
David Howells2b0143b2015-03-17 22:25:59 +0000864 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct udf_fileident_bh fibh;
866 struct fileIdentDesc *fi;
867 struct fileIdentDesc cfi;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200868 struct kernel_lb_addr tloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 retval = -ENOENT;
Al Viro9fbb76c2008-10-12 00:15:17 -0400871 fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi);
Fabian Frederick231473f2015-04-08 21:23:58 +0200872
873 if (IS_ERR_OR_NULL(fi)) {
874 if (fi)
875 retval = PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 goto out;
Fabian Frederick231473f2015-04-08 21:23:58 +0200877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 retval = -EIO;
880 tloc = lelb_to_cpu(cfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200881 if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 goto end_unlink;
883
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700884 if (!inode->i_nlink) {
Steve Magnanifcbf7632017-10-12 08:48:41 -0500885 udf_debug("Deleting nonexistent file (%lu), %u\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700886 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200887 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
889 retval = udf_delete_entry(dir, fi, &fibh, &cfi);
890 if (retval)
891 goto end_unlink;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700892 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 mark_inode_dirty(dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700894 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 inode->i_ctime = dir->i_ctime;
896 retval = 0;
897
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700898end_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700900 brelse(fibh.ebh);
901 brelse(fibh.sbh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700902
903out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return retval;
905}
906
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700907static int udf_symlink(struct inode *dir, struct dentry *dentry,
908 const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Fabian Frederick6ff6b2b2017-04-23 20:58:15 +0200910 struct inode *inode = udf_new_inode(dir, S_IFLNK | 0777);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 struct pathComponent *pc;
Al Viro391e8bb2010-01-31 21:28:48 -0500912 const char *compstart;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700913 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 int eoffset, elen = 0;
Al Viro391e8bb2010-01-31 21:28:48 -0500915 uint8_t *ea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 int err;
Steve Magnanib490bdd2017-10-12 08:48:40 -0500917 udf_pblk_t block;
Al Viro391e8bb2010-01-31 21:28:48 -0500918 unsigned char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int namelen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800920 struct udf_inode_info *iinfo;
Jan Karad664b6a2010-10-20 18:28:46 +0200921 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Al Viro0b93a922014-09-04 09:47:41 -0400923 if (IS_ERR(inode))
924 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100926 iinfo = UDF_I(inode);
927 down_write(&iinfo->i_data_sem);
Andrew Gabbasov9fba7052016-01-15 02:44:21 -0600928 name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS);
Jan Karab80697c2008-03-04 14:14:05 +0100929 if (!name) {
930 err = -ENOMEM;
931 goto out_no_entry;
932 }
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 inode->i_data.a_ops = &udf_symlink_aops;
Jan Karaad4d0532017-01-02 14:30:31 +0100935 inode->i_op = &udf_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500936 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800938 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200939 struct kernel_lb_addr eloc;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700940 uint32_t bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Jan Karad664b6a2010-10-20 18:28:46 +0200942 block = udf_new_block(sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800943 iinfo->i_location.partitionReferenceNum,
944 iinfo->i_location.logicalBlockNum, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (!block)
946 goto out_no_entry;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800947 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700948 epos.offset = udf_file_entry_alloc_offset(inode);
949 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 eloc.logicalBlockNum = block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800951 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800952 iinfo->i_location.partitionReferenceNum;
Jan Karad664b6a2010-10-20 18:28:46 +0200953 bsize = sb->s_blocksize;
Harvey Harrison78e917d2008-04-28 02:16:19 -0700954 iinfo->i_lenExtents = bsize;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200955 udf_add_aext(inode, &epos, &eloc, bsize, 0);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700956 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Jan Karad664b6a2010-10-20 18:28:46 +0200958 block = udf_get_pblock(sb, block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800959 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800960 0);
Jan Karad664b6a2010-10-20 18:28:46 +0200961 epos.bh = udf_tgetblk(sb, block);
Jan Karaff116fc2007-05-08 00:35:14 -0700962 lock_buffer(epos.bh);
Jan Karad664b6a2010-10-20 18:28:46 +0200963 memset(epos.bh->b_data, 0x00, bsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700964 set_buffer_uptodate(epos.bh);
965 unlock_buffer(epos.bh);
966 mark_buffer_dirty_inode(epos.bh, inode);
967 ea = epos.bh->b_data + udf_ext0_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800968 } else
969 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Jan Karad664b6a2010-10-20 18:28:46 +0200971 eoffset = sb->s_blocksize - udf_ext0_offset(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 pc = (struct pathComponent *)ea;
973
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700974 if (*symname == '/') {
975 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 symname++;
977 } while (*symname == '/');
978
979 pc->componentType = 1;
980 pc->lengthComponentIdent = 0;
981 pc->componentFileVersionNum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 elen += sizeof(struct pathComponent);
983 }
984
985 err = -ENAMETOOLONG;
986
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700987 while (*symname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (elen + sizeof(struct pathComponent) > eoffset)
989 goto out_no_entry;
990
991 pc = (struct pathComponent *)(ea + elen);
992
Al Viro391e8bb2010-01-31 21:28:48 -0500993 compstart = symname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700995 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 symname++;
997 } while (*symname && *symname != '/');
998
999 pc->componentType = 5;
1000 pc->lengthComponentIdent = 0;
1001 pc->componentFileVersionNum = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001002 if (compstart[0] == '.') {
1003 if ((symname - compstart) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 pc->componentType = 4;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001005 else if ((symname - compstart) == 2 &&
1006 compstart[1] == '.')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 pc->componentType = 3;
1008 }
1009
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001010 if (pc->componentType == 5) {
Andrew Gabbasov525e2c52016-01-15 02:44:19 -06001011 namelen = udf_put_filename(sb, compstart,
1012 symname - compstart,
Andrew Gabbasov9fba7052016-01-15 02:44:21 -06001013 name, UDF_NAME_LEN_CS0);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001014 if (!namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 goto out_no_entry;
1016
Marcin Slusarz4b111112008-02-08 04:20:36 -08001017 if (elen + sizeof(struct pathComponent) + namelen >
1018 eoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 goto out_no_entry;
1020 else
1021 pc->lengthComponentIdent = namelen;
1022
1023 memcpy(pc->componentIdent, name, namelen);
1024 }
1025
1026 elen += sizeof(struct pathComponent) + pc->lengthComponentIdent;
1027
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001028 if (*symname) {
1029 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 symname++;
1031 } while (*symname == '/');
1032 }
1033 }
1034
Jan Kara3bf25cb2007-05-08 00:35:16 -07001035 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 inode->i_size = elen;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001037 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1038 iinfo->i_lenAlloc = inode->i_size;
Jan Kara2c948b32009-12-03 13:39:28 +01001039 else
1040 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 mark_inode_dirty(inode);
Jan Kara4ea77722013-12-23 22:02:16 +01001042 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Al Virod2be51c2014-09-04 09:34:14 -04001044 err = udf_add_nondir(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001045out:
Jan Karab80697c2008-03-04 14:14:05 +01001046 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return err;
1048
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001049out_no_entry:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001050 up_write(&iinfo->i_data_sem);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001051 inode_dec_link_count(inode);
Al Virob2315092014-09-04 09:38:11 -04001052 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 iput(inode);
1054 goto out;
1055}
1056
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001057static int udf_link(struct dentry *old_dentry, struct inode *dir,
1058 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
David Howells2b0143b2015-03-17 22:25:59 +00001060 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct udf_fileident_bh fibh;
1062 struct fileIdentDesc cfi, *fi;
1063 int err;
1064
Marcin Slusarz4b111112008-02-08 04:20:36 -08001065 fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err);
1066 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return err;
1068 }
1069 cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001070 cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location);
Jan Karad664b6a2010-10-20 18:28:46 +02001071 if (UDF_SB(inode->i_sb)->s_lvid_bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001072 *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse =
Jan Karad664b6a2010-10-20 18:28:46 +02001073 cpu_to_le32(lvid_get_unique_id(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075 udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001076 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 mark_inode_dirty(dir);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001080 brelse(fibh.ebh);
1081 brelse(fibh.sbh);
Dave Hansend8c76e62006-09-30 23:29:04 -07001082 inc_nlink(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001083 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 mark_inode_dirty(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001085 dir->i_ctime = dir->i_mtime = current_time(dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001086 mark_inode_dirty(dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04001087 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 d_instantiate(dentry, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return 0;
1091}
1092
1093/* Anybody can rename anything with this: the permission checks are left to the
1094 * higher-level routines.
1095 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001096static int udf_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +02001097 struct inode *new_dir, struct dentry *new_dentry,
1098 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
David Howells2b0143b2015-03-17 22:25:59 +00001100 struct inode *old_inode = d_inode(old_dentry);
1101 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 struct udf_fileident_bh ofibh, nfibh;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001103 struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL;
1104 struct fileIdentDesc ocfi, ncfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 struct buffer_head *dir_bh = NULL;
1106 int retval = -ENOENT;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001107 struct kernel_lb_addr tloc;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001108 struct udf_inode_info *old_iinfo = UDF_I(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Miklos Szeredif03b8ad2016-09-27 11:03:57 +02001110 if (flags & ~RENAME_NOREPLACE)
1111 return -EINVAL;
1112
Al Viro9fbb76c2008-10-12 00:15:17 -04001113 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001114 if (IS_ERR(ofi)) {
1115 retval = PTR_ERR(ofi);
1116 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
Fabian Frederick231473f2015-04-08 21:23:58 +02001118
1119 if (ofibh.sbh != ofibh.ebh)
1120 brelse(ofibh.ebh);
1121
1122 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 tloc = lelb_to_cpu(ocfi.icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001124 if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0)
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001125 != old_inode->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 goto end_rename;
1127
Al Viro9fbb76c2008-10-12 00:15:17 -04001128 nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi);
Fabian Frederick231473f2015-04-08 21:23:58 +02001129 if (IS_ERR(nfi)) {
1130 retval = PTR_ERR(nfi);
1131 goto end_rename;
1132 }
1133 if (nfi && !new_inode) {
1134 if (nfibh.sbh != nfibh.ebh)
1135 brelse(nfibh.ebh);
1136 brelse(nfibh.sbh);
1137 nfi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001139 if (S_ISDIR(old_inode->i_mode)) {
Marcin Slusarz7f3fbd02008-02-08 04:20:49 -08001140 int offset = udf_ext0_offset(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001142 if (new_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 retval = -ENOTEMPTY;
1144 if (!empty_dir(new_inode))
1145 goto end_rename;
1146 }
1147 retval = -EIO;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001148 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001149 dir_fi = udf_get_fileident(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001150 old_iinfo->i_ext.i_data -
1151 (old_iinfo->i_efe ?
Marcin Slusarz4b111112008-02-08 04:20:36 -08001152 sizeof(struct extendedFileEntry) :
1153 sizeof(struct fileEntry)),
1154 old_inode->i_sb->s_blocksize, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001155 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 dir_bh = udf_bread(old_inode, 0, 0, &retval);
1157 if (!dir_bh)
1158 goto end_rename;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001159 dir_fi = udf_get_fileident(dir_bh->b_data,
1160 old_inode->i_sb->s_blocksize, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 if (!dir_fi)
1163 goto end_rename;
1164 tloc = lelb_to_cpu(dir_fi->icb.extLocation);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001165 if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) !=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001166 old_dir->i_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 goto end_rename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001169 if (!nfi) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001170 nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi,
1171 &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (!nfi)
1173 goto end_rename;
1174 }
1175
1176 /*
1177 * Like most other Unix systems, set the ctime for inodes on a
1178 * rename.
1179 */
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001180 old_inode->i_ctime = current_time(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 mark_inode_dirty(old_inode);
1182
1183 /*
1184 * ok, that's it
1185 */
1186 ncfi.fileVersionNum = ocfi.fileVersionNum;
1187 ncfi.fileCharacteristics = ocfi.fileCharacteristics;
Markus Elfring033c9da2017-08-15 16:45:44 +02001188 memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(ocfi.icb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL);
1190
1191 /* The old fid may have moved - find it again */
Al Viro9fbb76c2008-10-12 00:15:17 -04001192 ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 udf_delete_entry(old_dir, ofi, &ofibh, &ocfi);
1194
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001195 if (new_inode) {
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001196 new_inode->i_ctime = current_time(new_inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001197 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001199 old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
1200 new_dir->i_ctime = new_dir->i_mtime = current_time(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 mark_inode_dirty(old_dir);
Jan Kara3adc12e2015-03-24 16:47:25 -04001202 mark_inode_dirty(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001204 if (dir_fi) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001205 dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001206 udf_update_tag((char *)dir_fi,
1207 (sizeof(struct fileIdentDesc) +
1208 le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001209 if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 mark_inode_dirty(old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001211 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 mark_buffer_dirty_inode(dir_bh, old_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001213
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001214 inode_dec_link_count(old_dir);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001215 if (new_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001216 inode_dec_link_count(new_inode);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001217 else {
Dave Hansend8c76e62006-09-30 23:29:04 -07001218 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 mark_inode_dirty(new_dir);
1220 }
1221 }
1222
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001223 if (ofi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (ofibh.sbh != ofibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001225 brelse(ofibh.ebh);
1226 brelse(ofibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
1229 retval = 0;
1230
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001231end_rename:
Jan Kara3bf25cb2007-05-08 00:35:16 -07001232 brelse(dir_bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001233 if (nfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (nfibh.sbh != nfibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001235 brelse(nfibh.ebh);
1236 brelse(nfibh.sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return retval;
1240}
1241
Rasmus Rohde221e5832008-04-30 17:22:06 +02001242static struct dentry *udf_get_parent(struct dentry *child)
1243{
Pekka Enberg97e961f2008-10-15 12:29:03 +02001244 struct kernel_lb_addr tloc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001245 struct inode *inode = NULL;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001246 struct qstr dotdot = QSTR_INIT("..", 2);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001247 struct fileIdentDesc cfi;
1248 struct udf_fileident_bh fibh;
1249
David Howells2b0143b2015-03-17 22:25:59 +00001250 if (!udf_find_entry(d_inode(child), &dotdot, &fibh, &cfi))
Jan Kara6d3d5e82014-09-04 16:15:51 +02001251 return ERR_PTR(-EACCES);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001252
1253 if (fibh.sbh != fibh.ebh)
1254 brelse(fibh.ebh);
1255 brelse(fibh.sbh);
1256
Pekka Enberg97e961f2008-10-15 12:29:03 +02001257 tloc = lelb_to_cpu(cfi.icb.extLocation);
Al Virofc640052016-04-10 01:33:30 -04001258 inode = udf_iget(child->d_sb, &tloc);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001259 if (IS_ERR(inode))
1260 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001261
Christoph Hellwig44003722008-08-11 15:49:04 +02001262 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001263}
1264
1265
1266static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block,
1267 u16 partref, __u32 generation)
1268{
1269 struct inode *inode;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001270 struct kernel_lb_addr loc;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001271
1272 if (block == 0)
1273 return ERR_PTR(-ESTALE);
1274
1275 loc.logicalBlockNum = block;
1276 loc.partitionReferenceNum = partref;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001277 inode = udf_iget(sb, &loc);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001278
Jan Kara6d3d5e82014-09-04 16:15:51 +02001279 if (IS_ERR(inode))
1280 return ERR_CAST(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001281
1282 if (generation && inode->i_generation != generation) {
1283 iput(inode);
1284 return ERR_PTR(-ESTALE);
1285 }
Christoph Hellwig44003722008-08-11 15:49:04 +02001286 return d_obtain_alias(inode);
Rasmus Rohde221e5832008-04-30 17:22:06 +02001287}
1288
1289static struct dentry *udf_fh_to_dentry(struct super_block *sb,
1290 struct fid *fid, int fh_len, int fh_type)
1291{
NeilBrown92acca42015-05-08 10:16:23 +10001292 if (fh_len < 3 ||
Rasmus Rohde221e5832008-04-30 17:22:06 +02001293 (fh_type != FILEID_UDF_WITH_PARENT &&
1294 fh_type != FILEID_UDF_WITHOUT_PARENT))
1295 return NULL;
1296
1297 return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref,
1298 fid->udf.generation);
1299}
1300
1301static struct dentry *udf_fh_to_parent(struct super_block *sb,
1302 struct fid *fid, int fh_len, int fh_type)
1303{
NeilBrown92acca42015-05-08 10:16:23 +10001304 if (fh_len < 5 || fh_type != FILEID_UDF_WITH_PARENT)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001305 return NULL;
1306
1307 return udf_nfs_get_inode(sb, fid->udf.parent_block,
1308 fid->udf.parent_partref,
1309 fid->udf.parent_generation);
1310}
Al Virob0b03822012-04-02 14:34:06 -04001311static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp,
1312 struct inode *parent)
Rasmus Rohde221e5832008-04-30 17:22:06 +02001313{
1314 int len = *lenp;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001315 struct kernel_lb_addr location = UDF_I(inode)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001316 struct fid *fid = (struct fid *)fh;
1317 int type = FILEID_UDF_WITHOUT_PARENT;
1318
Al Virob0b03822012-04-02 14:34:06 -04001319 if (parent && (len < 5)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301320 *lenp = 5;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001321 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301322 } else if (len < 3) {
1323 *lenp = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001324 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301325 }
Rasmus Rohde221e5832008-04-30 17:22:06 +02001326
1327 *lenp = 3;
1328 fid->udf.block = location.logicalBlockNum;
1329 fid->udf.partref = location.partitionReferenceNum;
Mathias Krause0143fc52012-07-12 08:46:55 +02001330 fid->udf.parent_partref = 0;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001331 fid->udf.generation = inode->i_generation;
1332
Al Virob0b03822012-04-02 14:34:06 -04001333 if (parent) {
1334 location = UDF_I(parent)->i_location;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001335 fid->udf.parent_block = location.logicalBlockNum;
1336 fid->udf.parent_partref = location.partitionReferenceNum;
1337 fid->udf.parent_generation = inode->i_generation;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001338 *lenp = 5;
1339 type = FILEID_UDF_WITH_PARENT;
1340 }
1341
1342 return type;
1343}
1344
1345const struct export_operations udf_export_ops = {
1346 .encode_fh = udf_encode_fh,
1347 .fh_to_dentry = udf_fh_to_dentry,
1348 .fh_to_parent = udf_fh_to_parent,
1349 .get_parent = udf_get_parent,
1350};
1351
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001352const struct inode_operations udf_dir_inode_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001353 .lookup = udf_lookup,
1354 .create = udf_create,
1355 .link = udf_link,
1356 .unlink = udf_unlink,
1357 .symlink = udf_symlink,
1358 .mkdir = udf_mkdir,
1359 .rmdir = udf_rmdir,
1360 .mknod = udf_mknod,
1361 .rename = udf_rename,
Al Viro656d09d2013-06-12 09:35:33 +04001362 .tmpfile = udf_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363};