2 * linux/fs/affs/inode.c
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
8 * (C) 1992 Eric Youngdale Modified for ISO9660 filesystem.
10 * (C) 1991 Linus Torvalds - minix filesystem
12 #include <linux/sched.h>
13 #include <linux/gfp.h>
16 struct inode
*affs_iget(struct super_block
*sb
, unsigned long ino
)
18 struct affs_sb_info
*sbi
= AFFS_SB(sb
);
19 struct buffer_head
*bh
;
20 struct affs_tail
*tail
;
27 inode
= iget_locked(sb
, ino
);
29 return ERR_PTR(-ENOMEM
);
30 if (!(inode
->i_state
& I_NEW
))
33 pr_debug("affs_iget(%lu)\n", inode
->i_ino
);
36 bh
= affs_bread(sb
, block
);
38 affs_warning(sb
, "read_inode", "Cannot read block %d", block
);
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
);
48 tail
= AFFS_TAIL(sb
, bh
);
49 prot
= be32_to_cpu(tail
->protect
);
54 AFFS_I(inode
)->i_extcnt
= 1;
55 AFFS_I(inode
)->i_ext_last
= ~1;
56 AFFS_I(inode
)->i_protect
= prot
;
57 atomic_set(&AFFS_I(inode
)->i_opencnt
, 0);
58 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;
69 if (affs_test_opt(sbi
->s_flags
, SF_SETMODE
))
70 inode
->i_mode
= sbi
->s_mode
;
72 inode
->i_mode
= prot_to_mode(prot
);
74 id
= be16_to_cpu(tail
->uid
);
75 if (id
== 0 || affs_test_opt(sbi
->s_flags
, SF_SETUID
))
76 inode
->i_uid
= sbi
->s_uid
;
77 else if (id
== 0xFFFF && affs_test_opt(sbi
->s_flags
, SF_MUFS
))
78 i_uid_write(inode
, 0);
80 i_uid_write(inode
, id
);
82 id
= be16_to_cpu(tail
->gid
);
83 if (id
== 0 || affs_test_opt(sbi
->s_flags
, SF_SETGID
))
84 inode
->i_gid
= sbi
->s_gid
;
85 else if (id
== 0xFFFF && affs_test_opt(sbi
->s_flags
, SF_MUFS
))
86 i_gid_write(inode
, 0);
88 i_gid_write(inode
, id
);
90 switch (be32_to_cpu(tail
->stype
)) {
92 inode
->i_uid
= sbi
->s_uid
;
93 inode
->i_gid
= sbi
->s_gid
;
96 if (be32_to_cpu(tail
->stype
) == ST_USERDIR
||
97 affs_test_opt(sbi
->s_flags
, SF_SETMODE
)) {
98 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
;
106 inode
->i_mode
= S_IRUGO
| S_IXUGO
| S_IWUSR
| S_IFDIR
;
107 /* 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
;
114 affs_warning(sb
, "read_inode", "inode is LINKDIR");
117 inode
->i_mode
|= S_IFDIR
;
118 /* ... and leave ->i_op and ->i_fop pointing to empty */
122 affs_warning(sb
, "read_inode", "inode is LINKFILE");
125 size
= be32_to_cpu(tail
->size
);
126 inode
->i_mode
|= S_IFREG
;
127 AFFS_I(inode
)->mmu_private
= inode
->i_size
= 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) /
134 if (tail
->link_chain
)
136 inode
->i_mapping
->a_ops
= affs_test_opt(sbi
->s_flags
, SF_OFS
) ?
137 &affs_aops_ofs
: &affs_aops
;
138 inode
->i_op
= &affs_file_inode_operations
;
139 inode
->i_fop
= &affs_file_operations
;
142 inode
->i_mode
|= S_IFLNK
;
143 inode
->i_op
= &affs_symlink_inode_operations
;
144 inode
->i_data
.a_ops
= &affs_symlink_aops
;
148 inode
->i_mtime
.tv_sec
= inode
->i_atime
.tv_sec
= inode
->i_ctime
.tv_sec
149 = (be32_to_cpu(tail
->change
.days
) * (24 * 60 * 60) +
150 be32_to_cpu(tail
->change
.mins
) * 60 +
151 be32_to_cpu(tail
->change
.ticks
) / 50 +
152 ((8 * 365 + 2) * 24 * 60 * 60)) +
153 sys_tz
.tz_minuteswest
* 60;
154 inode
->i_mtime
.tv_nsec
= inode
->i_ctime
.tv_nsec
= inode
->i_atime
.tv_nsec
= 0;
156 unlock_new_inode(inode
);
162 return ERR_PTR(-EIO
);
166 affs_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
168 struct super_block
*sb
= inode
->i_sb
;
169 struct buffer_head
*bh
;
170 struct affs_tail
*tail
;
174 pr_debug("write_inode(%lu)\n", inode
->i_ino
);
177 // possibly free block
179 bh
= affs_bread(sb
, inode
->i_ino
);
181 affs_error(sb
,"write_inode","Cannot read block %lu",inode
->i_ino
);
184 tail
= AFFS_TAIL(sb
, bh
);
185 if (tail
->stype
== cpu_to_be32(ST_ROOT
)) {
186 secs_to_datestamp(inode
->i_mtime
.tv_sec
,&AFFS_ROOT_TAIL(sb
, bh
)->root_change
);
188 tail
->protect
= cpu_to_be32(AFFS_I(inode
)->i_protect
);
189 tail
->size
= cpu_to_be32(inode
->i_size
);
190 secs_to_datestamp(inode
->i_mtime
.tv_sec
,&tail
->change
);
191 if (!(inode
->i_ino
== AFFS_SB(sb
)->s_root_block
)) {
192 uid
= i_uid_read(inode
);
193 gid
= i_gid_read(inode
);
194 if (affs_test_opt(AFFS_SB(sb
)->s_flags
, SF_MUFS
)) {
195 if (uid
== 0 || uid
== 0xFFFF)
197 if (gid
== 0 || gid
== 0xFFFF)
200 if (!affs_test_opt(AFFS_SB(sb
)->s_flags
, SF_SETUID
))
201 tail
->uid
= cpu_to_be16(uid
);
202 if (!affs_test_opt(AFFS_SB(sb
)->s_flags
, SF_SETGID
))
203 tail
->gid
= cpu_to_be16(gid
);
206 affs_fix_checksum(sb
, bh
);
207 mark_buffer_dirty_inode(bh
, inode
);
209 affs_free_prealloc(inode
);
214 affs_notify_change(struct dentry
*dentry
, struct iattr
*attr
)
216 struct inode
*inode
= d_inode(dentry
);
219 pr_debug("notify_change(%lu,0x%x)\n", inode
->i_ino
, attr
->ia_valid
);
221 error
= inode_change_ok(inode
,attr
);
225 if (((attr
->ia_valid
& ATTR_UID
) &&
226 affs_test_opt(AFFS_SB(inode
->i_sb
)->s_flags
, SF_SETUID
)) ||
227 ((attr
->ia_valid
& ATTR_GID
) &&
228 affs_test_opt(AFFS_SB(inode
->i_sb
)->s_flags
, SF_SETGID
)) ||
229 ((attr
->ia_valid
& ATTR_MODE
) &&
230 (AFFS_SB(inode
->i_sb
)->s_flags
&
231 (AFFS_MOUNT_SF_SETMODE
| AFFS_MOUNT_SF_IMMUTABLE
)))) {
232 if (!affs_test_opt(AFFS_SB(inode
->i_sb
)->s_flags
, SF_QUIET
))
237 if ((attr
->ia_valid
& ATTR_SIZE
) &&
238 attr
->ia_size
!= i_size_read(inode
)) {
239 error
= inode_newsize_ok(inode
, attr
->ia_size
);
243 truncate_setsize(inode
, attr
->ia_size
);
244 affs_truncate(inode
);
247 setattr_copy(inode
, attr
);
248 mark_inode_dirty(inode
);
250 if (attr
->ia_valid
& ATTR_MODE
)
257 affs_evict_inode(struct inode
*inode
)
259 unsigned long cache_page
;
260 pr_debug("evict_inode(ino=%lu, nlink=%u)\n",
261 inode
->i_ino
, inode
->i_nlink
);
262 truncate_inode_pages_final(&inode
->i_data
);
264 if (!inode
->i_nlink
) {
266 affs_truncate(inode
);
269 invalidate_inode_buffers(inode
);
271 affs_free_prealloc(inode
);
272 cache_page
= (unsigned long)AFFS_I(inode
)->i_lc
;
274 pr_debug("freeing ext cache\n");
275 AFFS_I(inode
)->i_lc
= NULL
;
276 AFFS_I(inode
)->i_ac
= NULL
;
277 free_page(cache_page
);
279 affs_brelse(AFFS_I(inode
)->i_ext_bh
);
280 AFFS_I(inode
)->i_ext_last
= ~1;
281 AFFS_I(inode
)->i_ext_bh
= NULL
;
284 affs_free_block(inode
->i_sb
, inode
->i_ino
);
288 affs_new_inode(struct inode
*dir
)
290 struct super_block
*sb
= dir
->i_sb
;
293 struct buffer_head
*bh
;
295 if (!(inode
= new_inode(sb
)))
298 if (!(block
= affs_alloc_block(dir
, dir
->i_ino
)))
301 bh
= affs_getzeroblk(sb
, block
);
304 mark_buffer_dirty_inode(bh
, inode
);
307 inode
->i_uid
= current_fsuid();
308 inode
->i_gid
= current_fsgid();
309 inode
->i_ino
= block
;
311 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME_SEC
;
312 atomic_set(&AFFS_I(inode
)->i_opencnt
, 0);
313 AFFS_I(inode
)->i_blkcnt
= 0;
314 AFFS_I(inode
)->i_lc
= NULL
;
315 AFFS_I(inode
)->i_lc_size
= 0;
316 AFFS_I(inode
)->i_lc_shift
= 0;
317 AFFS_I(inode
)->i_lc_mask
= 0;
318 AFFS_I(inode
)->i_ac
= NULL
;
319 AFFS_I(inode
)->i_ext_bh
= NULL
;
320 AFFS_I(inode
)->mmu_private
= 0;
321 AFFS_I(inode
)->i_protect
= 0;
322 AFFS_I(inode
)->i_lastalloc
= 0;
323 AFFS_I(inode
)->i_pa_cnt
= 0;
324 AFFS_I(inode
)->i_extcnt
= 1;
325 AFFS_I(inode
)->i_ext_last
= ~1;
327 insert_inode_hash(inode
);
332 affs_free_block(sb
, block
);
340 * Add an entry to a directory. Create the header block
341 * and insert it into the hash table.
345 affs_add_entry(struct inode
*dir
, struct inode
*inode
, struct dentry
*dentry
, s32 type
)
347 struct super_block
*sb
= dir
->i_sb
;
348 struct buffer_head
*inode_bh
= NULL
;
349 struct buffer_head
*bh
= NULL
;
353 pr_debug("%s(dir=%lu, inode=%lu, \"%pd\", type=%d)\n", __func__
,
354 dir
->i_ino
, inode
->i_ino
, dentry
, type
);
357 bh
= affs_bread(sb
, inode
->i_ino
);
361 affs_lock_link(inode
);
366 block
= affs_alloc_block(dir
, dir
->i_ino
);
371 bh
= affs_getzeroblk(sb
, block
);
379 AFFS_HEAD(bh
)->ptype
= cpu_to_be32(T_SHORT
);
380 AFFS_HEAD(bh
)->key
= cpu_to_be32(bh
->b_blocknr
);
381 affs_copy_name(AFFS_TAIL(sb
, bh
)->name
, dentry
);
382 AFFS_TAIL(sb
, bh
)->stype
= cpu_to_be32(type
);
383 AFFS_TAIL(sb
, bh
)->parent
= cpu_to_be32(dir
->i_ino
);
387 chain
= AFFS_TAIL(sb
, inode_bh
)->link_chain
;
388 AFFS_TAIL(sb
, bh
)->original
= cpu_to_be32(inode
->i_ino
);
389 AFFS_TAIL(sb
, bh
)->link_chain
= chain
;
390 AFFS_TAIL(sb
, inode_bh
)->link_chain
= cpu_to_be32(block
);
391 affs_adjust_checksum(inode_bh
, block
- be32_to_cpu(chain
));
392 mark_buffer_dirty_inode(inode_bh
, inode
);
396 affs_fix_checksum(sb
, bh
);
397 mark_buffer_dirty_inode(bh
, inode
);
398 dentry
->d_fsdata
= (void *)(long)bh
->b_blocknr
;
401 retval
= affs_insert_hash(dir
, bh
);
402 mark_buffer_dirty_inode(bh
, inode
);
403 affs_unlock_dir(dir
);
404 affs_unlock_link(inode
);
406 d_instantiate(dentry
, inode
);
408 affs_brelse(inode_bh
);
413 affs_free_block(sb
, block
);
414 affs_unlock_link(inode
);