Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * namei.c |
| 3 | * |
| 4 | * PURPOSE |
| 5 | * Inode name handling routines for the OSTA-UDF(tm) filesystem. |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * 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 Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 30 | #include <linux/sched.h> |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 31 | #include <linux/crc-itu-t.h> |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 32 | #include <linux/exportfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 34 | static inline int udf_match(int len1, const unsigned char *name1, int len2, |
| 35 | const unsigned char *name2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | { |
| 37 | if (len1 != len2) |
| 38 | return 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | return !memcmp(name1, name2, len1); |
| 41 | } |
| 42 | |
| 43 | int udf_write_fi(struct inode *inode, struct fileIdentDesc *cfi, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 44 | struct fileIdentDesc *sfi, struct udf_fileident_bh *fibh, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 45 | uint8_t *impuse, uint8_t *fileident) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 47 | uint16_t crclen = fibh->eoffset - fibh->soffset - sizeof(struct tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | uint16_t crc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | 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 Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 53 | sizeof(struct fileIdentDesc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | int adinicb = 0; |
| 55 | |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 56 | if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | adinicb = 1; |
| 58 | |
| 59 | offset = fibh->soffset + sizeof(struct fileIdentDesc); |
| 60 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 61 | if (impuse) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 62 | if (adinicb || (offset + liu < 0)) { |
| 63 | memcpy((uint8_t *)sfi->impUse, impuse, liu); |
| 64 | } else if (offset >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | memcpy(fibh->ebh->b_data + offset, impuse, liu); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 66 | } else { |
| 67 | memcpy((uint8_t *)sfi->impUse, impuse, -offset); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 68 | memcpy(fibh->ebh->b_data, impuse - offset, |
| 69 | liu + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | } |
| 72 | |
| 73 | offset += liu; |
| 74 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 75 | if (fileident) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 76 | if (adinicb || (offset + lfi < 0)) { |
| 77 | memcpy((uint8_t *)sfi->fileIdent + liu, fileident, lfi); |
| 78 | } else if (offset >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | memcpy(fibh->ebh->b_data + offset, fileident, lfi); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 80 | } else { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 81 | memcpy((uint8_t *)sfi->fileIdent + liu, fileident, |
| 82 | -offset); |
| 83 | memcpy(fibh->ebh->b_data, fileident - offset, |
| 84 | lfi + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
| 86 | } |
| 87 | |
| 88 | offset += lfi; |
| 89 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 90 | if (adinicb || (offset + padlen < 0)) { |
| 91 | memset((uint8_t *)sfi->padding + liu + lfi, 0x00, padlen); |
| 92 | } else if (offset >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | memset(fibh->ebh->b_data + offset, 0x00, padlen); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 94 | } else { |
| 95 | memset((uint8_t *)sfi->padding + liu + lfi, 0x00, -offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | memset(fibh->ebh->b_data, 0x00, padlen + offset); |
| 97 | } |
| 98 | |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 99 | crc = crc_itu_t(0, (uint8_t *)cfi + sizeof(struct tag), |
| 100 | sizeof(struct fileIdentDesc) - sizeof(struct tag)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 102 | if (fibh->sbh == fibh->ebh) { |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 103 | crc = crc_itu_t(crc, (uint8_t *)sfi->impUse, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 104 | crclen + sizeof(struct tag) - |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 105 | sizeof(struct fileIdentDesc)); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 106 | } else if (sizeof(struct fileIdentDesc) >= -fibh->soffset) { |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 107 | crc = crc_itu_t(crc, fibh->ebh->b_data + |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 108 | sizeof(struct fileIdentDesc) + |
| 109 | fibh->soffset, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 110 | crclen + sizeof(struct tag) - |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 111 | sizeof(struct fileIdentDesc)); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 112 | } else { |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 113 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | cfi->descTag.descCRC = cpu_to_le16(crc); |
| 119 | cfi->descTag.descCRCLength = cpu_to_le16(crclen); |
Marcin Slusarz | 3f2587b | 2008-02-08 04:20:39 -0800 | [diff] [blame] | 120 | cfi->descTag.tagChecksum = udf_tag_checksum(&cfi->descTag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 122 | if (adinicb || (sizeof(struct fileIdentDesc) <= -fibh->soffset)) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 123 | memcpy((uint8_t *)sfi, (uint8_t *)cfi, |
| 124 | sizeof(struct fileIdentDesc)); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 125 | } else { |
| 126 | memcpy((uint8_t *)sfi, (uint8_t *)cfi, -fibh->soffset); |
| 127 | memcpy(fibh->ebh->b_data, (uint8_t *)cfi - fibh->soffset, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 128 | sizeof(struct fileIdentDesc) + fibh->soffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 131 | if (adinicb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | mark_inode_dirty(inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 133 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | 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 Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 141 | /** |
| 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 Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 160 | static struct fileIdentDesc *udf_find_entry(struct inode *dir, |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 161 | const struct qstr *child, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 162 | struct udf_fileident_bh *fibh, |
| 163 | struct fileIdentDesc *cfi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 165 | struct fileIdentDesc *fi = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | loff_t f_pos; |
| 167 | int block, flen; |
Jan Kara | 066b9cd | 2016-01-26 21:07:30 +0100 | [diff] [blame] | 168 | unsigned char *fname = NULL, *copy_name = NULL; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 169 | unsigned char *nameptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | uint8_t lfi; |
| 171 | uint16_t liu; |
KAMBAROV, ZAUR | ec471dc | 2005-06-28 20:45:10 -0700 | [diff] [blame] | 172 | loff_t size; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 173 | struct kernel_lb_addr eloc; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 174 | uint32_t elen; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 175 | sector_t offset; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 176 | struct extent_position epos = {}; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 177 | struct udf_inode_info *dinfo = UDF_I(dir); |
Al Viro | 9fbb76c | 2008-10-12 00:15:17 -0400 | [diff] [blame] | 178 | int isdotdot = child->len == 2 && |
| 179 | child->name[0] == '.' && child->name[1] == '.'; |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 180 | struct super_block *sb = dir->i_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 182 | size = udf_ext0_offset(dir) + dir->i_size; |
| 183 | f_pos = udf_ext0_offset(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 185 | fibh->sbh = fibh->ebh = NULL; |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 186 | fibh->soffset = fibh->eoffset = f_pos & (sb->s_blocksize - 1); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 187 | if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 188 | if (inode_bmap(dir, f_pos >> sb->s_blocksize_bits, &epos, |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 189 | &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) { |
| 190 | fi = ERR_PTR(-EIO); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 191 | goto out_err; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 192 | } |
| 193 | |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 194 | block = udf_get_lb_pblock(sb, &eloc, offset); |
| 195 | if ((++offset << sb->s_blocksize_bits) < elen) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 196 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 197 | epos.offset -= sizeof(struct short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 198 | else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 199 | epos.offset -= sizeof(struct long_ad); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 200 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | offset = 0; |
| 202 | |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 203 | fibh->sbh = fibh->ebh = udf_tread(sb, block); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 204 | if (!fibh->sbh) { |
| 205 | fi = ERR_PTR(-EIO); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 206 | goto out_err; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 210 | fname = kmalloc(UDF_NAME_LEN, GFP_NOFS); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 211 | if (!fname) { |
| 212 | fi = ERR_PTR(-ENOMEM); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 213 | goto out_err; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 214 | } |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 215 | |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 216 | while (f_pos < size) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 217 | fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc, |
| 218 | &elen, &offset); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 219 | if (!fi) { |
| 220 | fi = ERR_PTR(-EIO); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 221 | goto out_err; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
| 224 | liu = le16_to_cpu(cfi->lengthOfImpUse); |
| 225 | lfi = cfi->lengthFileIdent; |
| 226 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 227 | if (fibh->sbh == fibh->ebh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | nameptr = fi->fileIdent + liu; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 229 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | int poffset; /* Unpaded ending offset */ |
| 231 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 232 | poffset = fibh->soffset + sizeof(struct fileIdentDesc) + |
| 233 | liu + lfi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 235 | if (poffset >= lfi) |
| 236 | nameptr = (uint8_t *)(fibh->ebh->b_data + |
| 237 | poffset - lfi); |
| 238 | else { |
Jan Kara | 066b9cd | 2016-01-26 21:07:30 +0100 | [diff] [blame] | 239 | if (!copy_name) { |
| 240 | copy_name = kmalloc(UDF_NAME_LEN, |
| 241 | GFP_NOFS); |
| 242 | if (!copy_name) { |
| 243 | fi = ERR_PTR(-ENOMEM); |
| 244 | goto out_err; |
| 245 | } |
| 246 | } |
| 247 | nameptr = copy_name; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 248 | memcpy(nameptr, fi->fileIdent + liu, |
| 249 | lfi - poffset); |
| 250 | memcpy(nameptr + lfi - poffset, |
| 251 | fibh->ebh->b_data, poffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | } |
| 253 | } |
| 254 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 255 | if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) { |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 256 | if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | continue; |
| 258 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 259 | |
| 260 | if ((cfi->fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) { |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 261 | if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | continue; |
| 263 | } |
| 264 | |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 265 | if ((cfi->fileCharacteristics & FID_FILE_CHAR_PARENT) && |
Jesper Juhl | a4264b3 | 2010-12-12 23:18:15 +0100 | [diff] [blame] | 266 | isdotdot) |
| 267 | goto out_ok; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | if (!lfi) |
| 270 | continue; |
| 271 | |
Jan Kara | 3ee3039 | 2014-12-18 22:49:12 +0100 | [diff] [blame] | 272 | flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 273 | if (flen < 0) { |
| 274 | fi = ERR_PTR(flen); |
| 275 | goto out_err; |
| 276 | } |
| 277 | |
| 278 | if (udf_match(flen, fname, child->len, child->name)) |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 279 | goto out_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 281 | |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 282 | fi = NULL; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 283 | out_err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | if (fibh->sbh != fibh->ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 285 | brelse(fibh->ebh); |
| 286 | brelse(fibh->sbh); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 287 | out_ok: |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 288 | brelse(epos.bh); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 289 | kfree(fname); |
Jan Kara | 066b9cd | 2016-01-26 21:07:30 +0100 | [diff] [blame] | 290 | kfree(copy_name); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 291 | |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 292 | return fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 295 | static struct dentry *udf_lookup(struct inode *dir, struct dentry *dentry, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 296 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | { |
| 298 | struct inode *inode = NULL; |
Jayachandran C | db9a369 | 2006-02-03 03:04:50 -0800 | [diff] [blame] | 299 | struct fileIdentDesc cfi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | struct udf_fileident_bh fibh; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 301 | struct fileIdentDesc *fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Andrew Gabbasov | 9fba705 | 2016-01-15 02:44:21 -0600 | [diff] [blame] | 303 | if (dentry->d_name.len > UDF_NAME_LEN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | return ERR_PTR(-ENAMETOOLONG); |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | #ifdef UDF_RECOVERY |
| 307 | /* temporary shorthand for specifying files by inode number */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 308 | if (!strncmp(dentry->d_name.name, ".B=", 3)) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 309 | struct kernel_lb_addr lb = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 310 | .logicalBlockNum = 0, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 311 | .partitionReferenceNum = |
| 312 | simple_strtoul(dentry->d_name.name + 3, |
| 313 | NULL, 0), |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 314 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | inode = udf_iget(dir->i_sb, lb); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 316 | if (IS_ERR(inode)) |
| 317 | return inode; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 318 | } else |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 319 | #endif /* UDF_RECOVERY */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 321 | fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi); |
| 322 | if (IS_ERR(fi)) |
| 323 | return ERR_CAST(fi); |
| 324 | |
| 325 | if (fi) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 326 | struct kernel_lb_addr loc; |
| 327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 329 | brelse(fibh.ebh); |
| 330 | brelse(fibh.sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 332 | loc = lelb_to_cpu(cfi.icb.extLocation); |
| 333 | inode = udf_iget(dir->i_sb, &loc); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 334 | if (IS_ERR(inode)) |
| 335 | return ERR_CAST(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 337 | |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 338 | return d_splice_alias(inode, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 341 | static struct fileIdentDesc *udf_add_entry(struct inode *dir, |
| 342 | struct dentry *dentry, |
| 343 | struct udf_fileident_bh *fibh, |
| 344 | struct fileIdentDesc *cfi, int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 346 | struct super_block *sb = dir->i_sb; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 347 | struct fileIdentDesc *fi = NULL; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 348 | unsigned char *name = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | int namelen; |
| 350 | loff_t f_pos; |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 351 | loff_t size = udf_ext0_offset(dir) + dir->i_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | int nfidlen; |
| 353 | uint8_t lfi; |
| 354 | uint16_t liu; |
| 355 | int block; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 356 | struct kernel_lb_addr eloc; |
Jan Kara | 9afadc4 | 2008-05-06 18:26:17 +0200 | [diff] [blame] | 357 | uint32_t elen = 0; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 358 | sector_t offset; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 359 | struct extent_position epos = {}; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 360 | struct udf_inode_info *dinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 362 | fibh->sbh = fibh->ebh = NULL; |
Andrew Gabbasov | 9fba705 | 2016-01-15 02:44:21 -0600 | [diff] [blame] | 363 | name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 364 | if (!name) { |
| 365 | *err = -ENOMEM; |
| 366 | goto out_err; |
| 367 | } |
| 368 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 369 | if (dentry) { |
| 370 | if (!dentry->d_name.len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | *err = -EINVAL; |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 372 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | } |
Andrew Gabbasov | 525e2c5 | 2016-01-15 02:44:19 -0600 | [diff] [blame] | 374 | namelen = udf_put_filename(sb, dentry->d_name.name, |
| 375 | dentry->d_name.len, |
Andrew Gabbasov | 9fba705 | 2016-01-15 02:44:21 -0600 | [diff] [blame] | 376 | name, UDF_NAME_LEN_CS0); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 377 | if (!namelen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | *err = -ENAMETOOLONG; |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 379 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 381 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | namelen = 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | nfidlen = (sizeof(struct fileIdentDesc) + namelen + 3) & ~3; |
| 386 | |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 387 | f_pos = udf_ext0_offset(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 389 | fibh->soffset = fibh->eoffset = f_pos & (dir->i_sb->s_blocksize - 1); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 390 | dinfo = UDF_I(dir); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 391 | if (dinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
| 392 | if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, &epos, |
| 393 | &eloc, &elen, &offset) != (EXT_RECORDED_ALLOCATED >> 30)) { |
| 394 | block = udf_get_lb_pblock(dir->i_sb, |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 395 | &dinfo->i_location, 0); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 396 | fibh->soffset = fibh->eoffset = sb->s_blocksize; |
| 397 | goto add; |
| 398 | } |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 399 | block = udf_get_lb_pblock(dir->i_sb, &eloc, offset); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 400 | if ((++offset << dir->i_sb->s_blocksize_bits) < elen) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 401 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 402 | epos.offset -= sizeof(struct short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 403 | else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 404 | epos.offset -= sizeof(struct long_ad); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 405 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | offset = 0; |
| 407 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 408 | fibh->sbh = fibh->ebh = udf_tread(dir->i_sb, block); |
| 409 | if (!fibh->sbh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | *err = -EIO; |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 411 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 414 | block = dinfo->i_location.logicalBlockNum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
| 416 | |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 417 | while (f_pos < size) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 418 | fi = udf_fileident_read(dir, &f_pos, fibh, cfi, &epos, &eloc, |
| 419 | &elen, &offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 421 | if (!fi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | *err = -EIO; |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 423 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | liu = le16_to_cpu(cfi->lengthOfImpUse); |
| 427 | lfi = cfi->lengthFileIdent; |
| 428 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 429 | if ((cfi->fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 430 | if (((sizeof(struct fileIdentDesc) + |
| 431 | liu + lfi + 3) & ~3) == nfidlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | cfi->descTag.tagSerialNum = cpu_to_le16(1); |
| 433 | cfi->fileVersionNum = cpu_to_le16(1); |
| 434 | cfi->fileCharacteristics = 0; |
| 435 | cfi->lengthFileIdent = namelen; |
| 436 | cfi->lengthOfImpUse = cpu_to_le16(0); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 437 | if (!udf_write_fi(dir, cfi, fi, fibh, NULL, |
| 438 | name)) |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 439 | goto out_ok; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 440 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | *err = -EIO; |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 442 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | } |
| 444 | } |
| 445 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | } |
| 447 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 448 | add: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | f_pos += nfidlen; |
| 450 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 451 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB && |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 452 | sb->s_blocksize - fibh->eoffset < nfidlen) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 453 | brelse(epos.bh); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 454 | epos.bh = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | fibh->soffset -= udf_ext0_offset(dir); |
| 456 | fibh->eoffset -= udf_ext0_offset(dir); |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 457 | f_pos -= udf_ext0_offset(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | if (fibh->sbh != fibh->ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 459 | brelse(fibh->ebh); |
| 460 | brelse(fibh->sbh); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 461 | fibh->sbh = fibh->ebh = |
| 462 | udf_expand_dir_adinicb(dir, &block, err); |
| 463 | if (!fibh->sbh) |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 464 | goto out_err; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 465 | epos.block = dinfo->i_location; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 466 | epos.offset = udf_file_entry_alloc_offset(dir); |
Jan Kara | 05343c4 | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 467 | /* Load extent udf_expand_dir_adinicb() has created */ |
| 468 | udf_current_aext(dir, &epos, &eloc, &elen, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | } |
| 470 | |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 471 | /* Entry fits into current block? */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 472 | if (sb->s_blocksize - fibh->eoffset >= nfidlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | fibh->soffset = fibh->eoffset; |
| 474 | fibh->eoffset += nfidlen; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 475 | if (fibh->sbh != fibh->ebh) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 476 | brelse(fibh->sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | fibh->sbh = fibh->ebh; |
| 478 | } |
| 479 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 480 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
| 481 | block = dinfo->i_location.logicalBlockNum; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 482 | fi = (struct fileIdentDesc *) |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 483 | (dinfo->i_ext.i_data + |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 484 | fibh->soffset - |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 485 | udf_ext0_offset(dir) + |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 486 | dinfo->i_lenEAttr); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 487 | } else { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 488 | block = eloc.logicalBlockNum + |
| 489 | ((elen - 1) >> |
| 490 | dir->i_sb->s_blocksize_bits); |
| 491 | fi = (struct fileIdentDesc *) |
| 492 | (fibh->sbh->b_data + fibh->soffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 494 | } else { |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 495 | /* Round up last extent in the file */ |
| 496 | elen = (elen + sb->s_blocksize - 1) & ~(sb->s_blocksize - 1); |
| 497 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
| 498 | epos.offset -= sizeof(struct short_ad); |
| 499 | else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
| 500 | epos.offset -= sizeof(struct long_ad); |
| 501 | udf_write_aext(dir, &epos, &eloc, elen, 1); |
| 502 | dinfo->i_lenExtents = (dinfo->i_lenExtents + sb->s_blocksize |
| 503 | - 1) & ~(sb->s_blocksize - 1); |
| 504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | fibh->soffset = fibh->eoffset - sb->s_blocksize; |
| 506 | fibh->eoffset += nfidlen - sb->s_blocksize; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 507 | if (fibh->sbh != fibh->ebh) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 508 | brelse(fibh->sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | fibh->sbh = fibh->ebh; |
| 510 | } |
| 511 | |
| 512 | block = eloc.logicalBlockNum + ((elen - 1) >> |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 513 | dir->i_sb->s_blocksize_bits); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 514 | fibh->ebh = udf_bread(dir, |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 515 | f_pos >> dir->i_sb->s_blocksize_bits, 1, err); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 516 | if (!fibh->ebh) |
| 517 | goto out_err; |
Jan Kara | 4651c59 | 2010-11-25 03:56:24 +0100 | [diff] [blame] | 518 | /* Extents could have been merged, invalidate our position */ |
| 519 | brelse(epos.bh); |
| 520 | epos.bh = NULL; |
| 521 | epos.block = dinfo->i_location; |
| 522 | epos.offset = udf_file_entry_alloc_offset(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 524 | if (!fibh->soffset) { |
Jan Kara | 4651c59 | 2010-11-25 03:56:24 +0100 | [diff] [blame] | 525 | /* Find the freshly allocated block */ |
| 526 | while (udf_next_aext(dir, &epos, &eloc, &elen, 1) == |
| 527 | (EXT_RECORDED_ALLOCATED >> 30)) |
| 528 | ; |
| 529 | block = eloc.logicalBlockNum + ((elen - 1) >> |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 530 | dir->i_sb->s_blocksize_bits); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 531 | brelse(fibh->sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | fibh->sbh = fibh->ebh; |
| 533 | fi = (struct fileIdentDesc *)(fibh->sbh->b_data); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 534 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | fi = (struct fileIdentDesc *) |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 536 | (fibh->sbh->b_data + sb->s_blocksize + |
| 537 | fibh->soffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | } |
| 540 | |
| 541 | memset(cfi, 0, sizeof(struct fileIdentDesc)); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 542 | if (UDF_SB(sb)->s_udfrev >= 0x0200) |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 543 | udf_new_tag((char *)cfi, TAG_IDENT_FID, 3, 1, block, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 544 | sizeof(struct tag)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | else |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 546 | udf_new_tag((char *)cfi, TAG_IDENT_FID, 2, 1, block, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 547 | sizeof(struct tag)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | cfi->fileVersionNum = cpu_to_le16(1); |
| 549 | cfi->lengthFileIdent = namelen; |
| 550 | cfi->lengthOfImpUse = cpu_to_le16(0); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 551 | if (!udf_write_fi(dir, cfi, fi, fibh, NULL, name)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | dir->i_size += nfidlen; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 553 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
| 554 | dinfo->i_lenAlloc += nfidlen; |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 555 | else { |
| 556 | /* Find the last extent and truncate it to proper size */ |
| 557 | while (udf_next_aext(dir, &epos, &eloc, &elen, 1) == |
| 558 | (EXT_RECORDED_ALLOCATED >> 30)) |
| 559 | ; |
| 560 | elen -= dinfo->i_lenExtents - dir->i_size; |
| 561 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
| 562 | epos.offset -= sizeof(struct short_ad); |
| 563 | else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
| 564 | epos.offset -= sizeof(struct long_ad); |
| 565 | udf_write_aext(dir, &epos, &eloc, elen, 1); |
| 566 | dinfo->i_lenExtents = dir->i_size; |
| 567 | } |
| 568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | mark_inode_dirty(dir); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 570 | goto out_ok; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 571 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | *err = -EIO; |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 573 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | } |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 575 | |
| 576 | out_err: |
| 577 | fi = NULL; |
| 578 | if (fibh->sbh != fibh->ebh) |
| 579 | brelse(fibh->ebh); |
| 580 | brelse(fibh->sbh); |
| 581 | out_ok: |
| 582 | brelse(epos.bh); |
| 583 | kfree(name); |
| 584 | return fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | static int udf_delete_entry(struct inode *inode, struct fileIdentDesc *fi, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 588 | struct udf_fileident_bh *fibh, |
| 589 | struct fileIdentDesc *cfi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | { |
| 591 | cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT)) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 594 | memset(&(cfi->icb), 0x00, sizeof(struct long_ad)); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL); |
| 597 | } |
| 598 | |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 599 | static int udf_add_nondir(struct dentry *dentry, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | { |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 601 | struct udf_inode_info *iinfo = UDF_I(inode); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 602 | struct inode *dir = d_inode(dentry->d_parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | struct udf_fileident_bh fibh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | struct fileIdentDesc cfi, *fi; |
| 605 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 607 | fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err); |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 608 | if (unlikely(!fi)) { |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 609 | inode_dec_link_count(inode); |
Al Viro | b231509 | 2014-09-04 09:38:11 -0400 | [diff] [blame] | 610 | unlock_new_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | iput(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | return err; |
| 613 | } |
| 614 | cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 615 | cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 616 | *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse = |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 617 | cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL); |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 619 | dir->i_ctime = dir->i_mtime = current_time(dir); |
Jan Kara | 3adc12e | 2015-03-24 16:47:25 -0400 | [diff] [blame] | 620 | mark_inode_dirty(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 622 | brelse(fibh.ebh); |
| 623 | brelse(fibh.sbh); |
Al Viro | 2d2d3f1 | 2018-05-04 08:23:01 -0400 | [diff] [blame] | 624 | d_instantiate_new(dentry, inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | return 0; |
| 627 | } |
| 628 | |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 629 | static int udf_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
| 630 | bool excl) |
| 631 | { |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 632 | struct inode *inode = udf_new_inode(dir, mode); |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 633 | |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 634 | if (IS_ERR(inode)) |
| 635 | return PTR_ERR(inode); |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 636 | |
| 637 | if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
| 638 | inode->i_data.a_ops = &udf_adinicb_aops; |
| 639 | else |
| 640 | inode->i_data.a_ops = &udf_aops; |
| 641 | inode->i_op = &udf_file_inode_operations; |
| 642 | inode->i_fop = &udf_file_operations; |
| 643 | mark_inode_dirty(inode); |
| 644 | |
| 645 | return udf_add_nondir(dentry, inode); |
| 646 | } |
| 647 | |
Al Viro | 656d09d | 2013-06-12 09:35:33 +0400 | [diff] [blame] | 648 | static int udf_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode) |
| 649 | { |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 650 | struct inode *inode = udf_new_inode(dir, mode); |
Al Viro | 656d09d | 2013-06-12 09:35:33 +0400 | [diff] [blame] | 651 | |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 652 | if (IS_ERR(inode)) |
| 653 | return PTR_ERR(inode); |
Al Viro | 656d09d | 2013-06-12 09:35:33 +0400 | [diff] [blame] | 654 | |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 655 | if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
Al Viro | 656d09d | 2013-06-12 09:35:33 +0400 | [diff] [blame] | 656 | inode->i_data.a_ops = &udf_adinicb_aops; |
| 657 | else |
| 658 | inode->i_data.a_ops = &udf_aops; |
| 659 | inode->i_op = &udf_file_inode_operations; |
| 660 | inode->i_fop = &udf_file_operations; |
| 661 | mark_inode_dirty(inode); |
Al Viro | 656d09d | 2013-06-12 09:35:33 +0400 | [diff] [blame] | 662 | d_tmpfile(dentry, inode); |
Al Viro | b231509 | 2014-09-04 09:38:11 -0400 | [diff] [blame] | 663 | unlock_new_inode(inode); |
Al Viro | 656d09d | 2013-06-12 09:35:33 +0400 | [diff] [blame] | 664 | return 0; |
| 665 | } |
| 666 | |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 667 | static int udf_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 668 | dev_t rdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 670 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | |
| 672 | if (!old_valid_dev(rdev)) |
| 673 | return -EINVAL; |
| 674 | |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 675 | inode = udf_new_inode(dir, mode); |
| 676 | if (IS_ERR(inode)) |
| 677 | return PTR_ERR(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 679 | init_special_inode(inode, mode, rdev); |
| 680 | return udf_add_nondir(dentry, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
| 682 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 683 | static int udf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 685 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | struct udf_fileident_bh fibh; |
| 687 | struct fileIdentDesc cfi, *fi; |
| 688 | int err; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 689 | struct udf_inode_info *dinfo = UDF_I(dir); |
| 690 | struct udf_inode_info *iinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 692 | inode = udf_new_inode(dir, S_IFDIR | mode); |
| 693 | if (IS_ERR(inode)) |
| 694 | return PTR_ERR(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 696 | iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | inode->i_op = &udf_dir_inode_operations; |
| 698 | inode->i_fop = &udf_dir_operations; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 699 | fi = udf_add_entry(inode, NULL, &fibh, &cfi, &err); |
| 700 | if (!fi) { |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 701 | inode_dec_link_count(inode); |
Al Viro | b231509 | 2014-09-04 09:38:11 -0400 | [diff] [blame] | 702 | unlock_new_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | iput(inode); |
| 704 | goto out; |
| 705 | } |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 706 | set_nlink(inode, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 708 | cfi.icb.extLocation = cpu_to_lelb(dinfo->i_location); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 709 | *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse = |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 710 | cpu_to_le32(dinfo->i_unique & 0x00000000FFFFFFFFUL); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 711 | cfi.fileCharacteristics = |
| 712 | FID_FILE_CHAR_DIRECTORY | FID_FILE_CHAR_PARENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | udf_write_fi(inode, &cfi, fi, &fibh, NULL, NULL); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 714 | brelse(fibh.sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | mark_inode_dirty(inode); |
| 716 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 717 | fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err); |
| 718 | if (!fi) { |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 719 | clear_nlink(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | mark_inode_dirty(inode); |
Al Viro | b231509 | 2014-09-04 09:38:11 -0400 | [diff] [blame] | 721 | unlock_new_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | iput(inode); |
| 723 | goto out; |
| 724 | } |
| 725 | cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 726 | cfi.icb.extLocation = cpu_to_lelb(iinfo->i_location); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 727 | *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse = |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 728 | cpu_to_le32(iinfo->i_unique & 0x00000000FFFFFFFFUL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | cfi.fileCharacteristics |= FID_FILE_CHAR_DIRECTORY; |
| 730 | udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 731 | inc_nlink(dir); |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 732 | dir->i_ctime = dir->i_mtime = current_time(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | mark_inode_dirty(dir); |
Al Viro | 2d2d3f1 | 2018-05-04 08:23:01 -0400 | [diff] [blame] | 734 | d_instantiate_new(dentry, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 736 | brelse(fibh.ebh); |
| 737 | brelse(fibh.sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | err = 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 739 | |
| 740 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | return err; |
| 742 | } |
| 743 | |
| 744 | static int empty_dir(struct inode *dir) |
| 745 | { |
| 746 | struct fileIdentDesc *fi, cfi; |
| 747 | struct udf_fileident_bh fibh; |
| 748 | loff_t f_pos; |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 749 | loff_t size = udf_ext0_offset(dir) + dir->i_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | int block; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 751 | struct kernel_lb_addr eloc; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 752 | uint32_t elen; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 753 | sector_t offset; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 754 | struct extent_position epos = {}; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 755 | struct udf_inode_info *dinfo = UDF_I(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 757 | f_pos = udf_ext0_offset(dir); |
| 758 | fibh.soffset = fibh.eoffset = f_pos & (dir->i_sb->s_blocksize - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 760 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | fibh.sbh = fibh.ebh = NULL; |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 762 | else if (inode_bmap(dir, f_pos >> dir->i_sb->s_blocksize_bits, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 763 | &epos, &eloc, &elen, &offset) == |
| 764 | (EXT_RECORDED_ALLOCATED >> 30)) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 765 | block = udf_get_lb_pblock(dir->i_sb, &eloc, offset); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 766 | if ((++offset << dir->i_sb->s_blocksize_bits) < elen) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 767 | if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 768 | epos.offset -= sizeof(struct short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 769 | else if (dinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 770 | epos.offset -= sizeof(struct long_ad); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 771 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | offset = 0; |
| 773 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 774 | fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block); |
| 775 | if (!fibh.sbh) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 776 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | return 0; |
| 778 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 779 | } else { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 780 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | return 0; |
| 782 | } |
| 783 | |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 784 | while (f_pos < size) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 785 | fi = udf_fileident_read(dir, &f_pos, &fibh, &cfi, &epos, &eloc, |
| 786 | &elen, &offset); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 787 | if (!fi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 789 | brelse(fibh.ebh); |
| 790 | brelse(fibh.sbh); |
| 791 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | return 0; |
| 793 | } |
| 794 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 795 | if (cfi.lengthFileIdent && |
| 796 | (cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 798 | brelse(fibh.ebh); |
| 799 | brelse(fibh.sbh); |
| 800 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | return 0; |
| 802 | } |
| 803 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 804 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 806 | brelse(fibh.ebh); |
| 807 | brelse(fibh.sbh); |
| 808 | brelse(epos.bh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 809 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | return 1; |
| 811 | } |
| 812 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 813 | static int udf_rmdir(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | { |
| 815 | int retval; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 816 | struct inode *inode = d_inode(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | struct udf_fileident_bh fibh; |
| 818 | struct fileIdentDesc *fi, cfi; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 819 | struct kernel_lb_addr tloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
| 821 | retval = -ENOENT; |
Al Viro | 9fbb76c | 2008-10-12 00:15:17 -0400 | [diff] [blame] | 822 | fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 823 | if (IS_ERR_OR_NULL(fi)) { |
| 824 | if (fi) |
| 825 | retval = PTR_ERR(fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | goto out; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 827 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | |
| 829 | retval = -EIO; |
| 830 | tloc = lelb_to_cpu(cfi.icb.extLocation); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 831 | if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | goto end_rmdir; |
| 833 | retval = -ENOTEMPTY; |
| 834 | if (!empty_dir(inode)) |
| 835 | goto end_rmdir; |
| 836 | retval = udf_delete_entry(dir, fi, &fibh, &cfi); |
| 837 | if (retval) |
| 838 | goto end_rmdir; |
| 839 | if (inode->i_nlink != 2) |
Joe Perches | a40ecd7 | 2011-10-10 01:08:04 -0700 | [diff] [blame] | 840 | udf_warn(inode->i_sb, "empty directory has nlink != 2 (%d)\n", |
| 841 | inode->i_nlink); |
Dave Hansen | ce71ec3 | 2006-09-30 23:29:06 -0700 | [diff] [blame] | 842 | clear_nlink(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | inode->i_size = 0; |
Stephen Mollett | c007c06 | 2007-05-08 00:31:31 -0700 | [diff] [blame] | 844 | inode_dec_link_count(dir); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 845 | inode->i_ctime = dir->i_ctime = dir->i_mtime = |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 846 | current_time(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | mark_inode_dirty(dir); |
| 848 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 849 | end_rmdir: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 851 | brelse(fibh.ebh); |
| 852 | brelse(fibh.sbh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 853 | |
| 854 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | return retval; |
| 856 | } |
| 857 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 858 | static int udf_unlink(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | { |
| 860 | int retval; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 861 | struct inode *inode = d_inode(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | struct udf_fileident_bh fibh; |
| 863 | struct fileIdentDesc *fi; |
| 864 | struct fileIdentDesc cfi; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 865 | struct kernel_lb_addr tloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | |
| 867 | retval = -ENOENT; |
Al Viro | 9fbb76c | 2008-10-12 00:15:17 -0400 | [diff] [blame] | 868 | fi = udf_find_entry(dir, &dentry->d_name, &fibh, &cfi); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 869 | |
| 870 | if (IS_ERR_OR_NULL(fi)) { |
| 871 | if (fi) |
| 872 | retval = PTR_ERR(fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | goto out; |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 874 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
| 876 | retval = -EIO; |
| 877 | tloc = lelb_to_cpu(cfi.icb.extLocation); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 878 | if (udf_get_lb_pblock(dir->i_sb, &tloc, 0) != inode->i_ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | goto end_unlink; |
| 880 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 881 | if (!inode->i_nlink) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | udf_debug("Deleting nonexistent file (%lu), %d\n", |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 883 | inode->i_ino, inode->i_nlink); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 884 | set_nlink(inode, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | } |
| 886 | retval = udf_delete_entry(dir, fi, &fibh, &cfi); |
| 887 | if (retval) |
| 888 | goto end_unlink; |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 889 | dir->i_ctime = dir->i_mtime = current_time(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | mark_inode_dirty(dir); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 891 | inode_dec_link_count(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | inode->i_ctime = dir->i_ctime; |
| 893 | retval = 0; |
| 894 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 895 | end_unlink: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 897 | brelse(fibh.ebh); |
| 898 | brelse(fibh.sbh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 899 | |
| 900 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | return retval; |
| 902 | } |
| 903 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 904 | static int udf_symlink(struct inode *dir, struct dentry *dentry, |
| 905 | const char *symname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | { |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 907 | struct inode *inode = udf_new_inode(dir, S_IFLNK | S_IRWXUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | struct pathComponent *pc; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 909 | const char *compstart; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 910 | struct extent_position epos = {}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | int eoffset, elen = 0; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 912 | uint8_t *ea; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | int err; |
| 914 | int block; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 915 | unsigned char *name = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | int namelen; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 917 | struct udf_inode_info *iinfo; |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 918 | struct super_block *sb = dir->i_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
Al Viro | 0b93a92 | 2014-09-04 09:47:41 -0400 | [diff] [blame] | 920 | if (IS_ERR(inode)) |
| 921 | return PTR_ERR(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 923 | iinfo = UDF_I(inode); |
| 924 | down_write(&iinfo->i_data_sem); |
Andrew Gabbasov | 9fba705 | 2016-01-15 02:44:21 -0600 | [diff] [blame] | 925 | name = kmalloc(UDF_NAME_LEN_CS0, GFP_NOFS); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 926 | if (!name) { |
| 927 | err = -ENOMEM; |
| 928 | goto out_no_entry; |
| 929 | } |
| 930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | inode->i_data.a_ops = &udf_symlink_aops; |
Al Viro | c73119c | 2015-11-13 20:33:18 -0500 | [diff] [blame] | 932 | inode->i_op = &page_symlink_inode_operations; |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 933 | inode_nohighmem(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 935 | if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 936 | struct kernel_lb_addr eloc; |
Harvey Harrison | 78e917d | 2008-04-28 02:16:19 -0700 | [diff] [blame] | 937 | uint32_t bsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 939 | block = udf_new_block(sb, inode, |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 940 | iinfo->i_location.partitionReferenceNum, |
| 941 | iinfo->i_location.logicalBlockNum, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | if (!block) |
| 943 | goto out_no_entry; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 944 | epos.block = iinfo->i_location; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 945 | epos.offset = udf_file_entry_alloc_offset(inode); |
| 946 | epos.bh = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | eloc.logicalBlockNum = block; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 948 | eloc.partitionReferenceNum = |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 949 | iinfo->i_location.partitionReferenceNum; |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 950 | bsize = sb->s_blocksize; |
Harvey Harrison | 78e917d | 2008-04-28 02:16:19 -0700 | [diff] [blame] | 951 | iinfo->i_lenExtents = bsize; |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 952 | udf_add_aext(inode, &epos, &eloc, bsize, 0); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 953 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 955 | block = udf_get_pblock(sb, block, |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 956 | iinfo->i_location.partitionReferenceNum, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 957 | 0); |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 958 | epos.bh = udf_tgetblk(sb, block); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 959 | lock_buffer(epos.bh); |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 960 | memset(epos.bh->b_data, 0x00, bsize); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 961 | set_buffer_uptodate(epos.bh); |
| 962 | unlock_buffer(epos.bh); |
| 963 | mark_buffer_dirty_inode(epos.bh, inode); |
| 964 | ea = epos.bh->b_data + udf_ext0_offset(inode); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 965 | } else |
| 966 | ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 968 | eoffset = sb->s_blocksize - udf_ext0_offset(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | pc = (struct pathComponent *)ea; |
| 970 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 971 | if (*symname == '/') { |
| 972 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | symname++; |
| 974 | } while (*symname == '/'); |
| 975 | |
| 976 | pc->componentType = 1; |
| 977 | pc->lengthComponentIdent = 0; |
| 978 | pc->componentFileVersionNum = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | elen += sizeof(struct pathComponent); |
| 980 | } |
| 981 | |
| 982 | err = -ENAMETOOLONG; |
| 983 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 984 | while (*symname) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | if (elen + sizeof(struct pathComponent) > eoffset) |
| 986 | goto out_no_entry; |
| 987 | |
| 988 | pc = (struct pathComponent *)(ea + elen); |
| 989 | |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 990 | compstart = symname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 992 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | symname++; |
| 994 | } while (*symname && *symname != '/'); |
| 995 | |
| 996 | pc->componentType = 5; |
| 997 | pc->lengthComponentIdent = 0; |
| 998 | pc->componentFileVersionNum = 0; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 999 | if (compstart[0] == '.') { |
| 1000 | if ((symname - compstart) == 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | pc->componentType = 4; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1002 | else if ((symname - compstart) == 2 && |
| 1003 | compstart[1] == '.') |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | pc->componentType = 3; |
| 1005 | } |
| 1006 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1007 | if (pc->componentType == 5) { |
Andrew Gabbasov | 525e2c5 | 2016-01-15 02:44:19 -0600 | [diff] [blame] | 1008 | namelen = udf_put_filename(sb, compstart, |
| 1009 | symname - compstart, |
Andrew Gabbasov | 9fba705 | 2016-01-15 02:44:21 -0600 | [diff] [blame] | 1010 | name, UDF_NAME_LEN_CS0); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1011 | if (!namelen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | goto out_no_entry; |
| 1013 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1014 | if (elen + sizeof(struct pathComponent) + namelen > |
| 1015 | eoffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | goto out_no_entry; |
| 1017 | else |
| 1018 | pc->lengthComponentIdent = namelen; |
| 1019 | |
| 1020 | memcpy(pc->componentIdent, name, namelen); |
| 1021 | } |
| 1022 | |
| 1023 | elen += sizeof(struct pathComponent) + pc->lengthComponentIdent; |
| 1024 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1025 | if (*symname) { |
| 1026 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | symname++; |
| 1028 | } while (*symname == '/'); |
| 1029 | } |
| 1030 | } |
| 1031 | |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1032 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | inode->i_size = elen; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1034 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
| 1035 | iinfo->i_lenAlloc = inode->i_size; |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 1036 | else |
| 1037 | udf_truncate_tail_extent(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | mark_inode_dirty(inode); |
Jan Kara | 4ea7772 | 2013-12-23 22:02:16 +0100 | [diff] [blame] | 1039 | up_write(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | |
Al Viro | d2be51c | 2014-09-04 09:34:14 -0400 | [diff] [blame] | 1041 | err = udf_add_nondir(dentry, inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1042 | out: |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 1043 | kfree(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | return err; |
| 1045 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1046 | out_no_entry: |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 1047 | up_write(&iinfo->i_data_sem); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 1048 | inode_dec_link_count(inode); |
Al Viro | b231509 | 2014-09-04 09:38:11 -0400 | [diff] [blame] | 1049 | unlock_new_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | iput(inode); |
| 1051 | goto out; |
| 1052 | } |
| 1053 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1054 | static int udf_link(struct dentry *old_dentry, struct inode *dir, |
| 1055 | struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1057 | struct inode *inode = d_inode(old_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | struct udf_fileident_bh fibh; |
| 1059 | struct fileIdentDesc cfi, *fi; |
| 1060 | int err; |
| 1061 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1062 | fi = udf_add_entry(dir, dentry, &fibh, &cfi, &err); |
| 1063 | if (!fi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | return err; |
| 1065 | } |
| 1066 | cfi.icb.extLength = cpu_to_le32(inode->i_sb->s_blocksize); |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 1067 | cfi.icb.extLocation = cpu_to_lelb(UDF_I(inode)->i_location); |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 1068 | if (UDF_SB(inode->i_sb)->s_lvid_bh) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1069 | *(__le32 *)((struct allocDescImpUse *)cfi.icb.impUse)->impUse = |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 1070 | cpu_to_le32(lvid_get_unique_id(inode->i_sb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | } |
| 1072 | udf_write_fi(dir, &cfi, fi, &fibh, NULL, NULL); |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 1073 | if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | mark_inode_dirty(dir); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1077 | brelse(fibh.ebh); |
| 1078 | brelse(fibh.sbh); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 1079 | inc_nlink(inode); |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 1080 | inode->i_ctime = current_time(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | mark_inode_dirty(inode); |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 1082 | dir->i_ctime = dir->i_mtime = current_time(dir); |
Jan Kara | 3adc12e | 2015-03-24 16:47:25 -0400 | [diff] [blame] | 1083 | mark_inode_dirty(dir); |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 1084 | ihold(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | d_instantiate(dentry, inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | return 0; |
| 1088 | } |
| 1089 | |
| 1090 | /* Anybody can rename anything with this: the permission checks are left to the |
| 1091 | * higher-level routines. |
| 1092 | */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1093 | static int udf_rename(struct inode *old_dir, struct dentry *old_dentry, |
Miklos Szeredi | f03b8ad | 2016-09-27 11:03:57 +0200 | [diff] [blame] | 1094 | struct inode *new_dir, struct dentry *new_dentry, |
| 1095 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1097 | struct inode *old_inode = d_inode(old_dentry); |
| 1098 | struct inode *new_inode = d_inode(new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | struct udf_fileident_bh ofibh, nfibh; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1100 | struct fileIdentDesc *ofi = NULL, *nfi = NULL, *dir_fi = NULL; |
| 1101 | struct fileIdentDesc ocfi, ncfi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | struct buffer_head *dir_bh = NULL; |
| 1103 | int retval = -ENOENT; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1104 | struct kernel_lb_addr tloc; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1105 | struct udf_inode_info *old_iinfo = UDF_I(old_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | |
Miklos Szeredi | f03b8ad | 2016-09-27 11:03:57 +0200 | [diff] [blame] | 1107 | if (flags & ~RENAME_NOREPLACE) |
| 1108 | return -EINVAL; |
| 1109 | |
Al Viro | 9fbb76c | 2008-10-12 00:15:17 -0400 | [diff] [blame] | 1110 | ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 1111 | if (IS_ERR(ofi)) { |
| 1112 | retval = PTR_ERR(ofi); |
| 1113 | goto end_rename; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | } |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 1115 | |
| 1116 | if (ofibh.sbh != ofibh.ebh) |
| 1117 | brelse(ofibh.ebh); |
| 1118 | |
| 1119 | brelse(ofibh.sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | tloc = lelb_to_cpu(ocfi.icb.extLocation); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1121 | if (!ofi || udf_get_lb_pblock(old_dir->i_sb, &tloc, 0) |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1122 | != old_inode->i_ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | goto end_rename; |
| 1124 | |
Al Viro | 9fbb76c | 2008-10-12 00:15:17 -0400 | [diff] [blame] | 1125 | nfi = udf_find_entry(new_dir, &new_dentry->d_name, &nfibh, &ncfi); |
Fabian Frederick | 231473f | 2015-04-08 21:23:58 +0200 | [diff] [blame] | 1126 | if (IS_ERR(nfi)) { |
| 1127 | retval = PTR_ERR(nfi); |
| 1128 | goto end_rename; |
| 1129 | } |
| 1130 | if (nfi && !new_inode) { |
| 1131 | if (nfibh.sbh != nfibh.ebh) |
| 1132 | brelse(nfibh.ebh); |
| 1133 | brelse(nfibh.sbh); |
| 1134 | nfi = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1136 | if (S_ISDIR(old_inode->i_mode)) { |
Marcin Slusarz | 7f3fbd0 | 2008-02-08 04:20:49 -0800 | [diff] [blame] | 1137 | int offset = udf_ext0_offset(old_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1139 | if (new_inode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | retval = -ENOTEMPTY; |
| 1141 | if (!empty_dir(new_inode)) |
| 1142 | goto end_rename; |
| 1143 | } |
| 1144 | retval = -EIO; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1145 | if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1146 | dir_fi = udf_get_fileident( |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1147 | old_iinfo->i_ext.i_data - |
| 1148 | (old_iinfo->i_efe ? |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1149 | sizeof(struct extendedFileEntry) : |
| 1150 | sizeof(struct fileEntry)), |
| 1151 | old_inode->i_sb->s_blocksize, &offset); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1152 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | dir_bh = udf_bread(old_inode, 0, 0, &retval); |
| 1154 | if (!dir_bh) |
| 1155 | goto end_rename; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1156 | dir_fi = udf_get_fileident(dir_bh->b_data, |
| 1157 | old_inode->i_sb->s_blocksize, &offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | } |
| 1159 | if (!dir_fi) |
| 1160 | goto end_rename; |
| 1161 | tloc = lelb_to_cpu(dir_fi->icb.extLocation); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1162 | if (udf_get_lb_pblock(old_inode->i_sb, &tloc, 0) != |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1163 | old_dir->i_ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | goto end_rename; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1166 | if (!nfi) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1167 | nfi = udf_add_entry(new_dir, new_dentry, &nfibh, &ncfi, |
| 1168 | &retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | if (!nfi) |
| 1170 | goto end_rename; |
| 1171 | } |
| 1172 | |
| 1173 | /* |
| 1174 | * Like most other Unix systems, set the ctime for inodes on a |
| 1175 | * rename. |
| 1176 | */ |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 1177 | old_inode->i_ctime = current_time(old_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | mark_inode_dirty(old_inode); |
| 1179 | |
| 1180 | /* |
| 1181 | * ok, that's it |
| 1182 | */ |
| 1183 | ncfi.fileVersionNum = ocfi.fileVersionNum; |
| 1184 | ncfi.fileCharacteristics = ocfi.fileCharacteristics; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1185 | memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(struct long_ad)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL); |
| 1187 | |
| 1188 | /* The old fid may have moved - find it again */ |
Al Viro | 9fbb76c | 2008-10-12 00:15:17 -0400 | [diff] [blame] | 1189 | ofi = udf_find_entry(old_dir, &old_dentry->d_name, &ofibh, &ocfi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | udf_delete_entry(old_dir, ofi, &ofibh, &ocfi); |
| 1191 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1192 | if (new_inode) { |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 1193 | new_inode->i_ctime = current_time(new_inode); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 1194 | inode_dec_link_count(new_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | } |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 1196 | old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir); |
| 1197 | new_dir->i_ctime = new_dir->i_mtime = current_time(new_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | mark_inode_dirty(old_dir); |
Jan Kara | 3adc12e | 2015-03-24 16:47:25 -0400 | [diff] [blame] | 1199 | mark_inode_dirty(new_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1201 | if (dir_fi) { |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 1202 | dir_fi->icb.extLocation = cpu_to_lelb(UDF_I(new_dir)->i_location); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1203 | udf_update_tag((char *)dir_fi, |
| 1204 | (sizeof(struct fileIdentDesc) + |
| 1205 | le16_to_cpu(dir_fi->lengthOfImpUse) + 3) & ~3); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1206 | if (old_iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | mark_inode_dirty(old_inode); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1208 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | mark_buffer_dirty_inode(dir_bh, old_inode); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1210 | |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 1211 | inode_dec_link_count(old_dir); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1212 | if (new_inode) |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 1213 | inode_dec_link_count(new_inode); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1214 | else { |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 1215 | inc_nlink(new_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | mark_inode_dirty(new_dir); |
| 1217 | } |
| 1218 | } |
| 1219 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1220 | if (ofi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | if (ofibh.sbh != ofibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1222 | brelse(ofibh.ebh); |
| 1223 | brelse(ofibh.sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | retval = 0; |
| 1227 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1228 | end_rename: |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1229 | brelse(dir_bh); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1230 | if (nfi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | if (nfibh.sbh != nfibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1232 | brelse(nfibh.ebh); |
| 1233 | brelse(nfibh.sbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | return retval; |
| 1237 | } |
| 1238 | |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1239 | static struct dentry *udf_get_parent(struct dentry *child) |
| 1240 | { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1241 | struct kernel_lb_addr tloc; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1242 | struct inode *inode = NULL; |
Linus Torvalds | 26fe575 | 2012-05-10 13:14:12 -0700 | [diff] [blame] | 1243 | struct qstr dotdot = QSTR_INIT("..", 2); |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1244 | struct fileIdentDesc cfi; |
| 1245 | struct udf_fileident_bh fibh; |
| 1246 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1247 | if (!udf_find_entry(d_inode(child), &dotdot, &fibh, &cfi)) |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1248 | return ERR_PTR(-EACCES); |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1249 | |
| 1250 | if (fibh.sbh != fibh.ebh) |
| 1251 | brelse(fibh.ebh); |
| 1252 | brelse(fibh.sbh); |
| 1253 | |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1254 | tloc = lelb_to_cpu(cfi.icb.extLocation); |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 1255 | inode = udf_iget(child->d_sb, &tloc); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1256 | if (IS_ERR(inode)) |
| 1257 | return ERR_CAST(inode); |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1258 | |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 1259 | return d_obtain_alias(inode); |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1260 | } |
| 1261 | |
| 1262 | |
| 1263 | static struct dentry *udf_nfs_get_inode(struct super_block *sb, u32 block, |
| 1264 | u16 partref, __u32 generation) |
| 1265 | { |
| 1266 | struct inode *inode; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1267 | struct kernel_lb_addr loc; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1268 | |
| 1269 | if (block == 0) |
| 1270 | return ERR_PTR(-ESTALE); |
| 1271 | |
| 1272 | loc.logicalBlockNum = block; |
| 1273 | loc.partitionReferenceNum = partref; |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1274 | inode = udf_iget(sb, &loc); |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1275 | |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1276 | if (IS_ERR(inode)) |
| 1277 | return ERR_CAST(inode); |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1278 | |
| 1279 | if (generation && inode->i_generation != generation) { |
| 1280 | iput(inode); |
| 1281 | return ERR_PTR(-ESTALE); |
| 1282 | } |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 1283 | return d_obtain_alias(inode); |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | static struct dentry *udf_fh_to_dentry(struct super_block *sb, |
| 1287 | struct fid *fid, int fh_len, int fh_type) |
| 1288 | { |
NeilBrown | 92acca4 | 2015-05-08 10:16:23 +1000 | [diff] [blame] | 1289 | if (fh_len < 3 || |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1290 | (fh_type != FILEID_UDF_WITH_PARENT && |
| 1291 | fh_type != FILEID_UDF_WITHOUT_PARENT)) |
| 1292 | return NULL; |
| 1293 | |
| 1294 | return udf_nfs_get_inode(sb, fid->udf.block, fid->udf.partref, |
| 1295 | fid->udf.generation); |
| 1296 | } |
| 1297 | |
| 1298 | static struct dentry *udf_fh_to_parent(struct super_block *sb, |
| 1299 | struct fid *fid, int fh_len, int fh_type) |
| 1300 | { |
NeilBrown | 92acca4 | 2015-05-08 10:16:23 +1000 | [diff] [blame] | 1301 | if (fh_len < 5 || fh_type != FILEID_UDF_WITH_PARENT) |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1302 | return NULL; |
| 1303 | |
| 1304 | return udf_nfs_get_inode(sb, fid->udf.parent_block, |
| 1305 | fid->udf.parent_partref, |
| 1306 | fid->udf.parent_generation); |
| 1307 | } |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 1308 | static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp, |
| 1309 | struct inode *parent) |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1310 | { |
| 1311 | int len = *lenp; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1312 | struct kernel_lb_addr location = UDF_I(inode)->i_location; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1313 | struct fid *fid = (struct fid *)fh; |
| 1314 | int type = FILEID_UDF_WITHOUT_PARENT; |
| 1315 | |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 1316 | if (parent && (len < 5)) { |
Aneesh Kumar K.V | 5fe0c23 | 2011-01-29 18:43:25 +0530 | [diff] [blame] | 1317 | *lenp = 5; |
Namjae Jeon | 94e07a75 | 2013-02-17 15:48:11 +0900 | [diff] [blame] | 1318 | return FILEID_INVALID; |
Aneesh Kumar K.V | 5fe0c23 | 2011-01-29 18:43:25 +0530 | [diff] [blame] | 1319 | } else if (len < 3) { |
| 1320 | *lenp = 3; |
Namjae Jeon | 94e07a75 | 2013-02-17 15:48:11 +0900 | [diff] [blame] | 1321 | return FILEID_INVALID; |
Aneesh Kumar K.V | 5fe0c23 | 2011-01-29 18:43:25 +0530 | [diff] [blame] | 1322 | } |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1323 | |
| 1324 | *lenp = 3; |
| 1325 | fid->udf.block = location.logicalBlockNum; |
| 1326 | fid->udf.partref = location.partitionReferenceNum; |
Mathias Krause | 0143fc5 | 2012-07-12 08:46:55 +0200 | [diff] [blame] | 1327 | fid->udf.parent_partref = 0; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1328 | fid->udf.generation = inode->i_generation; |
| 1329 | |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 1330 | if (parent) { |
| 1331 | location = UDF_I(parent)->i_location; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1332 | fid->udf.parent_block = location.logicalBlockNum; |
| 1333 | fid->udf.parent_partref = location.partitionReferenceNum; |
| 1334 | fid->udf.parent_generation = inode->i_generation; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 1335 | *lenp = 5; |
| 1336 | type = FILEID_UDF_WITH_PARENT; |
| 1337 | } |
| 1338 | |
| 1339 | return type; |
| 1340 | } |
| 1341 | |
| 1342 | const struct export_operations udf_export_ops = { |
| 1343 | .encode_fh = udf_encode_fh, |
| 1344 | .fh_to_dentry = udf_fh_to_dentry, |
| 1345 | .fh_to_parent = udf_fh_to_parent, |
| 1346 | .get_parent = udf_get_parent, |
| 1347 | }; |
| 1348 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 1349 | const struct inode_operations udf_dir_inode_operations = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1350 | .lookup = udf_lookup, |
| 1351 | .create = udf_create, |
| 1352 | .link = udf_link, |
| 1353 | .unlink = udf_unlink, |
| 1354 | .symlink = udf_symlink, |
| 1355 | .mkdir = udf_mkdir, |
| 1356 | .rmdir = udf_rmdir, |
| 1357 | .mknod = udf_mknod, |
| 1358 | .rename = udf_rename, |
Al Viro | 656d09d | 2013-06-12 09:35:33 +0400 | [diff] [blame] | 1359 | .tmpfile = udf_tmpfile, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | }; |