blob: bb8d67e2740ac70d7c9c87c078429475f9e0b79d [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int err;
380
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100381 hpfs_lock(dir->i_sb);
Al Viro7e7742e2010-01-31 17:09:29 -0500382 hpfs_adjust_length(name, &len);
Mikulas Patockab6853f72016-02-25 18:17:38 +0100383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 err = -ENOENT;
Al Viro7e7742e2010-01-31 17:09:29 -0500385 de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (!de)
387 goto out;
388
389 err = -EPERM;
390 if (de->first)
391 goto out1;
392
393 err = -EISDIR;
394 if (de->directory)
395 goto out1;
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
398 switch (r) {
399 case 1:
400 hpfs_error(dir->i_sb, "there was error when removing dirent");
401 err = -EFSERROR;
402 break;
Mikulas Patockab6853f72016-02-25 18:17:38 +0100403 case 2: /* no space for deleting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 err = -ENOSPC;
Mikulas Patockab6853f72016-02-25 18:17:38 +0100405 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 default:
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700407 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 err = 0;
409 }
410 goto out;
411
412out1:
413 hpfs_brelse4(&qbh);
414out:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200415 if (!err)
416 hpfs_update_directory_times(dir);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100417 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return err;
419}
420
421static int hpfs_rmdir(struct inode *dir, struct dentry *dentry)
422{
Al Viro7e7742e2010-01-31 17:09:29 -0500423 const unsigned char *name = dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 unsigned len = dentry->d_name.len;
425 struct quad_buffer_head qbh;
426 struct hpfs_dirent *de;
David Howells2b0143b2015-03-17 22:25:59 +0000427 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 dnode_secno dno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 int n_items = 0;
430 int err;
431 int r;
432
Al Viro7e7742e2010-01-31 17:09:29 -0500433 hpfs_adjust_length(name, &len);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100434 hpfs_lock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 err = -ENOENT;
Al Viro7e7742e2010-01-31 17:09:29 -0500436 de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (!de)
438 goto out;
439
440 err = -EPERM;
441 if (de->first)
442 goto out1;
443
444 err = -ENOTDIR;
445 if (!de->directory)
446 goto out1;
447
448 hpfs_count_dnodes(dir->i_sb, hpfs_i(inode)->i_dno, NULL, NULL, &n_items);
449 err = -ENOTEMPTY;
450 if (n_items)
451 goto out1;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 r = hpfs_remove_dirent(dir, dno, de, &qbh, 1);
454 switch (r) {
455 case 1:
456 hpfs_error(dir->i_sb, "there was error when removing dirent");
457 err = -EFSERROR;
458 break;
459 case 2:
460 err = -ENOSPC;
461 break;
462 default:
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700463 drop_nlink(dir);
Dave Hansence71ec32006-09-30 23:29:06 -0700464 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 err = 0;
466 }
467 goto out;
468out1:
469 hpfs_brelse4(&qbh);
470out:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200471 if (!err)
472 hpfs_update_directory_times(dir);
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100473 hpfs_unlock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return err;
475}
476
477static int hpfs_symlink_readpage(struct file *file, struct page *page)
478{
Al Viro21fc61c2015-11-17 01:07:57 -0500479 char *link = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 struct inode *i = page->mapping->host;
481 struct fnode *fnode;
482 struct buffer_head *bh;
483 int err;
484
485 err = -EIO;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100486 hpfs_lock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (!(fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh)))
488 goto fail;
489 err = hpfs_read_ea(i->i_sb, fnode, "SYMLINK", link, PAGE_SIZE);
490 brelse(bh);
491 if (err)
492 goto fail;
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100493 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 unlock_page(page);
496 return 0;
497
498fail:
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100499 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 SetPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 unlock_page(page);
502 return err;
503}
504
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700505const struct address_space_operations hpfs_symlink_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 .readpage = hpfs_symlink_readpage
507};
508
509static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry,
510 struct inode *new_dir, struct dentry *new_dentry)
511{
Al Viro7e7742e2010-01-31 17:09:29 -0500512 const unsigned char *old_name = old_dentry->d_name.name;
513 unsigned old_len = old_dentry->d_name.len;
514 const unsigned char *new_name = new_dentry->d_name.name;
515 unsigned new_len = new_dentry->d_name.len;
David Howells2b0143b2015-03-17 22:25:59 +0000516 struct inode *i = d_inode(old_dentry);
517 struct inode *new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct quad_buffer_head qbh, qbh1;
519 struct hpfs_dirent *dep, *nde;
520 struct hpfs_dirent de;
521 dnode_secno dno;
522 int r;
523 struct buffer_head *bh;
524 struct fnode *fnode;
525 int err;
Sage Weile4eaac02011-05-24 13:06:07 -0700526
Al Viro7e7742e2010-01-31 17:09:29 -0500527 if ((err = hpfs_chk_name(new_name, &new_len))) return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 err = 0;
Al Viro7e7742e2010-01-31 17:09:29 -0500529 hpfs_adjust_length(old_name, &old_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100531 hpfs_lock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* order doesn't matter, due to VFS exclusion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /* Erm? Moving over the empty non-busy directory is perfectly legal */
535 if (new_inode && S_ISDIR(new_inode->i_mode)) {
536 err = -EINVAL;
537 goto end1;
538 }
539
Al Viro7e7742e2010-01-31 17:09:29 -0500540 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 -0700541 hpfs_error(i->i_sb, "lookup succeeded but map dirent failed");
542 err = -ENOENT;
543 goto end1;
544 }
545 copy_de(&de, dep);
546 de.hidden = new_name[0] == '.';
547
548 if (new_inode) {
549 int r;
550 if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 1)) != 2) {
Al Viro7e7742e2010-01-31 17:09:29 -0500551 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 -0700552 clear_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 copy_de(nde, &de);
554 memcpy(nde->name, new_name, new_len);
555 hpfs_mark_4buffers_dirty(&qbh1);
556 hpfs_brelse4(&qbh1);
557 goto end;
558 }
559 hpfs_error(new_dir->i_sb, "hpfs_rename: could not find dirent");
560 err = -EFSERROR;
561 goto end1;
562 }
563 err = r == 2 ? -ENOSPC : r == 1 ? -EFSERROR : 0;
564 goto end1;
565 }
566
567 if (new_dir == old_dir) hpfs_brelse4(&qbh);
568
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200569 if ((r = hpfs_add_dirent(new_dir, new_name, new_len, &de))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (r == -1) hpfs_error(new_dir->i_sb, "hpfs_rename: dirent already exists!");
571 err = r == 1 ? -ENOSPC : -EFSERROR;
572 if (new_dir != old_dir) hpfs_brelse4(&qbh);
573 goto end1;
574 }
575
576 if (new_dir == old_dir)
Al Viro7e7742e2010-01-31 17:09:29 -0500577 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 -0700578 hpfs_error(i->i_sb, "lookup succeeded but map dirent failed at #2");
579 err = -ENOENT;
580 goto end1;
581 }
582
583 if ((r = hpfs_remove_dirent(old_dir, dno, dep, &qbh, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 hpfs_error(i->i_sb, "hpfs_rename: could not remove dirent");
585 err = r == 2 ? -ENOSPC : -EFSERROR;
586 goto end1;
587 }
Mikulas Patocka7d23ce32011-05-08 20:43:06 +0200588
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200589end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 hpfs_i(i)->i_parent_dir = new_dir->i_ino;
591 if (S_ISDIR(i->i_mode)) {
Dave Hansend8c76e62006-09-30 23:29:04 -0700592 inc_nlink(new_dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700593 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595 if ((fnode = hpfs_map_fnode(i->i_sb, i->i_ino, &bh))) {
Mikulas Patocka0b697602011-05-08 20:44:26 +0200596 fnode->up = cpu_to_le32(new_dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 fnode->len = new_len;
598 memcpy(fnode->name, new_name, new_len>15?15:new_len);
599 if (new_len < 15) memset(&fnode->name[new_len], 0, 15 - new_len);
600 mark_buffer_dirty(bh);
601 brelse(bh);
602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603end1:
Mikulas Patockaf49a26e2015-09-02 22:51:53 +0200604 if (!err) {
605 hpfs_update_directory_times(old_dir);
606 hpfs_update_directory_times(new_dir);
607 }
Arnd Bergmann9a311b92011-01-22 20:26:12 +0100608 hpfs_unlock(i->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return err;
610}
611
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800612const struct inode_operations hpfs_dir_iops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 .create = hpfs_create,
615 .lookup = hpfs_lookup,
616 .unlink = hpfs_unlink,
617 .symlink = hpfs_symlink,
618 .mkdir = hpfs_mkdir,
619 .rmdir = hpfs_rmdir,
620 .mknod = hpfs_mknod,
621 .rename = hpfs_rename,
Christoph Hellwigca30bc92008-08-11 00:27:59 +0200622 .setattr = hpfs_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623};