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