blob: 506765afa1a3135d1ff9bccc48f06634439fa69e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hpfs/namei.c
3 *
4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
5 *
6 * adding & removing files & directories
7 */
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +04008#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include "hpfs_fn.h"
10
Mikulas Patockaf49a26e2015-09-02 22:51:53 +020011static void hpfs_update_directory_times(struct inode *dir)
12{
13 time_t t = get_seconds();
14 if (t == dir->i_mtime.tv_sec &&
15 t == dir->i_ctime.tv_sec)
16 return;
17 dir->i_mtime.tv_sec = dir->i_ctime.tv_sec = t;
18 dir->i_mtime.tv_nsec = dir->i_ctime.tv_nsec = 0;
19 hpfs_write_inode_nolock(dir);
20}
21
Al Viro18bb1db2011-07-26 01:41:39 -040022static int hpfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
Al Viro7e7742e2010-01-31 17:09:29 -050024 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 unsigned len = dentry->d_name.len;
26 struct quad_buffer_head qbh0;
27 struct buffer_head *bh;
28 struct hpfs_dirent *de;
29 struct fnode *fnode;
30 struct dnode *dnode;
31 struct inode *result;
32 fnode_secno fno;
33 dnode_secno dno;
34 int r;
35 struct hpfs_dirent dee;
36 int err;
Al Viro7e7742e2010-01-31 17:09:29 -050037 if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
Arnd Bergmann9a311b92011-01-22 20:26:12 +010038 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 err = -ENOSPC;
40 fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
41 if (!fnode)
42 goto bail;
Mikulas Patocka7d23ce32011-05-08 20:43:06 +020043 dnode = hpfs_alloc_dnode(dir->i_sb, fno, &dno, &qbh0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 if (!dnode)
45 goto bail1;
46 memset(&dee, 0, sizeof dee);
47 dee.directory = 1;
48 if (!(mode & 0222)) dee.read_only = 1;
49 /*dee.archive = 0;*/
50 dee.hidden = name[0] == '.';
Mikulas Patocka0b697602011-05-08 20:44:26 +020051 dee.fnode = cpu_to_le32(fno);
52 dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 result = new_inode(dir->i_sb);
54 if (!result)
55 goto bail2;
56 hpfs_init_inode(result);
57 result->i_ino = fno;
58 hpfs_i(result)->i_parent_dir = dir->i_ino;
59 hpfs_i(result)->i_dno = dno;
Mikulas Patocka0b697602011-05-08 20:44:26 +020060 result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 result->i_ctime.tv_nsec = 0;
62 result->i_mtime.tv_nsec = 0;
63 result->i_atime.tv_nsec = 0;
64 hpfs_i(result)->i_ea_size = 0;
65 result->i_mode |= S_IFDIR;
66 result->i_op = &hpfs_dir_iops;
67 result->i_fop = &hpfs_dir_ops;
68 result->i_blocks = 4;
69 result->i_size = 2048;
Miklos Szeredibfe86842011-10-28 14:13:29 +020070 set_nlink(result, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (dee.read_only)
72 result->i_mode &= ~0222;
73
Mikulas Patocka7d23ce32011-05-08 20:43:06 +020074 r = hpfs_add_dirent(dir, name, len, &dee);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (r == 1)
76 goto bail3;
77 if (r == -1) {
78 err = -EEXIST;
79 goto bail3;
80 }
81 fnode->len = len;
82 memcpy(fnode->name, name, len > 15 ? 15 : len);
Mikulas Patocka0b697602011-05-08 20:44:26 +020083 fnode->up = cpu_to_le32(dir->i_ino);
Al Viroc4c99542012-04-06 14:30:07 -040084 fnode->flags |= FNODE_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 fnode->btree.n_free_nodes = 7;
86 fnode->btree.n_used_nodes = 1;
Mikulas Patocka0b697602011-05-08 20:44:26 +020087 fnode->btree.first_free = cpu_to_le16(0x14);
88 fnode->u.external[0].disk_secno = cpu_to_le32(dno);
89 fnode->u.external[0].file_secno = cpu_to_le32(-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 dnode->root_dnode = 1;
Mikulas Patocka0b697602011-05-08 20:44:26 +020091 dnode->up = cpu_to_le32(fno);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 de = hpfs_add_de(dir->i_sb, dnode, "\001\001", 2, 0);
Mikulas Patocka0b697602011-05-08 20:44:26 +020093 de->creation_date = de->write_date = de->read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (!(mode & 0222)) de->read_only = 1;
95 de->first = de->directory = 1;
96 /*de->hidden = de->system = 0;*/
Mikulas Patocka0b697602011-05-08 20:44:26 +020097 de->fnode = cpu_to_le32(fno);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 mark_buffer_dirty(bh);
99 brelse(bh);
100 hpfs_mark_4buffers_dirty(&qbh0);
101 hpfs_brelse4(&qbh0);
Dave Hansend8c76e62006-09-30 23:29:04 -0700102 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 insert_inode_hash(result);
104
Eric W. Biederman0e1a43c2012-02-07 16:27:53 -0800105 if (!uid_eq(result->i_uid, current_fsuid()) ||
106 !gid_eq(result->i_gid, current_fsgid()) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 result->i_mode != (mode | S_IFDIR)) {
David Howellsde395b82008-11-14 10:38:55 +1100108 result->i_uid = current_fsuid();
109 result->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 result->i_mode = mode | S_IFDIR;
111 hpfs_write_inode_nolock(result);
112 }
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200113 hpfs_update_directory_times(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 d_instantiate(dentry, result);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100115 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return 0;
117bail3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 iput(result);
119bail2:
120 hpfs_brelse4(&qbh0);
121 hpfs_free_dnode(dir->i_sb, dno);
122bail1:
123 brelse(bh);
124 hpfs_free_sectors(dir->i_sb, fno, 1);
125bail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100126 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return err;
128}
129
Al Viroebfc3b42012-06-10 18:05:36 -0400130static int hpfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Al Viro7e7742e2010-01-31 17:09:29 -0500132 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 unsigned len = dentry->d_name.len;
134 struct inode *result = NULL;
135 struct buffer_head *bh;
136 struct fnode *fnode;
137 fnode_secno fno;
138 int r;
139 struct hpfs_dirent dee;
140 int err;
Al Viro7e7742e2010-01-31 17:09:29 -0500141 if ((err = hpfs_chk_name(name, &len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return err==-ENOENT ? -EINVAL : err;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100143 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 err = -ENOSPC;
145 fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
146 if (!fnode)
147 goto bail;
148 memset(&dee, 0, sizeof dee);
149 if (!(mode & 0222)) dee.read_only = 1;
150 dee.archive = 1;
151 dee.hidden = name[0] == '.';
Mikulas Patocka0b697602011-05-08 20:44:26 +0200152 dee.fnode = cpu_to_le32(fno);
153 dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 result = new_inode(dir->i_sb);
156 if (!result)
157 goto bail1;
158
159 hpfs_init_inode(result);
160 result->i_ino = fno;
161 result->i_mode |= S_IFREG;
162 result->i_mode &= ~0111;
163 result->i_op = &hpfs_file_iops;
164 result->i_fop = &hpfs_file_ops;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200165 set_nlink(result, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 hpfs_i(result)->i_parent_dir = dir->i_ino;
Mikulas Patocka0b697602011-05-08 20:44:26 +0200167 result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 result->i_ctime.tv_nsec = 0;
169 result->i_mtime.tv_nsec = 0;
170 result->i_atime.tv_nsec = 0;
171 hpfs_i(result)->i_ea_size = 0;
172 if (dee.read_only)
173 result->i_mode &= ~0222;
174 result->i_blocks = 1;
175 result->i_size = 0;
176 result->i_data.a_ops = &hpfs_aops;
177 hpfs_i(result)->mmu_private = 0;
178
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200179 r = hpfs_add_dirent(dir, name, len, &dee);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (r == 1)
181 goto bail2;
182 if (r == -1) {
183 err = -EEXIST;
184 goto bail2;
185 }
186 fnode->len = len;
187 memcpy(fnode->name, name, len > 15 ? 15 : len);
Mikulas Patocka0b697602011-05-08 20:44:26 +0200188 fnode->up = cpu_to_le32(dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 mark_buffer_dirty(bh);
190 brelse(bh);
191
192 insert_inode_hash(result);
193
Eric W. Biederman0e1a43c2012-02-07 16:27:53 -0800194 if (!uid_eq(result->i_uid, current_fsuid()) ||
195 !gid_eq(result->i_gid, current_fsgid()) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 result->i_mode != (mode | S_IFREG)) {
David Howellsde395b82008-11-14 10:38:55 +1100197 result->i_uid = current_fsuid();
198 result->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 result->i_mode = mode | S_IFREG;
200 hpfs_write_inode_nolock(result);
201 }
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200202 hpfs_update_directory_times(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 d_instantiate(dentry, result);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100204 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return 0;
206
207bail2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 iput(result);
209bail1:
210 brelse(bh);
211 hpfs_free_sectors(dir->i_sb, fno, 1);
212bail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100213 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return err;
215}
216
Al Viro1a67aaf2011-07-26 01:52:52 -0400217static int hpfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Al Viro7e7742e2010-01-31 17:09:29 -0500219 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 unsigned len = dentry->d_name.len;
221 struct buffer_head *bh;
222 struct fnode *fnode;
223 fnode_secno fno;
224 int r;
225 struct hpfs_dirent dee;
226 struct inode *result = NULL;
227 int err;
Al Viro7e7742e2010-01-31 17:09:29 -0500228 if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (hpfs_sb(dir->i_sb)->sb_eas < 2) return -EPERM;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100230 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 err = -ENOSPC;
232 fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
233 if (!fnode)
234 goto bail;
235 memset(&dee, 0, sizeof dee);
236 if (!(mode & 0222)) dee.read_only = 1;
237 dee.archive = 1;
238 dee.hidden = name[0] == '.';
Mikulas Patocka0b697602011-05-08 20:44:26 +0200239 dee.fnode = cpu_to_le32(fno);
240 dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 result = new_inode(dir->i_sb);
243 if (!result)
244 goto bail1;
245
246 hpfs_init_inode(result);
247 result->i_ino = fno;
248 hpfs_i(result)->i_parent_dir = dir->i_ino;
Mikulas Patocka0b697602011-05-08 20:44:26 +0200249 result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 result->i_ctime.tv_nsec = 0;
251 result->i_mtime.tv_nsec = 0;
252 result->i_atime.tv_nsec = 0;
253 hpfs_i(result)->i_ea_size = 0;
David Howellsde395b82008-11-14 10:38:55 +1100254 result->i_uid = current_fsuid();
255 result->i_gid = current_fsgid();
Miklos Szeredibfe86842011-10-28 14:13:29 +0200256 set_nlink(result, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 result->i_size = 0;
258 result->i_blocks = 1;
259 init_special_inode(result, mode, rdev);
260
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200261 r = hpfs_add_dirent(dir, name, len, &dee);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (r == 1)
263 goto bail2;
264 if (r == -1) {
265 err = -EEXIST;
266 goto bail2;
267 }
268 fnode->len = len;
269 memcpy(fnode->name, name, len > 15 ? 15 : len);
Mikulas Patocka0b697602011-05-08 20:44:26 +0200270 fnode->up = cpu_to_le32(dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 mark_buffer_dirty(bh);
272
273 insert_inode_hash(result);
274
275 hpfs_write_inode_nolock(result);
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200276 hpfs_update_directory_times(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 d_instantiate(dentry, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 brelse(bh);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100279 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return 0;
281bail2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 iput(result);
283bail1:
284 brelse(bh);
285 hpfs_free_sectors(dir->i_sb, fno, 1);
286bail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100287 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return err;
289}
290
291static int hpfs_symlink(struct inode *dir, struct dentry *dentry, const char *symlink)
292{
Al Viro7e7742e2010-01-31 17:09:29 -0500293 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 unsigned len = dentry->d_name.len;
295 struct buffer_head *bh;
296 struct fnode *fnode;
297 fnode_secno fno;
298 int r;
299 struct hpfs_dirent dee;
300 struct inode *result;
301 int err;
Al Viro7e7742e2010-01-31 17:09:29 -0500302 if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100303 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (hpfs_sb(dir->i_sb)->sb_eas < 2) {
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100305 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return -EPERM;
307 }
308 err = -ENOSPC;
309 fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
310 if (!fnode)
311 goto bail;
312 memset(&dee, 0, sizeof dee);
313 dee.archive = 1;
314 dee.hidden = name[0] == '.';
Mikulas Patocka0b697602011-05-08 20:44:26 +0200315 dee.fnode = cpu_to_le32(fno);
316 dee.creation_date = dee.write_date = dee.read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_seconds()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 result = new_inode(dir->i_sb);
319 if (!result)
320 goto bail1;
321 result->i_ino = fno;
322 hpfs_init_inode(result);
323 hpfs_i(result)->i_parent_dir = dir->i_ino;
Mikulas Patocka0b697602011-05-08 20:44:26 +0200324 result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 result->i_ctime.tv_nsec = 0;
326 result->i_mtime.tv_nsec = 0;
327 result->i_atime.tv_nsec = 0;
328 hpfs_i(result)->i_ea_size = 0;
329 result->i_mode = S_IFLNK | 0777;
David Howellsde395b82008-11-14 10:38:55 +1100330 result->i_uid = current_fsuid();
331 result->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 result->i_blocks = 1;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200333 set_nlink(result, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 result->i_size = strlen(symlink);
Al Viro21fc61c2015-11-17 01:07:57 -0500335 inode_nohighmem(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 result->i_op = &page_symlink_inode_operations;
337 result->i_data.a_ops = &hpfs_symlink_aops;
338
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200339 r = hpfs_add_dirent(dir, name, len, &dee);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (r == 1)
341 goto bail2;
342 if (r == -1) {
343 err = -EEXIST;
344 goto bail2;
345 }
346 fnode->len = len;
347 memcpy(fnode->name, name, len > 15 ? 15 : len);
Mikulas Patocka0b697602011-05-08 20:44:26 +0200348 fnode->up = cpu_to_le32(dir->i_ino);
Al Viro7e7742e2010-01-31 17:09:29 -0500349 hpfs_set_ea(result, fnode, "SYMLINK", symlink, strlen(symlink));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 mark_buffer_dirty(bh);
351 brelse(bh);
352
353 insert_inode_hash(result);
354
355 hpfs_write_inode_nolock(result);
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200356 hpfs_update_directory_times(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 d_instantiate(dentry, result);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100358 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360bail2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 iput(result);
362bail1:
363 brelse(bh);
364 hpfs_free_sectors(dir->i_sb, fno, 1);
365bail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100366 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return err;
368}
369
370static int hpfs_unlink(struct inode *dir, struct dentry *dentry)
371{
Al Viro7e7742e2010-01-31 17:09:29 -0500372 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 unsigned len = dentry->d_name.len;
374 struct quad_buffer_head qbh;
375 struct hpfs_dirent *de;
David Howells2b0143b2015-03-17 22:25:59 +0000376 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 dnode_secno dno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int r;
379 int rep = 0;
380 int err;
381
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100382 hpfs_lock(dir->i_sb);
Al Viro7e7742e2010-01-31 17:09:29 -0500383 hpfs_adjust_length(name, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384again:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 err = -ENOENT;
Al Viro7e7742e2010-01-31 17:09:29 -0500386 de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!de)
388 goto out;
389
390 err = -EPERM;
391 if (de->first)
392 goto out1;
393
394 err = -EISDIR;
395 if (de->directory)
396 goto out1;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
399 switch (r) {
400 case 1:
401 hpfs_error(dir->i_sb, "there was error when removing dirent");
402 err = -EFSERROR;
403 break;
404 case 2: /* no space for deleting, try to truncate file */
405
406 err = -ENOSPC;
407 if (rep++)
408 break;
409
Al Viroe21e7092010-02-01 11:05:16 -0500410 dentry_unhash(dentry);
411 if (!d_unhashed(dentry)) {
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100412 hpfs_unlock(dir->i_sb);
Al Viroe21e7092010-02-01 11:05:16 -0500413 return -ENOSPC;
414 }
Al Viro2830ba72011-06-20 19:16:29 -0400415 if (generic_permission(inode, MAY_WRITE) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 !S_ISREG(inode->i_mode) ||
417 get_write_access(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 d_rehash(dentry);
419 } else {
420 struct iattr newattrs;
Fabian Frederick14da17f2014-06-06 14:36:34 -0700421 /*pr_info("truncating file before delete.\n");*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 newattrs.ia_size = 0;
423 newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -0400424 err = notify_change(dentry, &newattrs, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 put_write_access(inode);
426 if (!err)
427 goto again;
428 }
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100429 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return -ENOSPC;
431 default:
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700432 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 err = 0;
434 }
435 goto out;
436
437out1:
438 hpfs_brelse4(&qbh);
439out:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200440 if (!err)
441 hpfs_update_directory_times(dir);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100442 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return err;
444}
445
446static int hpfs_rmdir(struct inode *dir, struct dentry *dentry)
447{
Al Viro7e7742e2010-01-31 17:09:29 -0500448 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 unsigned len = dentry->d_name.len;
450 struct quad_buffer_head qbh;
451 struct hpfs_dirent *de;
David Howells2b0143b2015-03-17 22:25:59 +0000452 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 dnode_secno dno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int n_items = 0;
455 int err;
456 int r;
457
Al Viro7e7742e2010-01-31 17:09:29 -0500458 hpfs_adjust_length(name, &len);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100459 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 err = -ENOENT;
Al Viro7e7742e2010-01-31 17:09:29 -0500461 de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (!de)
463 goto out;
464
465 err = -EPERM;
466 if (de->first)
467 goto out1;
468
469 err = -ENOTDIR;
470 if (!de->directory)
471 goto out1;
472
473 hpfs_count_dnodes(dir->i_sb, hpfs_i(inode)->i_dno, NULL, NULL, &n_items);
474 err = -ENOTEMPTY;
475 if (n_items)
476 goto out1;
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
479 switch (r) {
480 case 1:
481 hpfs_error(dir->i_sb, "there was error when removing dirent");
482 err = -EFSERROR;
483 break;
484 case 2:
485 err = -ENOSPC;
486 break;
487 default:
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700488 drop_nlink(dir);
Dave Hansence71ec32006-09-30 23:29:06 -0700489 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 err = 0;
491 }
492 goto out;
493out1:
494 hpfs_brelse4(&qbh);
495out:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200496 if (!err)
497 hpfs_update_directory_times(dir);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100498 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return err;
500}
501
502static int hpfs_symlink_readpage(struct file *file, struct page *page)
503{
Al Viro21fc61c2015-11-17 01:07:57 -0500504 char *link = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 struct inode *i = page->mapping->host;
506 struct fnode *fnode;
507 struct buffer_head *bh;
508 int err;
509
510 err = -EIO;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100511 hpfs_lock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (!(fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh)))
513 goto fail;
514 err = hpfs_read_ea(i->i_sb, fnode, "SYMLINK", link, PAGE_SIZE);
515 brelse(bh);
516 if (err)
517 goto fail;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100518 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 unlock_page(page);
521 return 0;
522
523fail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100524 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 SetPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 unlock_page(page);
527 return err;
528}
529
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700530const struct address_space_operations hpfs_symlink_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 .readpage = hpfs_symlink_readpage
532};
533
534static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry,
535 struct inode *new_dir, struct dentry *new_dentry)
536{
Al Viro7e7742e2010-01-31 17:09:29 -0500537 const unsigned char *old_name = old_dentry->d_name.name;
538 unsigned old_len = old_dentry->d_name.len;
539 const unsigned char *new_name = new_dentry->d_name.name;
540 unsigned new_len = new_dentry->d_name.len;
David Howells2b0143b2015-03-17 22:25:59 +0000541 struct inode *i = d_inode(old_dentry);
542 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct quad_buffer_head qbh, qbh1;
544 struct hpfs_dirent *dep, *nde;
545 struct hpfs_dirent de;
546 dnode_secno dno;
547 int r;
548 struct buffer_head *bh;
549 struct fnode *fnode;
550 int err;
Sage Weile4eaac02011-05-24 13:06:07 -0700551
Al Viro7e7742e2010-01-31 17:09:29 -0500552 if ((err = hpfs_chk_name(new_name, &new_len))) return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 err = 0;
Al Viro7e7742e2010-01-31 17:09:29 -0500554 hpfs_adjust_length(old_name, &old_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100556 hpfs_lock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* order doesn't matter, due to VFS exclusion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* Erm? Moving over the empty non-busy directory is perfectly legal */
560 if (new_inode && S_ISDIR(new_inode->i_mode)) {
561 err = -EINVAL;
562 goto end1;
563 }
564
Al Viro7e7742e2010-01-31 17:09:29 -0500565 if (!(dep = map_dirent(old_dir, hpfs_i(old_dir)->i_dno, old_name, old_len, &dno, &qbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 hpfs_error(i->i_sb, "lookup succeeded but map dirent failed");
567 err = -ENOENT;
568 goto end1;
569 }
570 copy_de(&de, dep);
571 de.hidden = new_name[0] == '.';
572
573 if (new_inode) {
574 int r;
575 if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 1)) != 2) {
Al Viro7e7742e2010-01-31 17:09:29 -0500576 if ((nde = map_dirent(new_dir, hpfs_i(new_dir)->i_dno, new_name, new_len, NULL, &qbh1))) {
Dave Hansence71ec32006-09-30 23:29:06 -0700577 clear_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 copy_de(nde, &de);
579 memcpy(nde->name, new_name, new_len);
580 hpfs_mark_4buffers_dirty(&qbh1);
581 hpfs_brelse4(&qbh1);
582 goto end;
583 }
584 hpfs_error(new_dir->i_sb, "hpfs_rename: could not find dirent");
585 err = -EFSERROR;
586 goto end1;
587 }
588 err = r == 2 ? -ENOSPC : r == 1 ? -EFSERROR : 0;
589 goto end1;
590 }
591
592 if (new_dir == old_dir) hpfs_brelse4(&qbh);
593
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200594 if ((r = hpfs_add_dirent(new_dir, new_name, new_len, &de))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (r == -1) hpfs_error(new_dir->i_sb, "hpfs_rename: dirent already exists!");
596 err = r == 1 ? -ENOSPC : -EFSERROR;
597 if (new_dir != old_dir) hpfs_brelse4(&qbh);
598 goto end1;
599 }
600
601 if (new_dir == old_dir)
Al Viro7e7742e2010-01-31 17:09:29 -0500602 if (!(dep = map_dirent(old_dir, hpfs_i(old_dir)->i_dno, old_name, old_len, &dno, &qbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 hpfs_error(i->i_sb, "lookup succeeded but map dirent failed at #2");
604 err = -ENOENT;
605 goto end1;
606 }
607
608 if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 hpfs_error(i->i_sb, "hpfs_rename: could not remove dirent");
610 err = r == 2 ? -ENOSPC : -EFSERROR;
611 goto end1;
612 }
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200613
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200614end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 hpfs_i(i)->i_parent_dir = new_dir->i_ino;
616 if (S_ISDIR(i->i_mode)) {
Dave Hansend8c76e62006-09-30 23:29:04 -0700617 inc_nlink(new_dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700618 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620 if ((fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh))) {
Mikulas Patocka0b697602011-05-08 20:44:26 +0200621 fnode->up = cpu_to_le32(new_dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 fnode->len = new_len;
623 memcpy(fnode->name, new_name, new_len>15?15:new_len);
624 if (new_len < 15) memset(&fnode->name[new_len], 0, 15 - new_len);
625 mark_buffer_dirty(bh);
626 brelse(bh);
627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628end1:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200629 if (!err) {
630 hpfs_update_directory_times(old_dir);
631 hpfs_update_directory_times(new_dir);
632 }
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100633 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return err;
635}
636
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800637const struct inode_operations hpfs_dir_iops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 .create = hpfs_create,
640 .lookup = hpfs_lookup,
641 .unlink = hpfs_unlink,
642 .symlink = hpfs_symlink,
643 .mkdir = hpfs_mkdir,
644 .rmdir = hpfs_rmdir,
645 .mknod = hpfs_mknod,
646 .rename = hpfs_rename,
Christoph Hellwigca30bc92008-08-11 00:27:59 +0200647 .setattr = hpfs_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648};