blob: 9e92c9c2d31954cbd178b5e218e79d5db7c43f8f [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;
230 if (!new_valid_dev(rdev))
231 return -EINVAL;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100232 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 err = -ENOSPC;
234 fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
235 if (!fnode)
236 goto bail;
237 memset(&dee, 0, sizeof dee);
238 if (!(mode & 0222)) dee.read_only = 1;
239 dee.archive = 1;
240 dee.hidden = name[0] == '.';
Mikulas Patocka0b697602011-05-08 20:44:26 +0200241 dee.fnode = cpu_to_le32(fno);
242 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 -0700243
244 result = new_inode(dir->i_sb);
245 if (!result)
246 goto bail1;
247
248 hpfs_init_inode(result);
249 result->i_ino = fno;
250 hpfs_i(result)->i_parent_dir = dir->i_ino;
Mikulas Patocka0b697602011-05-08 20:44:26 +0200251 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 -0700252 result->i_ctime.tv_nsec = 0;
253 result->i_mtime.tv_nsec = 0;
254 result->i_atime.tv_nsec = 0;
255 hpfs_i(result)->i_ea_size = 0;
David Howellsde395b82008-11-14 10:38:55 +1100256 result->i_uid = current_fsuid();
257 result->i_gid = current_fsgid();
Miklos Szeredibfe86842011-10-28 14:13:29 +0200258 set_nlink(result, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 result->i_size = 0;
260 result->i_blocks = 1;
261 init_special_inode(result, mode, rdev);
262
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200263 r = hpfs_add_dirent(dir, name, len, &dee);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (r == 1)
265 goto bail2;
266 if (r == -1) {
267 err = -EEXIST;
268 goto bail2;
269 }
270 fnode->len = len;
271 memcpy(fnode->name, name, len > 15 ? 15 : len);
Mikulas Patocka0b697602011-05-08 20:44:26 +0200272 fnode->up = cpu_to_le32(dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 mark_buffer_dirty(bh);
274
275 insert_inode_hash(result);
276
277 hpfs_write_inode_nolock(result);
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200278 hpfs_update_directory_times(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 d_instantiate(dentry, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 brelse(bh);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100281 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return 0;
283bail2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 iput(result);
285bail1:
286 brelse(bh);
287 hpfs_free_sectors(dir->i_sb, fno, 1);
288bail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100289 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return err;
291}
292
293static int hpfs_symlink(struct inode *dir, struct dentry *dentry, const char *symlink)
294{
Al Viro7e7742e2010-01-31 17:09:29 -0500295 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 unsigned len = dentry->d_name.len;
297 struct buffer_head *bh;
298 struct fnode *fnode;
299 fnode_secno fno;
300 int r;
301 struct hpfs_dirent dee;
302 struct inode *result;
303 int err;
Al Viro7e7742e2010-01-31 17:09:29 -0500304 if ((err = hpfs_chk_name(name, &len))) return err==-ENOENT ? -EINVAL : err;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100305 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (hpfs_sb(dir->i_sb)->sb_eas < 2) {
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100307 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return -EPERM;
309 }
310 err = -ENOSPC;
311 fnode = hpfs_alloc_fnode(dir->i_sb, hpfs_i(dir)->i_dno, &fno, &bh);
312 if (!fnode)
313 goto bail;
314 memset(&dee, 0, sizeof dee);
315 dee.archive = 1;
316 dee.hidden = name[0] == '.';
Mikulas Patocka0b697602011-05-08 20:44:26 +0200317 dee.fnode = cpu_to_le32(fno);
318 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 -0700319
320 result = new_inode(dir->i_sb);
321 if (!result)
322 goto bail1;
323 result->i_ino = fno;
324 hpfs_init_inode(result);
325 hpfs_i(result)->i_parent_dir = dir->i_ino;
Mikulas Patocka0b697602011-05-08 20:44:26 +0200326 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 -0700327 result->i_ctime.tv_nsec = 0;
328 result->i_mtime.tv_nsec = 0;
329 result->i_atime.tv_nsec = 0;
330 hpfs_i(result)->i_ea_size = 0;
331 result->i_mode = S_IFLNK | 0777;
David Howellsde395b82008-11-14 10:38:55 +1100332 result->i_uid = current_fsuid();
333 result->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 result->i_blocks = 1;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200335 set_nlink(result, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 result->i_size = strlen(symlink);
337 result->i_op = &page_symlink_inode_operations;
338 result->i_data.a_ops = &hpfs_symlink_aops;
339
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200340 r = hpfs_add_dirent(dir, name, len, &dee);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (r == 1)
342 goto bail2;
343 if (r == -1) {
344 err = -EEXIST;
345 goto bail2;
346 }
347 fnode->len = len;
348 memcpy(fnode->name, name, len > 15 ? 15 : len);
Mikulas Patocka0b697602011-05-08 20:44:26 +0200349 fnode->up = cpu_to_le32(dir->i_ino);
Al Viro7e7742e2010-01-31 17:09:29 -0500350 hpfs_set_ea(result, fnode, "SYMLINK", symlink, strlen(symlink));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 mark_buffer_dirty(bh);
352 brelse(bh);
353
354 insert_inode_hash(result);
355
356 hpfs_write_inode_nolock(result);
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200357 hpfs_update_directory_times(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 d_instantiate(dentry, result);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100359 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361bail2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 iput(result);
363bail1:
364 brelse(bh);
365 hpfs_free_sectors(dir->i_sb, fno, 1);
366bail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100367 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return err;
369}
370
371static int hpfs_unlink(struct inode *dir, struct dentry *dentry)
372{
Al Viro7e7742e2010-01-31 17:09:29 -0500373 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 unsigned len = dentry->d_name.len;
375 struct quad_buffer_head qbh;
376 struct hpfs_dirent *de;
David Howells2b0143b2015-03-17 22:25:59 +0000377 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 dnode_secno dno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int r;
380 int rep = 0;
381 int err;
382
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100383 hpfs_lock(dir->i_sb);
Al Viro7e7742e2010-01-31 17:09:29 -0500384 hpfs_adjust_length(name, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385again:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 err = -ENOENT;
Al Viro7e7742e2010-01-31 17:09:29 -0500387 de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!de)
389 goto out;
390
391 err = -EPERM;
392 if (de->first)
393 goto out1;
394
395 err = -EISDIR;
396 if (de->directory)
397 goto out1;
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
400 switch (r) {
401 case 1:
402 hpfs_error(dir->i_sb, "there was error when removing dirent");
403 err = -EFSERROR;
404 break;
405 case 2: /* no space for deleting, try to truncate file */
406
407 err = -ENOSPC;
408 if (rep++)
409 break;
410
Al Viroe21e7092010-02-01 11:05:16 -0500411 dentry_unhash(dentry);
412 if (!d_unhashed(dentry)) {
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100413 hpfs_unlock(dir->i_sb);
Al Viroe21e7092010-02-01 11:05:16 -0500414 return -ENOSPC;
415 }
Al Viro2830ba72011-06-20 19:16:29 -0400416 if (generic_permission(inode, MAY_WRITE) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 !S_ISREG(inode->i_mode) ||
418 get_write_access(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 d_rehash(dentry);
420 } else {
421 struct iattr newattrs;
Fabian Frederick14da17f2014-06-06 14:36:34 -0700422 /*pr_info("truncating file before delete.\n");*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 newattrs.ia_size = 0;
424 newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -0400425 err = notify_change(dentry, &newattrs, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 put_write_access(inode);
427 if (!err)
428 goto again;
429 }
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100430 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return -ENOSPC;
432 default:
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700433 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 err = 0;
435 }
436 goto out;
437
438out1:
439 hpfs_brelse4(&qbh);
440out:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200441 if (!err)
442 hpfs_update_directory_times(dir);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100443 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return err;
445}
446
447static int hpfs_rmdir(struct inode *dir, struct dentry *dentry)
448{
Al Viro7e7742e2010-01-31 17:09:29 -0500449 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 unsigned len = dentry->d_name.len;
451 struct quad_buffer_head qbh;
452 struct hpfs_dirent *de;
David Howells2b0143b2015-03-17 22:25:59 +0000453 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 dnode_secno dno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 int n_items = 0;
456 int err;
457 int r;
458
Al Viro7e7742e2010-01-31 17:09:29 -0500459 hpfs_adjust_length(name, &len);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100460 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 err = -ENOENT;
Al Viro7e7742e2010-01-31 17:09:29 -0500462 de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (!de)
464 goto out;
465
466 err = -EPERM;
467 if (de->first)
468 goto out1;
469
470 err = -ENOTDIR;
471 if (!de->directory)
472 goto out1;
473
474 hpfs_count_dnodes(dir->i_sb, hpfs_i(inode)->i_dno, NULL, NULL, &n_items);
475 err = -ENOTEMPTY;
476 if (n_items)
477 goto out1;
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
480 switch (r) {
481 case 1:
482 hpfs_error(dir->i_sb, "there was error when removing dirent");
483 err = -EFSERROR;
484 break;
485 case 2:
486 err = -ENOSPC;
487 break;
488 default:
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700489 drop_nlink(dir);
Dave Hansence71ec32006-09-30 23:29:06 -0700490 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 err = 0;
492 }
493 goto out;
494out1:
495 hpfs_brelse4(&qbh);
496out:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200497 if (!err)
498 hpfs_update_directory_times(dir);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100499 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return err;
501}
502
503static int hpfs_symlink_readpage(struct file *file, struct page *page)
504{
505 char *link = kmap(page);
506 struct inode *i = page->mapping->host;
507 struct fnode *fnode;
508 struct buffer_head *bh;
509 int err;
510
511 err = -EIO;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100512 hpfs_lock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (!(fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh)))
514 goto fail;
515 err = hpfs_read_ea(i->i_sb, fnode, "SYMLINK", link, PAGE_SIZE);
516 brelse(bh);
517 if (err)
518 goto fail;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100519 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 SetPageUptodate(page);
521 kunmap(page);
522 unlock_page(page);
523 return 0;
524
525fail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100526 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 SetPageError(page);
528 kunmap(page);
529 unlock_page(page);
530 return err;
531}
532
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700533const struct address_space_operations hpfs_symlink_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 .readpage = hpfs_symlink_readpage
535};
536
537static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry,
538 struct inode *new_dir, struct dentry *new_dentry)
539{
Al Viro7e7742e2010-01-31 17:09:29 -0500540 const unsigned char *old_name = old_dentry->d_name.name;
541 unsigned old_len = old_dentry->d_name.len;
542 const unsigned char *new_name = new_dentry->d_name.name;
543 unsigned new_len = new_dentry->d_name.len;
David Howells2b0143b2015-03-17 22:25:59 +0000544 struct inode *i = d_inode(old_dentry);
545 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct quad_buffer_head qbh, qbh1;
547 struct hpfs_dirent *dep, *nde;
548 struct hpfs_dirent de;
549 dnode_secno dno;
550 int r;
551 struct buffer_head *bh;
552 struct fnode *fnode;
553 int err;
Sage Weile4eaac02011-05-24 13:06:07 -0700554
Al Viro7e7742e2010-01-31 17:09:29 -0500555 if ((err = hpfs_chk_name(new_name, &new_len))) return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 err = 0;
Al Viro7e7742e2010-01-31 17:09:29 -0500557 hpfs_adjust_length(old_name, &old_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100559 hpfs_lock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 /* order doesn't matter, due to VFS exclusion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 /* Erm? Moving over the empty non-busy directory is perfectly legal */
563 if (new_inode && S_ISDIR(new_inode->i_mode)) {
564 err = -EINVAL;
565 goto end1;
566 }
567
Al Viro7e7742e2010-01-31 17:09:29 -0500568 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 -0700569 hpfs_error(i->i_sb, "lookup succeeded but map dirent failed");
570 err = -ENOENT;
571 goto end1;
572 }
573 copy_de(&de, dep);
574 de.hidden = new_name[0] == '.';
575
576 if (new_inode) {
577 int r;
578 if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 1)) != 2) {
Al Viro7e7742e2010-01-31 17:09:29 -0500579 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 -0700580 clear_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 copy_de(nde, &de);
582 memcpy(nde->name, new_name, new_len);
583 hpfs_mark_4buffers_dirty(&qbh1);
584 hpfs_brelse4(&qbh1);
585 goto end;
586 }
587 hpfs_error(new_dir->i_sb, "hpfs_rename: could not find dirent");
588 err = -EFSERROR;
589 goto end1;
590 }
591 err = r == 2 ? -ENOSPC : r == 1 ? -EFSERROR : 0;
592 goto end1;
593 }
594
595 if (new_dir == old_dir) hpfs_brelse4(&qbh);
596
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200597 if ((r = hpfs_add_dirent(new_dir, new_name, new_len, &de))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (r == -1) hpfs_error(new_dir->i_sb, "hpfs_rename: dirent already exists!");
599 err = r == 1 ? -ENOSPC : -EFSERROR;
600 if (new_dir != old_dir) hpfs_brelse4(&qbh);
601 goto end1;
602 }
603
604 if (new_dir == old_dir)
Al Viro7e7742e2010-01-31 17:09:29 -0500605 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 -0700606 hpfs_error(i->i_sb, "lookup succeeded but map dirent failed at #2");
607 err = -ENOENT;
608 goto end1;
609 }
610
611 if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 hpfs_error(i->i_sb, "hpfs_rename: could not remove dirent");
613 err = r == 2 ? -ENOSPC : -EFSERROR;
614 goto end1;
615 }
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200616
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200617end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 hpfs_i(i)->i_parent_dir = new_dir->i_ino;
619 if (S_ISDIR(i->i_mode)) {
Dave Hansend8c76e62006-09-30 23:29:04 -0700620 inc_nlink(new_dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700621 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623 if ((fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh))) {
Mikulas Patocka0b697602011-05-08 20:44:26 +0200624 fnode->up = cpu_to_le32(new_dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 fnode->len = new_len;
626 memcpy(fnode->name, new_name, new_len>15?15:new_len);
627 if (new_len < 15) memset(&fnode->name[new_len], 0, 15 - new_len);
628 mark_buffer_dirty(bh);
629 brelse(bh);
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631end1:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200632 if (!err) {
633 hpfs_update_directory_times(old_dir);
634 hpfs_update_directory_times(new_dir);
635 }
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100636 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return err;
638}
639
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800640const struct inode_operations hpfs_dir_iops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 .create = hpfs_create,
643 .lookup = hpfs_lookup,
644 .unlink = hpfs_unlink,
645 .symlink = hpfs_symlink,
646 .mkdir = hpfs_mkdir,
647 .rmdir = hpfs_rmdir,
648 .mknod = hpfs_mknod,
649 .rename = hpfs_rename,
Christoph Hellwigca30bc92008-08-11 00:27:59 +0200650 .setattr = hpfs_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651};