blob: fe4e1290dbb5d59288b79463250ec9be378b0227 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/affs/inode.c
3 *
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
5 *
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
7 *
8 * (C) 1992 Eric Youngdale Modified for ISO9660 filesystem.
9 *
10 * (C) 1991 Linus Torvalds - minix filesystem
11 */
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040012#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "affs.h"
15
David Howells210f8552008-02-07 00:15:29 -080016struct inode *affs_iget(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017{
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 struct affs_sb_info *sbi = AFFS_SB(sb);
19 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 struct affs_tail *tail;
David Howells210f8552008-02-07 00:15:29 -080021 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 u32 block;
23 u32 size;
24 u32 prot;
25 u16 id;
26
David Howells210f8552008-02-07 00:15:29 -080027 inode = iget_locked(sb, ino);
28 if (!inode)
29 return ERR_PTR(-ENOMEM);
30 if (!(inode->i_state & I_NEW))
31 return inode;
32
Fabian Frederick9606d9a2014-06-06 14:37:25 -070033 pr_debug("affs_iget(%lu)\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35 block = inode->i_ino;
36 bh = affs_bread(sb, block);
37 if (!bh) {
38 affs_warning(sb, "read_inode", "Cannot read block %d", block);
39 goto bad_inode;
40 }
41 if (affs_checksum_block(sb, bh) || be32_to_cpu(AFFS_HEAD(bh)->ptype) != T_SHORT) {
42 affs_warning(sb,"read_inode",
43 "Checksum or type (ptype=%d) error on inode %d",
44 AFFS_HEAD(bh)->ptype, block);
45 goto bad_inode;
46 }
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 tail = AFFS_TAIL(sb, bh);
49 prot = be32_to_cpu(tail->protect);
50
51 inode->i_size = 0;
Miklos Szeredibfe86842011-10-28 14:13:29 +020052 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 inode->i_mode = 0;
54 AFFS_I(inode)->i_extcnt = 1;
55 AFFS_I(inode)->i_ext_last = ~1;
56 AFFS_I(inode)->i_protect = prot;
Roman Zippeldca3c332008-04-29 17:02:20 +020057 atomic_set(&AFFS_I(inode)->i_opencnt, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 AFFS_I(inode)->i_blkcnt = 0;
59 AFFS_I(inode)->i_lc = NULL;
60 AFFS_I(inode)->i_lc_size = 0;
61 AFFS_I(inode)->i_lc_shift = 0;
62 AFFS_I(inode)->i_lc_mask = 0;
63 AFFS_I(inode)->i_ac = NULL;
64 AFFS_I(inode)->i_ext_bh = NULL;
65 AFFS_I(inode)->mmu_private = 0;
66 AFFS_I(inode)->i_lastalloc = 0;
67 AFFS_I(inode)->i_pa_cnt = 0;
68
Fabian Frederick79bda4d2015-04-16 12:48:24 -070069 if (affs_test_opt(sbi->s_flags, SF_SETMODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 inode->i_mode = sbi->s_mode;
71 else
72 inode->i_mode = prot_to_mode(prot);
73
74 id = be16_to_cpu(tail->uid);
Fabian Frederick79bda4d2015-04-16 12:48:24 -070075 if (id == 0 || affs_test_opt(sbi->s_flags, SF_SETUID))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 inode->i_uid = sbi->s_uid;
Fabian Frederick79bda4d2015-04-16 12:48:24 -070077 else if (id == 0xFFFF && affs_test_opt(sbi->s_flags, SF_MUFS))
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080078 i_uid_write(inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 else
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080080 i_uid_write(inode, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 id = be16_to_cpu(tail->gid);
Fabian Frederick79bda4d2015-04-16 12:48:24 -070083 if (id == 0 || affs_test_opt(sbi->s_flags, SF_SETGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 inode->i_gid = sbi->s_gid;
Fabian Frederick79bda4d2015-04-16 12:48:24 -070085 else if (id == 0xFFFF && affs_test_opt(sbi->s_flags, SF_MUFS))
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080086 i_gid_write(inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 else
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080088 i_gid_write(inode, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 switch (be32_to_cpu(tail->stype)) {
91 case ST_ROOT:
92 inode->i_uid = sbi->s_uid;
93 inode->i_gid = sbi->s_gid;
94 /* fall through */
95 case ST_USERDIR:
96 if (be32_to_cpu(tail->stype) == ST_USERDIR ||
Fabian Frederick79bda4d2015-04-16 12:48:24 -070097 affs_test_opt(sbi->s_flags, SF_SETMODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (inode->i_mode & S_IRUSR)
99 inode->i_mode |= S_IXUSR;
100 if (inode->i_mode & S_IRGRP)
101 inode->i_mode |= S_IXGRP;
102 if (inode->i_mode & S_IROTH)
103 inode->i_mode |= S_IXOTH;
104 inode->i_mode |= S_IFDIR;
105 } else
106 inode->i_mode = S_IRUGO | S_IXUGO | S_IWUSR | S_IFDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /* Maybe it should be controlled by mount parameter? */
108 //inode->i_mode |= S_ISVTX;
109 inode->i_op = &affs_dir_inode_operations;
110 inode->i_fop = &affs_dir_operations;
111 break;
112 case ST_LINKDIR:
113#if 0
114 affs_warning(sb, "read_inode", "inode is LINKDIR");
115 goto bad_inode;
116#else
117 inode->i_mode |= S_IFDIR;
Al Viroc765d472008-12-04 09:50:55 -0500118 /* ... and leave ->i_op and ->i_fop pointing to empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 break;
120#endif
121 case ST_LINKFILE:
122 affs_warning(sb, "read_inode", "inode is LINKFILE");
123 goto bad_inode;
124 case ST_FILE:
125 size = be32_to_cpu(tail->size);
126 inode->i_mode |= S_IFREG;
127 AFFS_I(inode)->mmu_private = inode->i_size = size;
128 if (inode->i_size) {
129 AFFS_I(inode)->i_blkcnt = (size - 1) /
130 sbi->s_data_blksize + 1;
131 AFFS_I(inode)->i_extcnt = (AFFS_I(inode)->i_blkcnt - 1) /
132 sbi->s_hashsize + 1;
133 }
134 if (tail->link_chain)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200135 set_nlink(inode, 2);
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700136 inode->i_mapping->a_ops = affs_test_opt(sbi->s_flags, SF_OFS) ?
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700137 &affs_aops_ofs : &affs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 inode->i_op = &affs_file_inode_operations;
139 inode->i_fop = &affs_file_operations;
140 break;
141 case ST_SOFTLINK:
142 inode->i_mode |= S_IFLNK;
Al Viro21fc61c2015-11-17 01:07:57 -0500143 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 inode->i_op = &affs_symlink_inode_operations;
145 inode->i_data.a_ops = &affs_symlink_aops;
146 break;
147 }
148
149 inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec
150 = (be32_to_cpu(tail->change.days) * (24 * 60 * 60) +
151 be32_to_cpu(tail->change.mins) * 60 +
152 be32_to_cpu(tail->change.ticks) / 50 +
153 ((8 * 365 + 2) * 24 * 60 * 60)) +
154 sys_tz.tz_minuteswest * 60;
155 inode->i_mtime.tv_nsec = inode->i_ctime.tv_nsec = inode->i_atime.tv_nsec = 0;
156 affs_brelse(bh);
David Howells210f8552008-02-07 00:15:29 -0800157 unlock_new_inode(inode);
158 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160bad_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 affs_brelse(bh);
David Howells210f8552008-02-07 00:15:29 -0800162 iget_failed(inode);
163 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166int
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100167affs_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct super_block *sb = inode->i_sb;
170 struct buffer_head *bh;
171 struct affs_tail *tail;
172 uid_t uid;
173 gid_t gid;
174
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700175 pr_debug("write_inode(%lu)\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (!inode->i_nlink)
178 // possibly free block
179 return 0;
180 bh = affs_bread(sb, inode->i_ino);
181 if (!bh) {
182 affs_error(sb,"write_inode","Cannot read block %lu",inode->i_ino);
183 return -EIO;
184 }
185 tail = AFFS_TAIL(sb, bh);
186 if (tail->stype == cpu_to_be32(ST_ROOT)) {
187 secs_to_datestamp(inode->i_mtime.tv_sec,&AFFS_ROOT_TAIL(sb, bh)->root_change);
188 } else {
189 tail->protect = cpu_to_be32(AFFS_I(inode)->i_protect);
190 tail->size = cpu_to_be32(inode->i_size);
191 secs_to_datestamp(inode->i_mtime.tv_sec,&tail->change);
192 if (!(inode->i_ino == AFFS_SB(sb)->s_root_block)) {
Eric W. Biederman8fed10b2012-02-07 16:20:16 -0800193 uid = i_uid_read(inode);
194 gid = i_gid_read(inode);
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700195 if (affs_test_opt(AFFS_SB(sb)->s_flags, SF_MUFS)) {
Eric W. Biederman8fed10b2012-02-07 16:20:16 -0800196 if (uid == 0 || uid == 0xFFFF)
197 uid = uid ^ ~0;
198 if (gid == 0 || gid == 0xFFFF)
199 gid = gid ^ ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700201 if (!affs_test_opt(AFFS_SB(sb)->s_flags, SF_SETUID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 tail->uid = cpu_to_be16(uid);
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700203 if (!affs_test_opt(AFFS_SB(sb)->s_flags, SF_SETGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 tail->gid = cpu_to_be16(gid);
205 }
206 }
207 affs_fix_checksum(sb, bh);
208 mark_buffer_dirty_inode(bh, inode);
209 affs_brelse(bh);
210 affs_free_prealloc(inode);
211 return 0;
212}
213
214int
215affs_notify_change(struct dentry *dentry, struct iattr *attr)
216{
David Howells2b0143b2015-03-17 22:25:59 +0000217 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int error;
219
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700220 pr_debug("notify_change(%lu,0x%x)\n", inode->i_ino, attr->ia_valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Jan Kara31051c82016-05-26 16:55:18 +0200222 error = setattr_prepare(dentry, attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (error)
224 goto out;
225
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700226 if (((attr->ia_valid & ATTR_UID) &&
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700227 affs_test_opt(AFFS_SB(inode->i_sb)->s_flags, SF_SETUID)) ||
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700228 ((attr->ia_valid & ATTR_GID) &&
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700229 affs_test_opt(AFFS_SB(inode->i_sb)->s_flags, SF_SETGID)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 ((attr->ia_valid & ATTR_MODE) &&
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700231 (AFFS_SB(inode->i_sb)->s_flags &
232 (AFFS_MOUNT_SF_SETMODE | AFFS_MOUNT_SF_IMMUTABLE)))) {
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700233 if (!affs_test_opt(AFFS_SB(inode->i_sb)->s_flags, SF_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 error = -EPERM;
235 goto out;
236 }
237
Christoph Hellwig10257742010-06-04 11:30:02 +0200238 if ((attr->ia_valid & ATTR_SIZE) &&
239 attr->ia_size != i_size_read(inode)) {
Marco Stornelli1dc18342012-12-15 11:51:53 +0100240 error = inode_newsize_ok(inode, attr->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +0200241 if (error)
242 return error;
Marco Stornelli1dc18342012-12-15 11:51:53 +0100243
244 truncate_setsize(inode, attr->ia_size);
245 affs_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200246 }
247
248 setattr_copy(inode, attr);
249 mark_inode_dirty(inode);
250
251 if (attr->ia_valid & ATTR_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 mode_to_prot(inode);
253out:
254 return error;
255}
256
257void
Al Virof053ddd2010-06-06 10:16:41 -0400258affs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Roman Zippeldca3c332008-04-29 17:02:20 +0200260 unsigned long cache_page;
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700261 pr_debug("evict_inode(ino=%lu, nlink=%u)\n",
262 inode->i_ino, inode->i_nlink);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700263 truncate_inode_pages_final(&inode->i_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Al Virof053ddd2010-06-06 10:16:41 -0400265 if (!inode->i_nlink) {
266 inode->i_size = 0;
267 affs_truncate(inode);
268 }
Roman Zippeldca3c332008-04-29 17:02:20 +0200269
Al Virof053ddd2010-06-06 10:16:41 -0400270 invalidate_inode_buffers(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200271 clear_inode(inode);
Roman Zippeldca3c332008-04-29 17:02:20 +0200272 affs_free_prealloc(inode);
273 cache_page = (unsigned long)AFFS_I(inode)->i_lc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (cache_page) {
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700275 pr_debug("freeing ext cache\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 AFFS_I(inode)->i_lc = NULL;
277 AFFS_I(inode)->i_ac = NULL;
278 free_page(cache_page);
279 }
280 affs_brelse(AFFS_I(inode)->i_ext_bh);
281 AFFS_I(inode)->i_ext_last = ~1;
282 AFFS_I(inode)->i_ext_bh = NULL;
Al Virof053ddd2010-06-06 10:16:41 -0400283
284 if (!inode->i_nlink)
285 affs_free_block(inode->i_sb, inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
288struct inode *
289affs_new_inode(struct inode *dir)
290{
291 struct super_block *sb = dir->i_sb;
292 struct inode *inode;
293 u32 block;
294 struct buffer_head *bh;
295
296 if (!(inode = new_inode(sb)))
297 goto err_inode;
298
299 if (!(block = affs_alloc_block(dir, dir->i_ino)))
300 goto err_block;
301
302 bh = affs_getzeroblk(sb, block);
303 if (!bh)
304 goto err_bh;
305 mark_buffer_dirty_inode(bh, inode);
306 affs_brelse(bh);
307
David Howells21559982008-11-14 10:38:45 +1100308 inode->i_uid = current_fsuid();
309 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 inode->i_ino = block;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200311 set_nlink(inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700312 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Roman Zippeldca3c332008-04-29 17:02:20 +0200313 atomic_set(&AFFS_I(inode)->i_opencnt, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 AFFS_I(inode)->i_blkcnt = 0;
315 AFFS_I(inode)->i_lc = NULL;
316 AFFS_I(inode)->i_lc_size = 0;
317 AFFS_I(inode)->i_lc_shift = 0;
318 AFFS_I(inode)->i_lc_mask = 0;
319 AFFS_I(inode)->i_ac = NULL;
320 AFFS_I(inode)->i_ext_bh = NULL;
321 AFFS_I(inode)->mmu_private = 0;
322 AFFS_I(inode)->i_protect = 0;
323 AFFS_I(inode)->i_lastalloc = 0;
324 AFFS_I(inode)->i_pa_cnt = 0;
325 AFFS_I(inode)->i_extcnt = 1;
326 AFFS_I(inode)->i_ext_last = ~1;
327
328 insert_inode_hash(inode);
329
330 return inode;
331
332err_bh:
333 affs_free_block(sb, block);
334err_block:
335 iput(inode);
336err_inode:
337 return NULL;
338}
339
340/*
341 * Add an entry to a directory. Create the header block
342 * and insert it into the hash table.
343 */
344
345int
346affs_add_entry(struct inode *dir, struct inode *inode, struct dentry *dentry, s32 type)
347{
348 struct super_block *sb = dir->i_sb;
349 struct buffer_head *inode_bh = NULL;
Fabian Frederick78f444f2015-06-30 14:57:55 -0700350 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 u32 block = 0;
352 int retval;
353
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800354 pr_debug("%s(dir=%lu, inode=%lu, \"%pd\", type=%d)\n", __func__,
355 dir->i_ino, inode->i_ino, dentry, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 retval = -EIO;
358 bh = affs_bread(sb, inode->i_ino);
359 if (!bh)
360 goto done;
361
362 affs_lock_link(inode);
363 switch (type) {
364 case ST_LINKFILE:
365 case ST_LINKDIR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 retval = -ENOSPC;
367 block = affs_alloc_block(dir, dir->i_ino);
368 if (!block)
369 goto err;
370 retval = -EIO;
Roman Zippeldca3c332008-04-29 17:02:20 +0200371 inode_bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 bh = affs_getzeroblk(sb, block);
373 if (!bh)
374 goto err;
375 break;
376 default:
377 break;
378 }
379
380 AFFS_HEAD(bh)->ptype = cpu_to_be32(T_SHORT);
381 AFFS_HEAD(bh)->key = cpu_to_be32(bh->b_blocknr);
382 affs_copy_name(AFFS_TAIL(sb, bh)->name, dentry);
383 AFFS_TAIL(sb, bh)->stype = cpu_to_be32(type);
384 AFFS_TAIL(sb, bh)->parent = cpu_to_be32(dir->i_ino);
385
386 if (inode_bh) {
387 __be32 chain;
388 chain = AFFS_TAIL(sb, inode_bh)->link_chain;
389 AFFS_TAIL(sb, bh)->original = cpu_to_be32(inode->i_ino);
390 AFFS_TAIL(sb, bh)->link_chain = chain;
391 AFFS_TAIL(sb, inode_bh)->link_chain = cpu_to_be32(block);
392 affs_adjust_checksum(inode_bh, block - be32_to_cpu(chain));
393 mark_buffer_dirty_inode(inode_bh, inode);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200394 set_nlink(inode, 2);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400395 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 affs_fix_checksum(sb, bh);
398 mark_buffer_dirty_inode(bh, inode);
399 dentry->d_fsdata = (void *)(long)bh->b_blocknr;
400
401 affs_lock_dir(dir);
402 retval = affs_insert_hash(dir, bh);
403 mark_buffer_dirty_inode(bh, inode);
404 affs_unlock_dir(dir);
405 affs_unlock_link(inode);
406
407 d_instantiate(dentry, inode);
408done:
409 affs_brelse(inode_bh);
410 affs_brelse(bh);
411 return retval;
412err:
413 if (block)
414 affs_free_block(sb, block);
415 affs_unlock_link(inode);
416 goto done;
417}